:root {
  --bg: #F0F9FF;
  --surface: #FFFFFF;
  --text: #0C4A6E;
  --muted: #7DD3FC;
  --primary: #0EA5E9;
  --secondary: #BAE6FD;
  --accent: #38BDF8;
  --border: rgba(12, 74, 110, 0.12);
  --distorted-offset: 3px;
  --rebellion-skew: -2deg;
  --digital-punk-shift: 4px;
  --noisy-opacity: 0.04;
  --font-stretch: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-stretch);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image:
    linear-gradient(135deg, var(--bg) 0%, var(--secondary) 45%, var(--bg) 100%),
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(12, 74, 110, var(--noisy-opacity)) 2px,
      rgba(12, 74, 110, var(--noisy-opacity)) 4px
    );
  pointer-events: none;
  z-index: 0;
  animation: noisy-glitch-scan 8s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(56, 189, 248, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
  animation: rebellion-drift 14s ease-in-out infinite alternate;
}

@keyframes noisy-glitch-scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

@keyframes rebellion-drift {
  0% { opacity: 0.6; transform: skewX(0deg); }
  50% { opacity: 0.85; transform: skewX(var(--rebellion-skew)); }
  100% { opacity: 0.7; transform: skewX(0deg); }
}

@keyframes glitch-rebellion-flicker {
  0%, 90%, 100% { opacity: 1; transform: translate(0); }
  92% { opacity: 0.85; transform: translate(calc(var(--distorted-offset) * -1), 0); }
  94% { opacity: 1; transform: translate(var(--distorted-offset), 0); }
  96% { opacity: 0.9; transform: translate(0, 1px); }
}

@keyframes digital-punk-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes distorted-rgb-split {
  0%, 100% { filter: none; }
  50% { filter: drop-shadow(calc(var(--digital-punk-shift) * -1) 0 0 rgba(14, 165, 233, 0.4)) drop-shadow(var(--digital-punk-shift) 0 0 rgba(186, 230, 253, 0.4)); }
}

.disclosure-bar {
  width: 100%;
  background: var(--secondary);
  padding: 6px 16px;
  text-align: center;
  position: relative;
  z-index: 100;
}

.disclosure-bar p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(12, 74, 110, 0.75);
  line-height: 1.4;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #0C4A6E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}

.nav-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 0;
  display: block;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--accent);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.page-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badges img {
  height: 48px;
  width: auto;
}

.footer-badges a {
  display: block;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.footer-badges a:hover {
  transform: scale(1.05);
  filter: invert(0.15);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.65;
  line-height: 1.8;
}

.footer-nz-disclosure {
  font-size: 11px;
  color: var(--text);
  opacity: 0.6;
  line-height: 1.7;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text);
  opacity: 0.5;
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  overflow-wrap: break-word;
}

.content-page h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
  transform: skewX(-1deg);
}

.content-page h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--primary);
}

.content-page h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--accent);
}

.content-page p {
  margin-bottom: 16px;
}

.content-page ul,
.content-page ol {
  margin: 0 0 16px 24px;
}

.content-page li {
  margin-bottom: 8px;
}

.contact-form {
  margin-top: 32px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, filter 0.15s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.03);
  filter: invert(0.08);
}

.form-success {
  padding: 32px;
  background: rgba(186, 230, 253, 0.4);
  border: 1px solid var(--primary);
  text-align: center;
  display: none;
}

.form-success.is-visible {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 74, 110, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.modal-overlay.is-hidden {
  display: none;
}

.modal-box {
  background: var(--surface);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(12, 74, 110, 0.2);
}

.modal-box h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.modal-box p {
  margin-bottom: 24px;
  color: var(--text);
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-modal {
  padding: 12px 28px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-modal:hover {
  transform: scale(1.05);
}

.btn-confirm {
  background: var(--primary);
  color: #fff;
}

.btn-decline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 950;
  box-shadow: 0 -8px 32px rgba(12, 74, 110, 0.12);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  color: var(--text);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.btn-cookie:hover {
  transform: scale(1.05);
}

.btn-cookie-accept {
  background: var(--primary);
  color: #fff;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page h1 {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: glitch-rebellion-flicker 4s ease infinite;
}

.error-page p {
  margin-bottom: 32px;
  color: var(--text);
  opacity: 0.7;
}

.dead-pixel {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  opacity: 0.6;
  pointer-events: none;
}

.dead-pixel-1 { top: 12%; left: 8%; animation: glitch-rebellion-flicker 3s infinite; }

.dead-pixel-2 { top: 45%; right: 6%; animation: glitch-rebellion-flicker 5s infinite 1s; }

.dead-pixel-3 { bottom: 20%; left: 15%; animation: glitch-rebellion-flicker 4s infinite 0.5s; }

@media (max-width: 900px) {
  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #0C4A6E;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 32px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 85;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links li {
    border-left: 3px solid transparent;
    transition: border-color 0.2s ease;
  }

  .nav-links li:has(a:hover),
  .nav-links li:has(a:focus) {
    border-left-color: var(--accent);
  }

  .nav-links a {
    font-size: 1rem;
    padding: 14px 0 14px 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .page-shell,
  .content-page,
  .footer-inner {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 375px) {
  .disclosure-bar {
    padding: 6px 10px;
  }

  .nav-inner {
    padding: 12px 14px;
  }

  .content-page {
    padding: 32px 14px 48px;
  }

  .site-footer {
    padding: 36px 14px 28px;
  }

  .footer-badges img {
    height: 40px;
    max-width: 100%;
  }
}

.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.hero-image-col {
  position: relative;
  overflow: hidden;
}

.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  animation: distorted-rgb-split 6s ease-in-out infinite;
  transition: filter 0.3s ease;
}

.hero-image-col:hover img {
  filter: invert(0.12) hue-rotate(180deg);
}

.hero-text-col {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 48px 56px;
  position: relative;
}

.hero-text-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(14, 165, 233, 0.03) 40px,
    rgba(14, 165, 233, 0.03) 41px
  );
  pointer-events: none;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  transform: skewX(-2deg);
  position: relative;
  z-index: 1;
}

.hero-title-glitch {
  position: absolute;
  top: 0;
  right: 56px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  opacity: 0.15;
  transform: translate(var(--distorted-offset), 2px) skewX(-2deg);
  pointer-events: none;
  z-index: 0;
  clip-path: inset(0 0 50% 0);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  opacity: 0.8;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.marquee-strip {
  overflow: hidden;
  background: var(--text);
  color: var(--secondary);
  padding: 8px 0;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: digital-punk-marquee 22s linear infinite;
}

.marquee-inner span {
  padding: 0 48px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offers-section {
  padding: 64px 24px;
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 249, 255, 0.88);
  pointer-events: none;
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-inner h2 {
  font-size: 1.75rem;
  margin-bottom: 32px;
  text-align: center;
  transform: skewX(-1deg);
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.offer-card {
  background: #1a1a2e;
  border: 2px solid #16213e;
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.offer-logo-wrap {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  border-radius: 8px;
}

.offer-logo-wrap img,
.offer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-name {
  color: #e94560;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.offer-bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  width: 100%;
}

.offer-bonus {
  color: #f0f0f0;
  font-size: 0.9rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.offer-terms {
  color: #888;
  font-size: 0.72rem;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-desc {
  color: #aaa;
  font-size: 0.8rem;
  line-height: 1.5;
}

.offer-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #e94560, #c73659);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  margin-top: auto;
  transition: opacity 0.2s ease;
}

.offer-cta:hover {
  opacity: 0.9;
}

.info-section {
  padding: 56px 24px;
  position: relative;
}

.info-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.6);
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--text);
}

.info-section p {
  margin-bottom: 14px;
  color: var(--text);
  opacity: 0.88;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.decor-wrap {
  position: relative;
  overflow: hidden;
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  display: block;
  animation: distorted-rgb-split 8s ease-in-out infinite;
  transition: filter 0.25s ease;
}

.decor-wrap:hover .decor-img {
  filter: invert(0.1);
}

.layout-zigzag {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.zigzag-row:nth-child(even) {
  direction: rtl;
}

.zigzag-row:nth-child(even) > * {
  direction: ltr;
}

.layout-numbered-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.numbered-steps {
  list-style: none;
  counter-reset: step;
}

.numbered-steps li {
  counter-increment: step;
  padding: 16px 16px 16px 56px;
  position: relative;
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.layout-scroll-cards {
  overflow-x: auto;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

.scroll-cards-track {
  display: flex;
  gap: 20px;
  min-width: min-content;
}

.scroll-card {
  flex: 0 0 260px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.scroll-card:hover {
  filter: invert(0.05);
  transform: skewX(-1deg);
}

.scroll-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.layout-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mosaic-tile {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.mosaic-tile:nth-child(1) {
  grid-column: span 2;
}

.mosaic-tile h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.layout-quote {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.pull-quote {
  font-size: 1.15rem;
  font-style: italic;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: rgba(186, 230, 253, 0.3);
  margin: 20px 0;
  transform: skewX(-1deg);
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.info-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: filter 0.2s ease;
}

.info-card:hover {
  filter: invert(0.06);
}

.info-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

.col-block {
  padding: 20px;
  background: var(--surface);
  border-top: 3px solid var(--accent);
}

.col-block h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

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

.stat-item {
  padding: 20px;
  background: var(--text);
  color: var(--secondary);
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

.layout-inverted {
  background: var(--text);
  color: var(--secondary);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.layout-inverted h2 {
  color: #fff;
}

.layout-inverted p {
  color: var(--secondary);
  opacity: 0.9;
}

.decor-bg {
  width: 100%;
  max-width: 500px;
  height: 200px;
  background-size: cover;
  background-position: center;
  margin-top: 24px;
  opacity: 0.7;
  animation: distorted-rgb-split 10s ease-in-out infinite;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.info-cta:hover {
  filter: invert(0.1);
  transform: translateX(4px);
}

.clip-overlap {
  position: relative;
  overflow: hidden;
}

.clip-overlap h2 {
  font-size: 2.2rem;
  line-height: 0.9;
  margin-bottom: -8px;
  clip-path: inset(0 0 30% 0);
  opacity: 0.25;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image-col {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-image-col img {
    max-height: 180px;
    min-height: 180px;
    max-width: 100%;
    width: 100%;
  }

  .hero-text-col {
    padding: 32px 24px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-title-glitch {
    right: 24px;
  }

  .layout-split,
  .layout-quote,
  .layout-numbered-list,
  .zigzag-row,
  .layout-cards,
  .layout-columns-3,
  .stat-band,
  .layout-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-tile:nth-child(1) {
    grid-column: span 1;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .decor-bg {
    max-width: 100%;
    height: 140px;
  }

  .info-section {
    overflow-x: hidden;
  }

  .offer-logo-wrap {
    width: 100px;
    height: 68px;
  }

  .offer-logo-wrap img,
  .offer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-bonus {
    font-size: 0.82rem;
  }
}

@media (max-width: 375px) {
  .hero-image-col img {
    max-height: 160px;
    min-height: 160px;
  }

  .decor-img {
    max-height: 180px;
  }

  .offers-section {
    padding: 40px 12px;
  }

  .offer-card {
    max-width: 100%;
    padding: 20px 16px;
  }
}
