:root {
  --bg: #0B120E;
  --surface: #16221B;
  --text: #E8F5E9;
  --muted: #81C784;
  --primary: #2E7D32;
  --secondary: #1B5E20;
  --accent: #FFB300;
  --border: rgba(129, 199, 132, 0.12);
  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Arial Black', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --max-w: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  background-image: linear-gradient(165deg, #0B120E 0%, #16221B 45%, #0B120E 100%);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(46, 125, 50, 0.12) 0%, transparent 55%);
}

body > * {
  position: relative;
  z-index: 1;
}

body > main {
  flex: 1 0 auto;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: #0066cc;
  text-decoration: underline;
}

a:hover {
  color: #004499;
}

.disclosure-bar {
  width: 100%;
  padding: 8px 16px;
  background: #f5f5f5;
  text-align: center;
}

.disclosure-bar p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: #555;
}

.site-header {
  position: static;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.nav-left,
.nav-right {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-left {
  justify-content: flex-end;
}

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

.nav-left a,
.nav-right a {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 8px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-left a:hover,
.nav-right a:hover {
  opacity: 1;
  color: var(--accent);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-self: center;
}

.logo-link img {
  width: 42px;
  height: 36px;
  object-fit: contain;
}

.logo-link span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transform: scaleX(1.15);
  transform-origin: left center;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 6px;
  justify-self: end;
  grid-column: 3;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--surface);
  z-index: 201;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.3s ease;
  border-left: 3px solid var(--primary);
}

.nav-drawer.is-open {
  right: 0;
}

.nav-drawer a {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-drawer a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/decorative/decor_1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 20px;
  max-width: 820px;
}

.hero-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  max-width: 640px;
  margin: 0 auto;
}

.marquee-divider {
  overflow: hidden;
  background: var(--primary);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 8px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 40px;
}

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

.brutalist-grid {
  display: grid;
  gap: 0;
  border: 2px solid var(--border);
}

.anti-design-block {
  border: 3px solid var(--muted);
  box-shadow: 8px 8px 0 var(--secondary);
}

.raw-typography {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.asymmetric-layout {
  display: grid;
  gap: 24px;
}

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

.offers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 14, 0.88);
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  transform: scaleX(1.2);
  color: var(--accent);
  margin-bottom: 8px;
}

.offers-header p {
  color: var(--muted);
  font-size: 14px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card-wrap {
  display: flex;
  flex-direction: column;
}

.offer-card {
  background: linear-gradient(145deg, #1a1f2e 0%, #12151c 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

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

.offer-card__logo {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  width: 200px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.offer-bonus {
  font-size: 0.88rem;
  font-weight: 600;
  color: #38bdf8;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
  max-width: 100%;
}

.offer-terms-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.offer-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  text-align: left;
  width: 100%;
}

.offer-cta {
  display: inline-block;
  margin-top: auto;
  padding: 10px 24px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

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

.info-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 20px;
  border-bottom: 1px solid var(--border);
}

.info-section h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 12px;
}

.info-section p:last-child {
  margin-bottom: 0;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--accent);
}

.info-cta-link:hover {
  background: var(--secondary);
  color: var(--text);
}

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

.info-1-layout .decor-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: 12px 12px 0 var(--secondary);
}

.info-2-layout {
  background: var(--surface);
  padding: 40px;
  border-left: 6px solid var(--accent);
  margin-left: 8%;
  width: 92%;
}

.info-2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.info-2-badges span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--muted);
  color: var(--accent);
}

.info-3-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: center;
}

.info-3-layout .text-col {
  flex: 1;
}

.info-3-layout .decor-img {
  max-width: 400px;
  max-height: 280px;
  object-fit: cover;
  filter: contrast(1.1);
  box-shadow: -10px 10px 0 rgba(255, 179, 0, 0.4);
}

.info-4-layout {
  text-align: center;
  padding: 48px 32px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(129, 199, 132, 0.04) 10px,
    rgba(129, 199, 132, 0.04) 20px
  );
  border: 2px dashed var(--border);
}

.info-4-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}

.info-4-cards div {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-4-cards h3 {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-4-cards p {
  font-size: 13px;
}

.info-5-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
}

.info-5-layout .decor-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
}

.info-5-list {
  list-style: none;
  margin-top: 16px;
}

.info-5-list li {
  padding: 8px 0 8px 20px;
  border-left: 3px solid var(--primary);
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.info-6-layout {
  position: relative;
  padding-left: 48px;
}

.info-6-layout::before {
  content: '01';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
}

.info-6-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-6-steps div {
  padding: 16px;
  background: var(--surface);
  border-top: 3px solid var(--accent);
}

.info-6-steps strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-7-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--border);
}

.info-7-layout .col {
  padding: 32px;
}

.info-7-layout .col:first-child {
  background: var(--surface);
  border-right: 2px solid var(--border);
}

.info-7-layout .decor-img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  margin-top: 16px;
}

.info-8-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.info-8-layout .decor-wrap {
  flex-shrink: 0;
}

.info-8-layout .decor-img {
  max-width: 280px;
  max-height: 320px;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.info-8-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.info-8-stats div {
  text-align: center;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-8-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.info-8-stats span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-9-layout {
  columns: 2;
  column-gap: 40px;
}

.info-9-layout h2 {
  column-span: all;
}

.info-9-layout .decor-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  margin: 16px 0;
  break-inside: avoid;
  box-shadow: 6px 6px 0 var(--primary);
}

.info-10-layout {
  background: var(--surface);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.info-10-layout::after {
  content: 'POKER';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.08;
  letter-spacing: 8px;
  transform: rotate(-12deg);
}

.info-10-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 13px;
}

.info-10-table th,
.info-10-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
  color: var(--muted);
}

.info-10-table th {
  background: var(--bg);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  background: var(--surface);
  border-top: 3px solid var(--primary);
  padding: 48px 20px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand a.logo-link {
  justify-self: start;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-content: start;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-badges a,
.footer-badges span {
  display: block;
}

.footer-badges img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badges a:hover img {
  opacity: 1;
}

.footer-company {
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 12px;
}

.footer-disclosure {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(129, 199, 132, 0.7);
  margin-top: 16px;
}

.footer-disclosure p {
  margin-bottom: 10px;
}

.footer-bottom {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  background: var(--surface);
  border: 3px solid var(--primary);
  padding: 40px;
  max-width: 480px;
  text-align: center;
}

.age-gate__panel h2 {
  font-family: var(--font-serif);
  margin-bottom: 16px;
  color: var(--text);
}

.age-gate__panel p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 14px;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 12px 24px;
  background: var(--primary);
  color: var(--text);
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--secondary);
}

.btn-ghost {
  padding: 12px 24px;
  background: transparent;
  color: var(--muted);
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--muted);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 3px solid var(--accent);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

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

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.page-hero {
  padding: 48px 20px 32px;
  text-align: center;
  background: var(--surface);
  border-bottom: 2px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 8px;
}

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

.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

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

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

.page-content p,
.page-content li {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 14px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-header-simple .header-inner {
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
}

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

.form-error {
  display: none;
  color: #ef5350;
  font-size: 12px;
}

.contact-success {
  display: none;
  padding: 24px;
  background: var(--surface);
  border: 2px solid var(--primary);
  text-align: center;
  margin-top: 24px;
}

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

.contact-success p {
  color: var(--text);
  font-size: 15px;
}

.go-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  background: var(--bg);
}

.go-page #AD {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}

.go-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.go-page p {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 12px;
}

.go-compliance {
  font-size: 12px;
  margin-top: 16px;
}

.go-compliance a {
  color: #0066cc;
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}

.subpage-hero-strip {
  padding: 56px 20px;
  background: var(--surface);
  border-bottom: 4px solid var(--accent);
  text-align: center;
}

.subpage-hero-strip h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  max-width: 720px;
  margin: 0 auto;
}

.subpage-split {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}

.subpage-rail {
  border-right: 3px solid var(--primary);
  padding-right: 24px;
}

.subpage-rail ul {
  list-style: none;
}

.subpage-rail li {
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.subpage-body h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--text);
}

.subpage-body h2:first-child {
  margin-top: 0;
}

.subpage-body p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.7;
}

.subpage-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.subpage-body li {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.subpage-img-rail {
  float: right;
  margin: 0 0 20px 24px;
  max-width: 320px;
}

.subpage-img-rail img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: 8px 8px 0 var(--secondary);
}

.subpage-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.subpage-mosaic img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

.subpage-stat-band {
  display: flex;
  gap: 0;
  margin: 40px 0;
  border: 2px solid var(--border);
}

.subpage-stat-band div {
  flex: 1;
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.subpage-stat-band div:last-child {
  border-right: none;
}

.subpage-stat-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
}

.subpage-stat-band span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subpage-pullquote {
  border-left: 6px solid var(--accent);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--surface);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
}

.subpage-sidebar-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.subpage-sidebar {
  background: var(--surface);
  padding: 24px;
  border: 2px solid var(--border);
  align-self: start;
  position: sticky;
  top: 20px;
}

.subpage-sidebar img {
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 16px;
}

.subpage-sidebar h3 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.subpage-sidebar p {
  font-size: 12px;
  color: var(--muted);
}

.subpage-fullwidth-band {
  background: var(--surface);
  padding: 80px 20px;
  margin: 40px 0;
  position: relative;
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--accent);
}

.subpage-fullwidth-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 14, 0.82);
}

.subpage-fullwidth-band .inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.subpage-fullwidth-band h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 12px;
}

.subpage-fullwidth-band p {
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 1024px) {
  .nav-left,
  .nav-right {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-left {
    grid-column: 1;
  }

  .logo-link {
    grid-column: 2;
  }

  .nav-right {
    grid-column: 3;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 250px;
    background-attachment: scroll;
  }

  .decor-img,
  .subpage-img-rail img,
  .subpage-mosaic img,
  .subpage-sidebar img,
  .subpage-body > img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
  }

  .offer-card__logo {
    width: 200px;
    height: 72px;
  }

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

  .info-1-layout,
  .info-3-layout,
  .info-5-layout,
  .info-7-layout,
  .info-8-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-2-layout {
    margin-left: 0;
    width: 100%;
  }

  .info-4-cards,
  .info-6-steps {
    grid-template-columns: 1fr;
  }

  .info-9-layout {
    columns: 1;
  }

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

  .subpage-split,
  .subpage-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .subpage-rail {
    border-right: none;
    border-bottom: 3px solid var(--primary);
    padding-right: 0;
    padding-bottom: 16px;
  }

  .subpage-img-rail {
    float: none;
    margin: 0 0 20px;
    max-width: 100%;
  }

  .subpage-mosaic {
    grid-template-columns: 1fr;
  }

  .subpage-stat-band {
    flex-direction: column;
  }

  .subpage-stat-band div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .info-8-stats {
    flex-direction: column;
  }
}
