:root {
  --charcoal: #151719;
  --charcoal-2: #202326;
  --ink: #171a1d;
  --muted: #5f656b;
  --paper: #f5f5f1;
  --paper-2: #eceee8;
  --white: #ffffff;
  --red: #d8324e;
  --red-dark: #a91f37;
  --gold: #f2bd43;
  --gold-soft: #fff1c4;
  --teal: #0ba89a;
  --teal-soft: #d8f3ee;
  --green-dark: #12322f;
  --line: #d9ddd5;
  --radius: 7px;
  --shadow: 0 18px 44px rgba(23, 26, 29, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 54px;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 850;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(11, 168, 154, .38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
  color: #fff;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.header-inner {
  width: min(1180px, calc(100% - 36px));
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 58px;
}

.brand img {
  width: auto;
  max-width: 142px;
  max-height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  color: #dfe3e5;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold);
}

.header-cta,
.primary-button,
.ticket-button,
.offer-card button,
.horizontal-offers button {
  min-height: 46px;
  padding: 11px 18px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(216, 50, 78, .22);
  cursor: pointer;
  font-weight: 850;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.header-cta:hover,
.primary-button:hover,
.ticket-button:hover,
.offer-card button:hover,
.horizontal-offers button:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 28px rgba(169, 31, 55, .28);
  transform: translateY(-1px);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 15px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: none;
  font-size: 14px;
}

.header-cta:hover {
  color: #fff;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: #fff;
}

.hero {
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 68px;
  align-items: center;
  margin: 0 auto;
  padding: 64px 0 50px;
}

.hero-copy-column {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(11, 168, 154, .13);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: #41474c;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-button:hover {
  color: var(--red);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts div {
  min-width: 0;
  padding: 15px 16px;
  border-right: 1px solid var(--line);
}

.hero-facts div:first-child {
  padding-left: 0;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.bonus-ticket {
  position: relative;
  width: 100%;
  padding: 26px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal-2);
  border: 1px solid #33383b;
  border-top: 6px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 14px 16px 0 var(--teal-soft);
}

.bonus-ticket::after {
  position: absolute;
  right: -16px;
  bottom: -54px;
  color: rgba(255, 255, 255, .045);
  content: "♦";
  font-family: Georgia, serif;
  font-size: 190px;
  line-height: 1;
}

.bonus-ticket > * {
  position: relative;
  z-index: 1;
}

.ticket-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #d9dddf;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-topline strong {
  color: var(--gold);
}

.ticket-amount {
  display: flex;
  align-items: flex-start;
  margin: 22px 0 -8px;
}

.ticket-amount span {
  font-size: 88px;
  font-weight: 950;
  line-height: 1;
}

.ticket-amount sup {
  margin: 9px 0 0 5px;
  color: var(--gold);
  font-size: 32px;
  font-weight: 900;
}

.ticket-label {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-rule {
  height: 1px;
  margin: 18px 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 7px, transparent 7px 13px);
}

.bonus-ticket ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.bonus-ticket li {
  position: relative;
  padding-left: 22px;
  color: #e5e8e9;
  font-size: 14px;
}

.bonus-ticket li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.ticket-button {
  width: 100%;
  color: var(--ink);
  background: var(--gold);
  box-shadow: none;
}

.ticket-button:hover {
  color: #fff;
}

.ticket-note {
  margin: 12px 0 0;
  color: #9da3a6;
  font-size: 11px;
  text-align: center;
}

.hero-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: #fff;
  background: var(--red);
}

.hero-bar span {
  padding: 15px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.hero-bar span:last-child {
  border-right: 0;
}

.hero-bar b {
  margin-right: 6px;
}

.section,
.calculator-inner,
.vip-inner,
.payment-inner,
.final-review-inner,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.compact-section {
  padding-top: 70px;
}

.alt-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.section-heading > p:last-child {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-index {
  margin-bottom: 13px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.no-deposit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: stretch;
}

.terms-ledger {
  border-top: 3px solid var(--ink);
}

.ledger-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 130px;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.ledger-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.ledger-value {
  justify-self: end;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: 4px;
  font-size: 15px;
  white-space: nowrap;
}

.ledger-value.score {
  color: #fff;
  background: var(--red);
}

.verdict-row {
  background: #fff;
}

.phone-visual,
.codes-screen,
.payment-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
  margin: 0;
  padding: 24px 20px 0;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: var(--radius);
}

.phone-visual img,
.codes-screen img,
.payment-screen img {
  width: min(240px, 84%);
  max-height: 530px;
  object-fit: contain;
  object-position: top center;
  border: 7px solid #090b0c;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .32);
}

.phone-visual figcaption,
.codes-screen figcaption,
.payment-screen figcaption {
  width: calc(100% + 40px);
  padding: 10px 16px;
  color: #e8eeee;
  background: rgba(0, 0, 0, .24);
  font-size: 12px;
  text-align: center;
}

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

.activation-flow article {
  min-width: 0;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.activation-flow article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.activation-flow p {
  margin-bottom: 0;
  color: var(--muted);
}

.calculator-band {
  padding: 80px 0;
  color: #fff;
  background: var(--charcoal);
  border-top: 6px solid var(--gold);
}

.calculator-inner {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.calculator-band .section-index {
  color: var(--gold);
}

.calculator-intro h2 {
  color: #fff;
}

.calculator-intro > p {
  color: #c8ccce;
}

.calculator-note {
  margin-top: 28px;
  padding: 20px;
  color: #e7ebec;
  background: #202427;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}

.calculator-note h3 {
  color: #fff;
}

.calculator-note p {
  margin-bottom: 0;
  color: #c8ccce;
}

.bonus-calculator {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.calculator-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calculator-controls label {
  display: grid;
  gap: 7px;
  color: #4a5055;
  font-size: 13px;
  font-weight: 800;
}

.calculator-controls input,
.calculator-controls select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fafbf9;
  border: 1px solid #cfd4cc;
  border-radius: 5px;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.calculator-results div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 17px;
  color: var(--ink);
  background: var(--paper);
}

.calculator-results div:last-child {
  grid-column: 1 / -1;
}

.calculator-results span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.calculator-results strong {
  margin: 3px 0;
  font-size: 22px;
}

.calculator-results small {
  color: #747b80;
}

.calculator-warning {
  margin: 16px 0 0;
  padding: 10px 12px;
  color: #672231;
  background: #ffe3e8;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 750;
}

.codes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 30px;
  align-items: stretch;
}

.codes-table-wrap,
.vip-table-wrap,
.rules-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.codes-table,
.vip-table,
.rules-table {
  width: 100%;
  border-collapse: collapse;
}

.codes-table th,
.codes-table td,
.vip-table th,
.vip-table td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.codes-table th,
.vip-table th {
  color: #fff;
  background: var(--charcoal-2);
  font-size: 12px;
  text-transform: uppercase;
}

.codes-table tbody tr:last-child td,
.vip-table tbody tr:last-child td {
  border-bottom: 0;
}

.codes-table tbody tr:hover {
  background: #faf9f4;
}

.codes-table code {
  display: inline-block;
  padding: 5px 8px;
  color: var(--red-dark);
  background: #fff0f3;
  border: 1px dashed rgba(216, 50, 78, .42);
  border-radius: 4px;
  font-weight: 900;
}

.codes-table button {
  min-width: 76px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--gold);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.codes-table button.is-copied {
  color: #fff;
  background: var(--teal);
}

.codes-screen {
  min-height: 520px;
  background: #321722;
}

.codes-screen img {
  width: min(220px, 82%);
  max-height: 500px;
}

.offer-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.offer-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-card::after {
  position: absolute;
  right: -8px;
  top: 35px;
  color: rgba(216, 50, 78, .055);
  content: "♠";
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
  pointer-events: none;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.featured-offer {
  border-top-color: var(--red);
  box-shadow: 0 20px 46px rgba(216, 50, 78, .12);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.offer-top span {
  padding: 6px 9px;
  color: var(--red-dark);
  background: var(--gold-soft);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.offer-top b {
  color: var(--teal);
  font-size: 13px;
}

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

.offer-card dl {
  display: grid;
  gap: 0;
  margin: 8px 0 20px;
  border-top: 1px solid var(--line);
}

.offer-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.offer-card dt {
  color: var(--muted);
  font-size: 13px;
}

.offer-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 850;
  text-align: right;
}

.offer-card button {
  width: 100%;
  align-self: end;
  min-height: 44px;
  box-shadow: none;
}

.horizontal-offers {
  display: grid;
  gap: 16px;
}

.horizontal-offers article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 250px 100px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.horizontal-offers .best-horizontal {
  border-left-color: var(--red);
}

.horizontal-badge {
  color: var(--red);
  font-size: 29px;
  font-weight: 950;
}

.horizontal-offers p {
  margin-bottom: 0;
  color: var(--muted);
}

.horizontal-offers dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.horizontal-offers dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.horizontal-offers dt {
  color: var(--muted);
  font-size: 12px;
}

.horizontal-offers dd {
  margin: 0;
  font-size: 12px;
  font-weight: 850;
}

.horizontal-offers button {
  min-height: 42px;
  padding: 9px 12px;
  box-shadow: none;
}

.editorial-list {
  border-top: 3px solid var(--ink);
}

.editorial-list article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 110px;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #cbd0c8;
}

.editorial-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.editorial-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.editorial-list article > strong {
  justify-self: end;
  color: var(--teal);
  font-size: 15px;
  text-align: right;
}

.vip-band {
  padding: 84px 0;
  color: #fff;
  background: var(--green-dark);
  border-top: 6px solid var(--teal);
}

.light-heading h2 {
  color: #fff;
}

.light-heading > p:last-child {
  color: #ccd9d6;
}

.vip-explainer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.vip-explainer article {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
}

.vip-explainer article > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.vip-explainer h3 {
  color: #fff;
}

.vip-explainer p {
  margin-bottom: 0;
  color: #c7d6d2;
  font-size: 14px;
}

.vip-table-wrap {
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.vip-table th {
  color: var(--ink);
  background: var(--gold);
}

.vip-table td {
  color: #e9f0ee;
  background: #183a36;
  border-color: rgba(255, 255, 255, .1);
}

.vip-table td:first-child {
  color: var(--gold);
  font-size: 18px;
  font-weight: 950;
}

.cashback-layout {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
}

.formula-box {
  position: sticky;
  top: 98px;
  padding: 30px;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--gold-soft);
}

.formula-box span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.formula-box strong {
  display: block;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1.3;
}

.formula-box p {
  margin-bottom: 0;
  color: #ffe7eb;
}

.cashback-copy {
  border-top: 3px solid var(--ink);
}

.cashback-copy article {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.cashback-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.currency-examples article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.currency-examples article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 34px;
  font-weight: 950;
}

.currency-examples p {
  margin-bottom: 0;
  color: var(--muted);
}

.ranking-list {
  display: grid;
  gap: 0;
  border-top: 3px solid var(--ink);
}

.ranking-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 110px;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.rank {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.ranking-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.ranking-list article > strong {
  justify-self: end;
  color: var(--teal);
  font-size: 17px;
  text-align: right;
}

.payment-band {
  padding: 84px 0;
  color: #fff;
  background: #381823;
  border-top: 6px solid var(--red);
}

.payment-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: stretch;
}

.payment-copy {
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.payment-copy article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.payment-copy h3 {
  color: #fff;
}

.payment-copy p {
  margin-bottom: 0;
  color: #e2cfd5;
}

.payment-screen {
  min-height: 500px;
  background: #1f2224;
}

.payment-screen img {
  width: min(235px, 82%);
  max-height: 480px;
}

.rules-table th,
.rules-table td {
  padding: 21px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.rules-table th {
  width: 38%;
  background: #f0f1ec;
}

.rules-table td {
  color: var(--muted);
}

.rules-table tr:last-child th,
.rules-table tr:last-child td {
  border-bottom: 0;
}

.rules-table h3 {
  margin: 0;
  font-size: 18px;
}

.final-review {
  padding: 74px 0;
  color: #fff;
  background: var(--charcoal);
  border-top: 6px solid var(--gold);
}

.final-review-inner {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.author-mark {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border: 6px solid #2d3033;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 950;
}

.author-name {
  margin-bottom: 1px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.author-role {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.author-copy h2 {
  color: #fff;
}

.author-copy > p:last-child {
  max-width: 930px;
  margin-bottom: 0;
  color: #d8dcde;
  font-size: 17px;
}

.author-copy > p:last-child strong {
  color: var(--gold);
}

.faq-list {
  border-top: 3px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item h3 button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  text-align: left;
}

.faq-item h3 button span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 500;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}

.faq-answer p {
  min-height: 0;
  max-width: 900px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.site-footer {
  padding: 58px 0 24px;
  color: #fff;
  background: #101214;
}

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

.footer-brand img {
  width: auto;
  max-width: 160px;
  max-height: 62px;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 380px;
  margin-bottom: 0;
  color: #aeb4b7;
}

.footer-top nav,
.footer-license {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-top nav a {
  color: #d8dcde;
  text-decoration: none;
}

.footer-top nav a:hover {
  color: var(--gold);
}

.footer-license strong {
  color: var(--gold);
}

.footer-license span {
  color: #aeb4b7;
  font-size: 14px;
}

.footer-assets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.payment-logos,
.eeat-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-logos img,
.eeat-logos img {
  width: auto;
  height: 38px;
  max-width: 90px;
  padding: 7px 9px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.eeat-logos img {
  height: 42px;
}

.responsible-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
}

.responsible-note strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 15px;
}

.responsible-note p {
  margin-bottom: 0;
  color: #aeb4b7;
  font-size: 13px;
}

.copyright {
  margin: 0;
  color: #737a7e;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero-inner {
    gap: 38px;
  }

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

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

  .horizontal-offers article {
    grid-template-columns: 80px minmax(0, 1fr) 210px;
  }

  .horizontal-offers button {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 33px;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    display: none;
    align-content: start;
    justify-content: stretch;
    margin: 0;
    padding: 24px;
    color: #fff;
    background: var(--charcoal);
    box-shadow: -16px 24px 40px rgba(0, 0, 0, .28);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .brand {
    order: 1;
  }

  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .hero-inner,
  .no-deposit-layout,
  .calculator-inner,
  .codes-layout,
  .cashback-layout,
  .payment-content {
    grid-template-columns: 1fr;
  }

  .bonus-ticket {
    width: min(100%, 520px);
    box-shadow: 10px 10px 0 var(--teal-soft);
  }

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

  .hero-facts div:nth-child(2) {
    border-right: 0;
  }

  .hero-facts div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:nth-child(3) {
    padding-left: 0;
  }

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

  .hero-bar span:nth-child(2) {
    border-right: 0;
  }

  .hero-bar span:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .phone-visual,
  .codes-screen,
  .payment-screen {
    min-height: 380px;
  }

  .phone-visual img,
  .codes-screen img,
  .payment-screen img {
    width: min(230px, 62%);
    max-height: 360px;
  }

  .activation-flow,
  .offer-grid-three,
  .currency-examples {
    grid-template-columns: 1fr;
  }

  .formula-box {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-assets {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 18px;
  }

  .header-inner {
    width: calc(100% - 24px);
    gap: 9px;
  }

  .brand img {
    max-width: 104px;
    max-height: 46px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-inner,
  .section,
  .calculator-inner,
  .vip-inner,
  .payment-inner,
  .final-review-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .hero-inner {
    gap: 34px;
    padding: 46px 0 40px;
  }

  .hero-lead,
  .section-heading > p:last-child,
  .author-copy > p:last-child {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .text-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-facts dd {
    font-size: 16px;
  }

  .hero-bar {
    grid-template-columns: 1fr;
  }

  .hero-bar span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .hero-bar span:last-child {
    border-bottom: 0;
  }

  .section,
  .calculator-band,
  .vip-band,
  .payment-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .alt-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .ledger-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .ledger-value {
    grid-column: 2;
    justify-self: start;
  }

  .activation-flow,
  .offer-grid-four,
  .offer-grid-three,
  .vip-explainer {
    grid-template-columns: 1fr;
  }

  .bonus-calculator {
    padding: 20px;
  }

  .calculator-controls,
  .calculator-results {
    grid-template-columns: 1fr;
  }

  .calculator-results div:last-child {
    grid-column: auto;
  }

  .codes-layout {
    min-width: 0;
  }

  .codes-table-wrap,
  .vip-table-wrap,
  .rules-table-wrap {
    margin-right: -2px;
  }

  .codes-table,
  .vip-table {
    min-width: 760px;
  }

  .horizontal-offers article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .horizontal-offers button {
    grid-column: auto;
    justify-self: stretch;
  }

  .horizontal-offers dl {
    max-width: none;
  }

  .editorial-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .editorial-list article > strong {
    justify-self: start;
  }

  .ranking-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .ranking-list article > strong {
    grid-column: 2;
    justify-self: start;
  }

  .rules-table th,
  .rules-table td {
    display: block;
    width: 100%;
  }

  .rules-table th {
    padding-bottom: 10px;
    border-bottom: 0;
  }

  .rules-table td {
    padding-top: 4px;
  }

  .final-review-inner {
    grid-template-columns: 1fr;
  }

  .author-mark {
    width: 86px;
    height: 86px;
    font-size: 24px;
  }

  .faq-item h3 button {
    min-height: 68px;
    font-size: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .responsible-note {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Table of contents */
.toc {
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.toc-inner {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin: 0 auto;
  padding: 28px 0 30px;
}

.toc-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
  border-right: 3px solid var(--red);
}

.toc-title span {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.toc-title strong {
  max-width: 180px;
  font-size: 18px;
  line-height: 1.25;
}

.toc-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.toc-links a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-height: 62px;
  padding: 9px 14px;
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .18s ease, background .18s ease;
}

.toc-links a:nth-child(5n) {
  border-right: 0;
}

.toc-links a:nth-child(n+6) {
  border-bottom: 0;
}

.toc-links a:hover {
  color: var(--red-dark);
  background: #fff7f1;
}

.toc-links span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.toc-links b {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .toc-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .toc-title {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 3px solid var(--red);
  }

  .toc-title strong {
    max-width: none;
  }

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

  .toc-links a,
  .toc-links a:nth-child(5n),
  .toc-links a:nth-child(n+6) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .toc-links a:nth-child(2n) {
    border-right: 0;
  }

  .toc-links a:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .toc-inner {
    width: calc(100% - 32px);
    padding: 24px 0;
  }

  .toc-links {
    grid-template-columns: 1fr;
  }

  .toc-links a,
  .toc-links a:nth-child(2n),
  .toc-links a:nth-last-child(-n+2) {
    min-height: 52px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .toc-links a:last-child {
    border-bottom: 0;
  }

  .toc-links span {
    flex: 0 0 24px;
  }
}
/* Mobile promo code cards */
@media (max-width: 680px) {
  .codes-table {
    min-width: 0;
  }

  .codes-table thead {
    display: none;
  }

  .codes-table tbody {
    display: grid;
    gap: 12px;
    padding: 12px;
    background: var(--paper);
  }

  .codes-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(23, 26, 29, .06);
  }

  .codes-table tbody tr:hover {
    background: #fff;
  }

  .codes-table td {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0;
    border: 0;
  }

  .codes-table td::before {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .codes-table td:nth-child(1) {
    grid-column: 1 / -1;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 850;
    border-bottom: 1px solid var(--line);
  }

  .codes-table td:nth-child(2)::before {
    content: "Kod";
  }

  .codes-table td:nth-child(3)::before {
    content: "Minimum";
  }

  .codes-table td:nth-child(4)::before {
    content: "Wagering";
  }

  .codes-table td:nth-child(5) {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .codes-table code {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .codes-table td:nth-child(5) button {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }
}
/* Footer logo contrast correction */
.payment-logos img,
.eeat-logos img {
  background: #25292c;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
/* Desktop density and media alignment pass */
.phone-visual,
.codes-screen,
.payment-screen {
  align-self: start;
  justify-content: flex-start;
  min-height: 0;
  height: auto;
  padding: 18px;
  overflow: hidden;
}

.phone-visual img,
.codes-screen img,
.payment-screen img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 470px;
  object-fit: contain;
  object-position: center;
  border: 7px solid #090b0c;
  border-radius: 22px;
}

.phone-visual figcaption,
.codes-screen figcaption,
.payment-screen figcaption {
  width: 100%;
  margin-top: 12px;
  padding: 9px 10px 0;
  background: transparent;
}

.codes-layout,
.payment-content {
  align-items: start;
}

.codes-screen {
  width: 100%;
  min-height: 0;
}

.codes-screen img {
  max-height: 430px;
}

.payment-screen {
  width: 100%;
  min-height: 0;
}

.payment-screen img {
  max-height: 420px;
}

@media (min-width: 901px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .compact-section {
    padding-top: 52px;
  }

  .calculator-band,
  .vip-band,
  .payment-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .final-review {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .no-deposit-layout {
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 30px;
  }

  .ledger-row {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .activation-flow {
    gap: 14px;
  }

  .activation-flow article,
  .offer-card {
    padding: 20px;
  }

  .calculator-inner {
    gap: 38px;
  }

  .bonus-calculator {
    padding: 24px;
  }

  .calculator-results div {
    padding: 14px;
  }

  .codes-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 24px;
  }

  .codes-table th,
  .codes-table td,
  .vip-table th,
  .vip-table td {
    padding: 10px 12px;
  }

  .offer-grid {
    gap: 14px;
  }

  .offer-card h3 {
    font-size: 18px;
  }

  .offer-card p {
    font-size: 15px;
  }

  .horizontal-offers article {
    padding: 19px 22px;
  }

  .editorial-list article,
  .cashback-copy article,
  .ranking-list article {
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .vip-explainer {
    gap: 12px;
    margin-bottom: 22px;
  }

  .vip-explainer article {
    padding: 17px;
  }

  .currency-examples article {
    padding: 21px;
  }

  .payment-content {
    grid-template-columns: minmax(0, 1fr) 265px;
    gap: 30px;
  }

  .payment-copy article {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .rules-table th,
  .rules-table td {
    padding: 17px 19px;
  }
}

@media (max-width: 900px) {
  .phone-visual,
  .codes-screen,
  .payment-screen {
    min-height: 0;
    padding: 18px;
  }

  .phone-visual img,
  .codes-screen img,
  .payment-screen img {
    width: auto;
    max-width: min(230px, 78%);
    max-height: 360px;
    border-bottom: 7px solid #090b0c;
    border-radius: 22px;
  }
}
/* Contextual screenshot placement */
.codes-table-only {
  display: block;
}

.codes-table-only .codes-table-wrap {
  width: 100%;
}

.extras-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.extras-screen {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px;
  background: #381823;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.extras-screen img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 470px;
  object-fit: contain;
  border: 7px solid #090b0c;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .28);
}

.payment-content-refined {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.payment-content-refined .payment-screen {
  width: 320px;
  justify-self: start;
  padding: 20px;
}

.payment-content-refined .payment-screen img {
  width: auto;
  max-width: 100%;
  max-height: 440px;
}

@media (max-width: 900px) {
  .extras-layout,
  .payment-content-refined {
    grid-template-columns: 1fr;
  }

  .extras-screen,
  .payment-content-refined .payment-screen {
    width: 100%;
    max-width: 420px;
    justify-self: center;
    order: 2;
  }

  .extras-layout .editorial-list,
  .payment-content-refined .payment-copy {
    order: 1;
  }
}
/* Light casino visual accents */
.calculator-band,
.vip-band,
.payment-band {
  position: relative;
  overflow: hidden;
}

.calculator-band::after,
.vip-band::after,
.payment-band::after {
  position: absolute;
  right: 3%;
  top: 42px;
  color: rgba(255, 255, 255, .045);
  content: "♠  ♦  ♣  ♥";
  font-family: Georgia, serif;
  font-size: 82px;
  line-height: 1;
  letter-spacing: .06em;
  pointer-events: none;
  white-space: nowrap;
}

.vip-band::after {
  top: auto;
  bottom: 46px;
  color: rgba(242, 189, 67, .06);
}

.payment-band::after {
  color: rgba(242, 189, 67, .055);
}

.calculator-inner,
.vip-inner,
.payment-inner {
  position: relative;
  z-index: 1;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 6px;
}

.horizontal-badge {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--red-dark);
  background: var(--gold-soft);
  border: 3px dashed rgba(216, 50, 78, .48);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff;
  font-size: 21px;
}

.rank {
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--red);
}

.ticket-label {
  display: flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 680px) {
  .calculator-band::after,
  .vip-band::after,
  .payment-band::after {
    right: -42px;
    font-size: 56px;
  }

  .horizontal-badge {
    width: 66px;
    height: 66px;
    font-size: 18px;
  }
}
/* Expanded payment review */
.payment-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.payment-metrics div {
  min-width: 0;
  padding: 15px 17px;
  background: rgba(255, 255, 255, .065);
}

.payment-metrics span {
  display: block;
  margin-bottom: 3px;
  color: #d9c4ca;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-metrics strong {
  color: #fff;
  font-size: 15px;
}

.payment-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.payment-comparison {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
}

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

.payment-comparison th {
  color: var(--ink);
  background: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.payment-comparison tbody tr:last-child td {
  border-bottom: 0;
}

.payment-comparison tbody tr:hover {
  background: #fff9ed;
}

.payment-comparison td {
  color: #4f565b;
  font-size: 13px;
}

.payment-comparison td strong {
  color: var(--ink);
}

.payment-comparison td:last-child b {
  color: var(--teal);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .payment-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .payment-metrics {
    grid-template-columns: 1fr;
  }

  .payment-table-wrap {
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .payment-comparison thead {
    display: none;
  }

  .payment-comparison tbody {
    display: grid;
    gap: 12px;
  }

  .payment-comparison tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 14px;
    padding: 16px;
    background: #fff;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
  }

  .payment-comparison td {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0;
    border: 0;
  }

  .payment-comparison td::before {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .payment-comparison td:nth-child(1) {
    grid-column: 1 / -1;
    padding-bottom: 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }

  .payment-comparison td:nth-child(2)::before {
    content: "Zastosowanie";
  }

  .payment-comparison td:nth-child(3)::before {
    content: "Minimum";
  }

  .payment-comparison td:nth-child(4) {
    grid-column: 1 / -1;
  }

  .payment-comparison td:nth-child(4)::before {
    content: "Czas i ograniczenia";
  }

  .payment-comparison td:nth-child(5)::before {
    content: "Ocena";
  }
}
/* Hero fact tiles refinement */
.hero-facts {
  gap: 10px;
  background: transparent;
  border: 0;
}

.hero-facts div,
.hero-facts div:first-child,
.hero-facts div:nth-child(2),
.hero-facts div:nth-child(3),
.hero-facts div:last-child {
  position: relative;
  padding: 13px 14px;
  overflow: hidden;
  background: #f6f7f3;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 6px;
}

.hero-facts div:nth-child(2) {
  border-top-color: var(--teal);
}

.hero-facts div:nth-child(3) {
  border-top-color: var(--gold);
}

.hero-facts div:nth-child(4) {
  border-top-color: #7357c7;
}

.hero-facts dt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #596066;
  font-size: 11px;
}

.hero-facts dt::before {
  font-size: 13px;
  line-height: 1;
}

.hero-facts div:nth-child(1) dt::before {
  content: "🔄";
}

.hero-facts div:nth-child(2) dt::before {
  content: "⏱️";
}

.hero-facts div:nth-child(3) dt::before {
  content: "💶";
}

.hero-facts div:nth-child(4) dt::before {
  content: "🎯";
}

.hero-facts dd {
  margin-top: 6px;
  color: var(--ink);
  font-size: 19px;
}

@media (max-width: 900px) {
  .hero-facts div,
  .hero-facts div:first-child,
  .hero-facts div:nth-child(2),
  .hero-facts div:nth-child(3),
  .hero-facts div:last-child {
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
  }

  .hero-facts div:nth-child(2) {
    border-top-color: var(--teal);
  }

  .hero-facts div:nth-child(3) {
    border-top-color: var(--gold);
  }

  .hero-facts div:nth-child(4) {
    border-top-color: #7357c7;
  }
}
/* Header logo visibility */
@media (min-width: 901px) {
  .brand {
    width: 184px;
    height: 64px;
    flex: 0 0 184px;
    overflow: visible;
  }

  .brand img {
    width: 168px;
    max-width: none;
    max-height: 62px;
    transform: scale(1.22);
    transform-origin: left center;
  }
}

@media (max-width: 900px) {
  .brand {
    width: 120px;
    flex: 0 0 120px;
    overflow: visible;
  }

  .brand img {
    width: 116px;
    max-width: none;
    max-height: 54px;
    transform: scale(1.16);
    transform-origin: left center;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 104px;
    flex-basis: 104px;
  }

  .brand img {
    width: 102px;
  }
}