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

.hero {
  padding: 64px 16px 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 5%;
  width: 180px;
  height: 120px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: rotate(3deg);
  opacity: 0.4;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-left: -8px;
  padding-left: clamp(16px, 8vw, 80px);
  max-width: 800px;
  text-shadow: 4px 6px 12px rgba(0, 0, 0, 0.6);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  margin-top: 20px;
  padding-left: clamp(40px, 15vw, 180px);
  max-width: 560px;
  line-height: 1.7;
}

.offers-section {
  position: relative;
  padding: 64px 16px;
  background: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(204, 255, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(50, 205, 50, 0.05) 0%, transparent 40%);
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(204, 255, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(50, 205, 50, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.offers-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

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

.offers-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}

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

.offer-card {
  width: 100%;
  max-width: 340px;
  background: linear-gradient(145deg, #1a472a 0%, #0d2818 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 6px 10px 20px rgba(0, 0, 0, 0.5);
  transform: rotate(-1.5deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s;
}

.offer-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.offer-card:nth-child(even) {
  transform: rotate(1.5deg);
}

.offer-logo-wrap {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.offer-bonus-wrap {
  margin-bottom: 12px;
  width: 100%;
  max-width: 100%;
}

.offer-bonus {
  font-size: 13px;
  color: #e8f5e9;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  background: #ffffff;
  color: #0d2818;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  margin-top: auto;
}

.offer-cta:hover {
  background: #f0f0f0;
  text-decoration: none;
}

.info-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 64px;
  overflow-x: hidden;
}

.info-block {
  margin-bottom: 56px;
  position: relative;
}

.info-block h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.info-block p {
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.7;
}

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

.info-1-text {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: rotate(-1deg);
  border: 1px solid var(--border);
}

.info-1-visual {
  position: relative;
}

.info-1-visual img {
  max-width: 480px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.info-1-stats {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.info-stat {
  flex: 1;
  background: var(--secondary);
  padding: 14px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.info-stat strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
}

.info-stat span {
  font-size: 12px;
  color: var(--muted);
}

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

.info-2-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transform: rotate(var(--rot, 0deg));
}

.info-2-card:nth-child(1) { --rot: -1.5deg; }
.info-2-card:nth-child(2) { --rot: 0.5deg; }
.info-2-card:nth-child(3) { --rot: 1.8deg; }

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

.info-2-intro {
  margin-bottom: 24px;
  max-width: 700px;
}

.info-3-layout {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.info-3-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--primary);
  transform: rotate(-0.8deg);
}

.info-3-card:nth-child(even) {
  transform: rotate(0.8deg);
}

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

.info-4-layout {
  display: flex;
  gap: 32px;
}

.info-4-timeline {
  flex: 1;
  position: relative;
  padding-left: 32px;
}

.info-4-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.info-4-step {
  position: relative;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-4-step::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--bg);
}

.info-4-step h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-4-img {
  flex: 0 0 280px;
}

.info-4-img img {
  max-width: 280px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}

.info-5-layout {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.info-5-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.info-5-table th,
.info-5-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.info-5-table th {
  color: var(--primary);
  font-weight: 600;
}

.info-5-table td {
  color: var(--muted);
}

.info-6-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-6-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-6-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.info-6-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.info-6-visual {
  background-image: url("/images/decorative/decor_3.webp");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  min-height: 280px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.info-6-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), transparent);
}

.info-7-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-7-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transform: rotate(var(--r, 0deg));
}

.info-7-panel:nth-child(1) { --r: -0.5deg; }
.info-7-panel:nth-child(2) { --r: 0.3deg; }
.info-7-panel:nth-child(3) { --r: -0.8deg; }

.info-7-panel h3 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-8-layout {
  text-align: center;
}

.info-8-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.info-8-badge {
  background: var(--surface);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transform: rotate(var(--br, 0deg));
  min-width: 140px;
}

.info-8-badge:nth-child(1) { --br: -1.2deg; }
.info-8-badge:nth-child(2) { --br: 0.8deg; }
.info-8-badge:nth-child(3) { --br: -0.5deg; }
.info-8-badge:nth-child(4) { --br: 1.5deg; }

.info-8-badge strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.info-8-badge span {
  font-size: 12px;
  color: var(--muted);
}

.info-8-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

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

.info-9-step {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.info-9-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
  font-size: 14px;
}

.info-9-step h3 {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}

.info-9-step p {
  font-size: 13px;
  color: var(--muted);
}

.info-9-bottom {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.info-9-bottom img {
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: rotate(1.5deg);
}

.info-10-layout {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--surface) 100%);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.info-10-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.info-10-stat {
  text-align: center;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-10-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-10-stat span {
  font-size: 13px;
  color: var(--muted);
}

.info-10-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s;
}

.info-cta:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.decor-band {
  width: 100%;
  max-width: min(500px, calc(100vw - 32px));
  margin: 32px auto;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

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

  .hero h1 {
    margin-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .hero-sub {
    padding-left: 0;
    text-align: center;
    margin: 20px auto 0;
  }

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

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

  .info-1-layout,
  .info-2-layout,
  .info-4-layout,
  .info-6-layout,
  .info-9-layout,
  .info-10-stats,
  .info-10-cols,
  .info-9-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-1-visual {
    overflow: hidden;
    max-width: 100%;
  }

  .info-4-img {
    flex: none;
    overflow: hidden;
    max-width: 100%;
  }

  .info-4-img img {
    max-width: 100%;
    width: 100%;
  }

  .info-1-visual img {
    max-width: 100%;
    width: 100%;
  }

  .info-6-visual {
    min-height: 200px;
    max-width: 100%;
  }

  .decor-band {
    max-width: calc(100vw - 32px);
    height: 160px;
  }

  .info-3-layout {
    max-width: 100%;
  }
}
