:root {
  --bg: #0D110E;
  --surface: #141B15;
  --text: #E6F0E9;
  --muted: #7A9482;
  --primary: #A3B18A;
  --secondary: #588157;
  --accent: #3A5A40;
  --border: rgba(163, 177, 138, 0.15);
  --warn: #C9A227;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1200px;
  --nav-h: 90px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

img:not(.offer-card__logo) {
  max-width: 100%;
  display: block;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.disclosure-bar {
  display: flex;
  width: 100%;
  align-items: stretch;
  min-height: 36px;
}

.disclosure-bar__icon {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warn);
  color: #1a1400;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.disclosure-bar__text {
  flex: 1;
  background: #E8EDE9;
  color: #2a332c;
  font-size: 12px;
  line-height: 1.45;
  padding: 8px 14px;
  text-align: left;
}

.nav-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.site-header {
  position: static;
  background: var(--bg);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04), 0 4px 16px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px 24px;
}

.header-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  height: 36px;
  width: auto;
}

.burger-label {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1a221c 0%, #111612 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.burger-label span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 18px;
  padding-top: 10px;
}

.nav-desktop a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 4px 2px;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(165deg, #141B15 0%, #0D110E 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-drawer a {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.nav-check:checked ~ .nav-drawer {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.nav-check:checked ~ .drawer-overlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.nav-check:checked ~ .site-header .burger-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-check:checked ~ .site-header .burger-label span:nth-child(2) {
  opacity: 0;
}

.nav-check:checked ~ .site-header .burger-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
  background: linear-gradient(180deg, #111812 0%, #0a0d0b 100%);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: auto;
  box-shadow: inset 0 1px 0 rgba(163, 177, 138, 0.08);
}

.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-logo {
  margin: 0 auto 24px;
  opacity: 0.9;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 28px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

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

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

.footer-au-disclosure {
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 16px;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(122, 148, 130, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: linear-gradient(180deg, #1a221c 0%, #141B15 100%);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.45);
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  max-width: 560px;
}

.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-accept {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(180deg, #6b9a68 0%, #588157 50%, #466846 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 3px 0 #2d442c, 0 4px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cookie-accept:hover {
  color: #fff;
  transform: translateY(1px);
  box-shadow: 0 2px 0 #2d442c, 0 3px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cookie-banner:target {
  display: none;
}

.legal-page {
  padding: 48px 0 64px;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(165deg, #171f18 0%, #141B15 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legal-content h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--text);
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.legal-content ul {
  margin: 0 0 14px 20px;
  color: var(--muted);
  font-size: 14px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content code {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

.legal-content strong {
  color: var(--text);
}

.contact-form-wrap {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-form-wrap h2 {
  margin-top: 0;
}

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

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: linear-gradient(180deg, #0a0d0b 0%, #111612 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #d4a574;
  margin-top: 6px;
}

.form-field input[type="email"]:invalid:not(:placeholder-shown) + .field-error {
  display: block;
}

.contact-submit {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 28px;
  background: linear-gradient(180deg, #b5c4a0 0%, #A3B18A 50%, #8a9a72 100%);
  color: #1a221c;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  box-shadow: 0 3px 0 #5a6b4e, 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease;
}

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

.contact-form:invalid .contact-submit {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
}

#message-sent:target .contact-form {
  display: none;
}

.contact-success {
  display: none;
  padding: 24px;
  background: linear-gradient(135deg, rgba(88, 129, 87, 0.2) 0%, rgba(58, 90, 64, 0.15) 100%);
  border: 1px solid var(--secondary);
  border-radius: 10px;
  margin-top: 16px;
}

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

#message-sent:target .contact-success {
  display: block;
}

.error-page {
  padding: 80px 24px;
  text-align: center;
}

.error-page h1 {
  font-size: 72px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.error-page p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 16px;
}

.error-home {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #6b9a68 0%, #588157 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 3px 0 #2d442c, inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.error-home:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .burger-label {
    display: flex;
  }

  .header-logo-row {
    border-bottom: none;
    padding-bottom: 0;
  }

  .legal-content {
    padding: 28px 20px;
  }
}

.hero {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 24px;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(13, 17, 14, 0.2);
  filter: blur(40px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: #0D110E;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(13, 17, 14, 0.82);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}

.offers-section {
  padding: 56px 0;
  background: var(--bg);
}

.offers-head {
  text-align: center;
  margin-bottom: 36px;
}

.offers-head h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

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

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.offer-card {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
}

.offer-card__logo-wrap {
  width: 200px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
  margin: 0 auto;
}

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

.offer-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  font-size: 0.875rem;
  color: #fbbf24;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: #B6C2E2;
}

.offer-card__desc {
  font-size: 12px;
  color: #B6C2E2;
  line-height: 1.5;
  margin: 0;
}

.offer-card__btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #3B82F6;
  color: #3B82F6;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: auto;
  font-family: inherit;
}

.offer-card__btn:hover {
  background: #3B82F6;
  color: #0f172a;
  transform: scale(1.05);
}

.info-section {
  padding: 52px 0;
}

.info-section:nth-child(odd) {
  background: var(--surface);
}

.info-section:nth-child(even) {
  background: var(--bg);
}

.info-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 10px;
}

.info-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.info-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

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

.lyt-split-reverse {
  direction: rtl;
}

.lyt-split-reverse > * {
  direction: ltr;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: linear-gradient(145deg, #1a221c 0%, #111612 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card strong {
  display: block;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 4px;
}

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

.lyt-quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 36px;
  border-left: 4px solid var(--secondary);
  background: linear-gradient(90deg, rgba(88, 129, 87, 0.12) 0%, transparent 100%);
  border-radius: 0 12px 12px 0;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}

.lyt-quote .info-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
}

.lyt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.step-item {
  text-align: center;
  padding: 20px 14px;
  background: linear-gradient(180deg, #171f18 0%, #141B15 100%);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  color: #0D110E;
  font-weight: 800;
  border-radius: 50%;
  font-size: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.step-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.lyt-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.icon-box {
  padding: 24px 18px;
  background: linear-gradient(165deg, #1a221c 0%, #0f1410 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(163, 177, 138, 0.08);
}

.icon-box::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  margin-bottom: 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.icon-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.icon-box p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.lyt-callout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.callout-box {
  padding: 24px;
  background: linear-gradient(135deg, rgba(163, 177, 138, 0.15) 0%, rgba(58, 90, 64, 0.2) 100%);
  border: 1px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.callout-box h3 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 10px;
}

.callout-box p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.lyt-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 20px;
}

.lyt-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--surface), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.timeline-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

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

.masonry-card {
  padding: 20px;
  background: linear-gradient(180deg, #171f18 0%, #121812 100%);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.masonry-card:nth-child(1) {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.masonry-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.masonry-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.lyt-narrow {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0;
  line-height: 1.4;
  padding: 0 20px;
}

.lyt-zigzag {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.zigzag-visual {
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.12);
}

.lyt-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.block-item {
  padding: 18px 14px;
  background: linear-gradient(180deg, #1c251e 0%, #141B15 100%);
  border-top: 3px solid var(--secondary);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.block-item h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.block-item p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .lyt-split,
  .lyt-callout,
  .zigzag-row {
    grid-template-columns: 1fr;
  }

  .lyt-split-reverse {
    direction: ltr;
  }

  .lyt-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .lyt-icon-grid,
  .lyt-masonry,
  .lyt-blocks {
    grid-template-columns: 1fr;
  }

  .masonry-card:nth-child(1) {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }

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

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

  .stat-cards {
    grid-template-columns: 1fr;
  }

  .lyt-steps {
    grid-template-columns: 1fr;
  }
}
