:root {
  --ink: #1c1730;
  --muted: #635b78;
  --paper: #fffafd;
  --paper-strong: #fbf7ff;
  --surface: #ffffff;
  --line: #e8dff2;
  --purple: #8a4df3;
  --purple-dark: #5522b8;
  --purple-soft: #f2eaff;
  --mint: #dff9ef;
  --yellow: #fff1be;
  --shadow: 0 18px 55px rgba(63, 32, 105, 0.13);
  --soft-shadow: 0 10px 30px rgba(63, 32, 105, 0.08);
  --promo-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper-strong) 460px, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.has-promo {
  padding-top: var(--promo-height);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(138, 77, 243, 0.45);
  outline-offset: 3px;
}

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

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

.has-promo [id] {
  scroll-margin-top: 172px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(232, 223, 242, 0.8);
  background: rgba(255, 250, 253, 0.9);
  backdrop-filter: blur(16px);
}

.has-promo .site-header {
  top: var(--promo-height);
}

.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--promo-height);
  color: white;
  background: #5522b8;
  box-shadow: 0 10px 28px rgba(42, 20, 94, 0.24);
}

.promo-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: var(--promo-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.promo-inner strong,
.promo-inner span {
  min-width: 0;
}

.promo-inner a {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 850;
}

.promo-inner .code {
  color: #211030;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--purple), #31c48d);
  box-shadow: 0 8px 24px rgba(138, 77, 243, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.nav-links a.button {
  color: white;
  background: var(--purple-dark);
  border: 1px solid var(--purple-dark);
  box-shadow: 0 10px 22px rgba(85, 34, 184, 0.18);
}

.nav-links a.button:hover {
  color: white;
  background: #42178f;
  border-color: #42178f;
}

.button {
  border: 1px solid transparent;
  color: white;
  background: var(--purple-dark);
  box-shadow: 0 14px 30px rgba(85, 34, 184, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--purple-dark);
  background: white;
  border-color: var(--line);
  box-shadow: none;
}

.button.small {
  min-height: 36px;
  padding: 9px 12px;
  font-size: 0.92rem;
}

button.button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 750;
  line-height: 1.25;
}

.code-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 13px;
  border: 1px solid rgba(138, 77, 243, 0.2);
  border-radius: 8px;
  color: var(--purple-dark);
  background: white;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(138, 77, 243, 0.12);
}

.code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
  color: #211030;
  background: var(--yellow);
  border: 1px solid #ead575;
  padding: 3px 7px;
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 234, 255, 0.52)),
    repeating-linear-gradient(90deg, rgba(138, 77, 243, 0.08) 0 1px, transparent 1px 96px),
    var(--paper-strong);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 32px max(16px, calc((100% - 1120px) / 2)) 32px;
  border: 1px solid rgba(138, 77, 243, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.54)),
    linear-gradient(90deg, rgba(223, 249, 239, 0.54), rgba(255, 241, 190, 0.34));
  box-shadow: var(--soft-shadow);
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  place-items: center;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple-dark);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-inline: auto;
  max-width: 760px;
  font-size: 4.55rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.gradient-text {
  color: var(--purple-dark);
  background: linear-gradient(100deg, #5522b8 0%, #8a4df3 46%, #0d9f75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text.alt {
  background-image: linear-gradient(100deg, #0d9f75 0%, #8a4df3 52%, #5522b8 100%);
}

.landing-page {
  --ink: #241f16;
  --muted: #6b6250;
  --paper: #fffaf0;
  --paper-strong: #fff7e6;
  --line: #eadfca;
  --purple: #b88a2c;
  --purple-dark: #72551c;
  --purple-soft: #fff4d8;
  --mint: #eef8ea;
  --yellow: #f7dfa1;
  --shadow: 0 18px 50px rgba(74, 57, 22, 0.1);
  --soft-shadow: 0 10px 28px rgba(74, 57, 22, 0.08);
  background:
    linear-gradient(180deg, #fffdf8 0, #fff8e9 420px, #fffaf0 100%);
}

.landing-page .site-header {
  border-bottom-color: rgba(234, 223, 202, 0.86);
  background: rgba(255, 253, 248, 0.92);
}

.landing-page .brand-mark {
  color: #241f16;
  background: linear-gradient(135deg, #f7dfa1, #b88a2c 58%, #8fbf84);
  box-shadow: 0 8px 22px rgba(184, 138, 44, 0.18);
}

.landing-page .button,
.landing-page .nav-links a.button {
  color: #241f16;
  background: linear-gradient(135deg, #f7dfa1, #d8b865);
  border-color: #d8b865;
  box-shadow: 0 12px 26px rgba(184, 138, 44, 0.16);
}

.landing-page .button:hover,
.landing-page .nav-links a.button:hover {
  color: #241f16;
  background: linear-gradient(135deg, #fbe8b7, #caa34a);
  border-color: #caa34a;
}

.landing-page .button.secondary {
  color: #72551c;
  background: #fffdf8;
  border-color: #eadfca;
  box-shadow: none;
}

.landing-page .nav-links a:hover {
  color: #72551c;
  background: #fff4d8;
}

.landing-page .hero {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 244, 216, 0.34)),
    repeating-linear-gradient(90deg, rgba(184, 138, 44, 0.07) 0 1px, transparent 1px 96px),
    #fff7e6;
}

.landing-page .hero::before {
  border-color: rgba(184, 138, 44, 0.16);
  background:
    radial-gradient(circle at 18% 22%, rgba(247, 223, 161, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 240, 0.7)),
    linear-gradient(90deg, rgba(238, 248, 234, 0.48), rgba(255, 244, 216, 0.46));
}

.landing-page .gradient-text {
  color: #72551c;
  background-image: linear-gradient(100deg, #72551c 0%, #b88a2c 48%, #4f8e5a 100%);
}

.landing-page .tag,
.landing-page .code {
  color: #604916;
  background: #fff4d8;
  border-color: #eadfca;
}

.landing-page .offer-meta {
  background: linear-gradient(180deg, #fffdf8, #fff5dc);
}

.landing-page .offer-meta strong,
.landing-page .eyebrow {
  color: #72551c;
}

.landing-page .highlight-band {
  color: #241f16;
  background: linear-gradient(135deg, #f7dfa1, #d8b865 50%, #9fcf95);
}

.landing-page .highlight-band p,
.landing-page .highlight-band .eyebrow {
  color: rgba(36, 31, 22, 0.74);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: 76px 0;
}

.section.tint {
  background: var(--purple-soft);
}

.section.mint {
  background: var(--mint);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.blog-grid,
.offer-list,
.keyword-grid,
.faq-grid,
.package-grid,
.steps,
.referral-steps,
.facts-grid,
.bonus-grid,
.timeline,
.wallet-grid {
  display: grid;
  gap: 18px;
}

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

.offer-list {
  grid-template-columns: 1fr;
}

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

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

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

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

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

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

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

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

.referral-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.card,
.article-card,
.offer-card,
.keyword-card,
.faq-card,
.package-card,
.fact,
.step,
.referral-step,
.notice,
.compare-row,
.bonus-card,
.timeline-step,
.wallet-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--purple-soft);
}

.article-body,
.offer-card,
.keyword-card,
.faq-card,
.package-card,
.fact,
.step,
.referral-step,
.notice,
.bonus-card,
.timeline-step,
.wallet-card {
  padding: 22px;
}

.article-body p,
.offer-card p,
.keyword-card p,
.faq-card p,
.package-card p,
.fact p,
.step p,
.referral-step p,
.notice p,
.bonus-card p,
.timeline-step p,
.wallet-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.offer-card h3 {
  font-size: 1.55rem;
}

.offer-meta {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.offer-meta strong {
  color: var(--purple-dark);
  font-size: 1.55rem;
  line-height: 1.1;
}

.offer-meta span {
  color: var(--muted);
}

.keyword-card,
.faq-card {
  padding: 22px;
}

.keyword-card h3,
.faq-card h3 {
  font-size: 1.12rem;
}

.notice.compact {
  margin-top: 18px;
  box-shadow: none;
}

.notice.compact p {
  margin: 0;
}

.copy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
  margin: 32px 0 30px;
  padding: 30px;
  border: 1px solid rgba(138, 77, 243, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 234, 255, 0.9) 58%, rgba(223, 249, 239, 0.6)),
    var(--surface);
  box-shadow: var(--soft-shadow);
}

.copy-panel h3 {
  max-width: 700px;
  color: var(--purple-dark);
  font-size: 2.1rem;
}

.copy-panel h3 span {
  white-space: nowrap;
}

.copy-panel p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
}

.copy-hints {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.copy-hints li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.copy-hints li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a879;
}

.copy-box {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(85, 34, 184, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(85, 34, 184, 0.12);
}

.copy-label {
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-box input {
  min-width: 0;
  min-height: 64px;
  border: 1px solid rgba(85, 34, 184, 0.26);
  border-radius: 8px;
  padding: 14px 16px;
  font: 900 2rem "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
  color: var(--purple-dark);
  background: #fffaf0;
  text-align: center;
}

.copy-status {
  grid-column: 1 / -1;
  min-height: 0;
  color: #0d7f5f;
  font-weight: 800;
}

.copy-status:not(:empty) {
  min-height: 20px;
}

.bonus-card strong {
  display: block;
  color: var(--purple-dark);
  font-size: 3.15rem;
  line-height: 1;
}

.bonus-card.emphasis {
  color: var(--ink);
  border-color: rgba(85, 34, 184, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 190, 0.78)),
    var(--yellow);
}

.bonus-card.emphasis p,
.bonus-card.emphasis .tag {
  color: var(--muted);
}

.bonus-card.emphasis strong {
  color: var(--purple-dark);
}

.bonus-card.emphasis .tag {
  background: white;
  border: 1px solid rgba(85, 34, 184, 0.16);
}

.package-note {
  margin-bottom: 34px;
}

#csomagok .package-grid {
  gap: 28px;
  margin-top: 0;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 8px;
  text-decoration: none;
}

.store-badge img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.store-badge.google img {
  height: 58px;
  margin: -9px 0;
}

.referral-step {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 238px;
  padding: 22px;
}

.referral-step > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: white;
  background: var(--purple-dark);
  font-weight: 900;
}

.referral-step.featured {
  border-color: rgba(85, 34, 184, 0.28);
  background: linear-gradient(180deg, #ffffff, #f7f0ff);
}

.referral-step.featured > span {
  background: #22a879;
}

.timeline-step {
  position: relative;
  min-height: 178px;
}

.timeline-step > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: white;
  background: var(--purple-dark);
  font-weight: 900;
}

.wallet-card ol {
  margin: 16px 0 20px;
  padding-left: 22px;
  color: var(--muted);
}

.wallet-card li + li {
  margin-top: 8px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--purple-dark);
  background: var(--purple-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.package-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

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

.price {
  white-space: nowrap;
  color: var(--purple-dark);
  font-weight: 900;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31c48d;
}

.compare {
  display: grid;
  gap: 12px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.compare-row strong {
  font-size: 1.05rem;
}

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

.highlight-band {
  color: white;
  background: linear-gradient(135deg, #5522b8, #8a4df3 48%, #1b9c75);
}

.highlight-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.highlight-band p {
  color: rgba(255, 255, 255, 0.86);
}

.highlight-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.highlight-band .code-pill {
  border-color: rgba(255, 255, 255, 0.25);
}

.source-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

/* ── Revolut page theme ─────────────────────────────────────────── */

.revolut-page {
  --ink: #111111;
  --muted: #666666;
  --paper: #f8f8f8;
  --paper-strong: #f2f2f2;
  --surface: #ffffff;
  --line: #e0e0e0;
  --purple: #2c2c2c;
  --purple-dark: #111111;
  --purple-soft: #f0f0f0;
  --mint: #e6f9f0;
  --yellow: #f5f5f5;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  --soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  background: linear-gradient(180deg, #ffffff 0, #f8f8f8 460px, #f5f5f5 100%);
}

.revolut-page .site-header {
  border-bottom-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.revolut-page .brand-mark {
  color: white;
  background: linear-gradient(135deg, #191c21, #454d5c);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.revolut-page .button,
.revolut-page .nav-links a.button {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.revolut-page .button:hover,
.revolut-page .nav-links a.button:hover {
  color: #ffffff;
  background: #333333;
  border-color: #333333;
}

.revolut-page .button.secondary {
  color: #111111;
  background: #ffffff;
  border-color: #e0e0e0;
  box-shadow: none;
}

.revolut-page .nav-links a:hover {
  color: #111111;
  background: #f0f0f0;
}

.revolut-page .hero {
  color: white;
  border-bottom-color: #2a2a2a;
  background:
    linear-gradient(180deg, #0d0d0d 0%, #1e1e1e 100%);
}

.revolut-page .hero::before {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.revolut-page .hero .eyebrow {
  color: rgba(255, 255, 255, 0.60);
}

.revolut-page .hero h1 {
  color: white;
}

.revolut-page .hero .lead {
  color: rgba(255, 255, 255, 0.70);
}

.revolut-page .hero .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.revolut-page .hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.40);
}

.revolut-page .gradient-text {
  color: #ffffff;
  background-image: linear-gradient(100deg, #ffffff 0%, #aaaaaa 50%, #d5d5d5 100%);
}

.revolut-page .tag {
  color: #111111;
  background: #eeeeee;
  border: 1px solid #dddddd;
}

.revolut-page .code {
  color: #111111;
  background: #f0f0f0;
  border-color: #d8d8d8;
}

.revolut-page .offer-meta {
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.revolut-page .offer-meta strong,
.revolut-page .eyebrow {
  color: #111111;
}

.revolut-page .bonus-card strong {
  color: #111111;
}

.revolut-page .highlight-band {
  color: #ffffff;
  background: linear-gradient(135deg, #111111, #2e2e2e 48%, #111111);
}

.revolut-page .highlight-band p,
.revolut-page .highlight-band .eyebrow {
  color: rgba(255, 255, 255, 0.70);
}

.revolut-page .copy-panel {
  border-color: rgba(0, 0, 0, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(242, 242, 242, 0.92) 58%, rgba(245, 245, 245, 0.80)),
    var(--surface);
}

.revolut-page .copy-panel h3 {
  color: #111111;
}

.revolut-page .copy-box {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.revolut-page .copy-box input {
  border-color: rgba(0, 0, 0, 0.18);
  color: #111111;
  background: #f8f8f8;
}

.revolut-page .copy-label {
  color: #111111;
}

.revolut-page .referral-step > span {
  background: #111111;
}

.revolut-page .referral-step.featured {
  border-color: rgba(0, 0, 0, 0.18);
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.revolut-page .referral-step.featured > span {
  background: #444444;
}

.revolut-page .timeline-step > span {
  background: #111111;
}

/* ── /Revolut page theme ─────────────────────────────────────────── */

.site-footer {
  padding: 36px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: white;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  :root {
    --promo-height: 88px;
  }

  .promo-inner {
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 10px 0;
    line-height: 1.25;
  }

  .has-promo [id] {
    scroll-margin-top: 204px;
  }

  .promo-inner strong,
  .promo-inner span {
    flex: 1 1 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: 18px 16px;
  }

  .section-head,
  .copy-panel,
  .offer-card,
  .highlight-band .container,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .keyword-grid,
  .faq-grid,
  .package-grid,
  .facts-grid,
  .steps,
  .referral-steps,
  .bonus-grid,
  .timeline,
  .wallet-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0 16px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-inner {
    padding: 68px 0 74px;
  }

  .offer-meta {
    justify-items: stretch;
  }
}

@media (max-width: 520px) {
  :root {
    --promo-height: 104px;
  }

  .container,
  .hero-inner,
  .nav,
  .promo-inner {
    width: min(100% - 24px, 1120px);
  }

  .hero-inner {
    padding: 56px 0 64px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .copy-panel {
    padding: 20px;
  }

  .copy-panel h3 {
    font-size: 1.65rem;
  }

  .copy-box input {
    min-height: 58px;
    font-size: 1.55rem;
  }

  .section {
    padding: 56px 0;
  }

  .article-body,
  .offer-card,
  .keyword-card,
  .faq-card,
  .package-card,
  .fact,
  .step,
  .notice,
  .bonus-card,
  .referral-step,
  .timeline-step,
  .wallet-card {
    padding: 18px;
  }

  .button,
  .code-pill {
    width: 100%;
  }

  .copy-box {
    grid-template-columns: 1fr;
  }

  .copy-box .button {
    width: 100%;
  }

  .app-buttons {
    justify-content: stretch;
  }

  .store-badge,
  .store-badge img,
  .store-badge.google img {
    width: 100%;
    height: auto;
    max-height: 58px;
  }

  #csomagok .package-grid {
    gap: 22px;
  }

  .package-top {
    display: grid;
  }
}
