.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: none;
}

.hero__left {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  border-right: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.hero__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.15), transparent 55%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.04) 28px,
      rgba(255, 255, 255, 0.04) 29px
    );
  pointer-events: none;
}

.hero__left-inner {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.hero__left h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}

.hero__left .aesthetic {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.hero__cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  opacity: 1;
}

.hero__right {
  background: var(--surface);
  display: flex;
  align-items: center;
  padding: 48px 36px;
  position: relative;
}

.hero__right::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.hero__right p {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text);
  max-width: 420px;
  line-height: 1.55;
  font-weight: 400;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__left {
    border-right: none;
    border-bottom: 2px solid var(--accent);
    min-height: 200px;
  }
  .hero__right {
    min-height: 160px;
  }
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: var(--secondary);
  background-image:
    linear-gradient(160deg, rgba(44, 36, 29, 0.88), rgba(141, 91, 62, 0.55)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(192, 82, 43, 0.28), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(141, 91, 62, 0.22), transparent 40%);
  pointer-events: none;
}

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

.offers-header {
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
}

.offers-header h2 {
  color: #fff;
  margin-bottom: 10px;
}

.offers-header p {
  color: rgba(244, 235, 217, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

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

.offer-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  min-width: 0;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(141, 91, 62, 0.35);
}

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

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

.offer-name {
  font-size: 1.2rem;
  text-align: center;
  color: #020617;
}

.offer-bonus-wrap {
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

.offer-bonus {
  display: block;
  font-weight: 700;
  font-size: clamp(0.78rem, 2.4vw, 0.98rem);
  color: #8D5B3E;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  hyphens: auto;
}

.offer-terms {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: #64748b;
}

.offer-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
  text-align: center;
}

.offer-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  color: #ffffff;
  background-image: linear-gradient(135deg, #8D5B3E, #C0522B);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 8px 20px rgba(141, 91, 62, 0.4);
  transition: background-position 0.4s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.offer-cta:hover {
  color: #ffffff;
  background-position: 100% 50%;
  box-shadow: 0 10px 28px rgba(192, 82, 43, 0.5);
}

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

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

.info-block h2 {
  margin-bottom: 16px;
}

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

.info-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, opacity 0.25s ease;
  opacity: 0.92;
}

.info-cta:hover {
  background: var(--accent);
  color: #fff;
  opacity: 1;
}

#info-1 {
  background: var(--bg);
}

#info-1 .info-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

#info-1 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#info-1 li {
  padding: 14px 16px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: 0.95rem;
}

#info-2 {
  background: var(--fashion-ink);
  color: #fff;
}

#info-2 h2 {
  color: #fff;
}

#info-2 p {
  color: rgba(244, 235, 217, 0.75);
}

#info-2 .runway {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

#info-2 .pull {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.35;
  color: #fff;
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}

#info-3 {
  background: var(--surface);
}

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

#info-3 .step {
  padding: 20px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
}

#info-3 .step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

#info-3 .step p {
  margin: 0;
  font-size: 0.9rem;
}

#info-4 {
  background: var(--bg);
}

#info-4 .split-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}

#info-4 .decor-wrap {
  max-width: 500px;
}

#info-5 {
  background: var(--surface);
}

#info-5 .cote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

#info-5 .cote-card {
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  text-align: center;
}

#info-5 .cote-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

#info-5 .cote-card span {
  font-size: 0.85rem;
  color: var(--muted);
}

#info-6 {
  background: var(--bg);
}

#info-6 .cashout-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

#info-6 .cashout-rail {
  background: var(--secondary);
  color: rgba(244, 235, 217, 0.9);
  padding: 28px 22px;
}

#info-6 .cashout-rail h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

#info-6 .cashout-rail p {
  color: rgba(244, 235, 217, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

#info-6 .cashout-body {
  padding: 28px 28px;
  background: var(--surface);
}

#info-7 {
  background: var(--surface);
  position: relative;
}

#info-7 .timeline {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

#info-7 .timeline-item {
  position: relative;
  padding: 0 0 24px;
}

#info-7 .timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

#info-7 .timeline-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

#info-7 .split-visual {
  display: grid;
  grid-template-columns: 1fr minmax(0, 320px);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

#info-8 {
  background: var(--bg);
}

#info-8 .magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

#info-8 .mag-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
}

#info-8 .mag-lead::first-letter {
  font-size: 3.2rem;
  float: left;
  line-height: 0.85;
  padding-right: 10px;
  color: var(--accent);
  font-weight: 700;
}

#info-8 .mag-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#info-8 .mag-band {
  height: 160px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

#info-9 {
  background: var(--surface);
}

#info-9 .check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

#info-9 .check-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
}

#info-9 .check-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

#info-9 .check-item p {
  margin: 0;
  font-size: 0.9rem;
}

#info-9 .decor-wrap {
  margin-top: 28px;
  max-width: 420px;
}

#info-10 {
  background: var(--bg);
}

#info-10 .pay-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

#info-10 .pay-col {
  padding: 22px 18px;
  background: var(--surface);
  border-top: 3px solid var(--accent);
}

#info-10 .pay-col h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

#info-10 .pay-col p {
  margin: 0;
  font-size: 0.9rem;
}

#info-10 .visual-band {
  margin-top: 28px;
  height: 180px;
  max-width: 500px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-sweep {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero__left-inner {
  animation: fade-up 0.7s ease both;
}

.hero__right p {
  animation: fade-up 0.7s ease 0.15s both;
}

.offer-card {
  animation: fade-up 0.55s ease both;
}

.offer-card:nth-child(2) { animation-delay: 0.08s; }
.offer-card:nth-child(3) { animation-delay: 0.16s; }
.offer-card:nth-child(4) { animation-delay: 0.24s; }
.offer-card:nth-child(5) { animation-delay: 0.32s; }

.info-block h2 {
  position: relative;
}

.info-block h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin-top: 12px;
  transform-origin: left;
  animation: line-sweep 0.6s ease both;
}

@media (max-width: 900px) {
  #info-1 .info-inner,
  #info-2 .runway,
  #info-4 .split-visual,
  #info-6 .cashout-layout,
  #info-7 .split-visual,
  #info-8 .magazine {
    grid-template-columns: 1fr;
  }
  #info-3 .steps,
  #info-5 .cote-grid,
  #info-10 .pay-cols {
    grid-template-columns: 1fr;
  }
  #info-9 .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .info-block {
    padding: 40px 16px;
  }
  .offers-section {
    padding: 40px 16px;
  }
  .offer-logo-wrap {
    width: 140px;
    height: 70px;
  }
  .offer-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}
