.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-image:
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%),
    url("/images/decorative/decor_8.jpg");
  background-size: cover;
  background-position: center;
  padding: 48px 24px 56px;
}

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

.hero-section h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  line-height: 1.6;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(229, 233, 240, 0.92);
}

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

.offers-inner h2 {
  font-size: 1.65rem;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text);
}

.offers-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 36px;
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2e20;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.2);
  transform: rotate(-1deg);
}

.offer-card:nth-child(2) {
  transform: rotate(1.2deg);
}

.offer-card:nth-child(3) {
  transform: rotate(-0.6deg);
}

.offer-card-logo {
  width: 280px;
  height: 90px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}

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

.offer-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.offer-card-name {
  font-size: 1.15rem;
  color: #ecfdf5;
}

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

.offer-bonus {
  font-size: 0.95rem;
  color: #fbbf24;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.offer-terms {
  font-size: 0.72rem;
  color: rgba(236, 253, 245, 0.55);
}

.offer-desc {
  font-size: 0.78rem;
  color: rgba(236, 253, 245, 0.65);
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  background: #22c55e;
  color: #0d1b12;
  border: none;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.offer-cta:hover {
  background: #4ade80;
}

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

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

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

.info-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 16px;
  color: var(--text);
}

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

.info-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, transform 0.15s ease;
}

.info-cta:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-1px);
}

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

.info-1-img-wrap {
  transform: rotate(1.5deg);
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  overflow: hidden;
  max-width: 500px;
}

.info-1-img-wrap img {
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

.info-1-list {
  list-style: none;
  margin: 16px 0;
  display: grid;
  gap: 8px;
}

.info-1-list li {
  background: var(--bg);
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

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

.info-2-card {
  background: var(--bg);
  padding: 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transform: rotate(-1deg);
}

.info-2-card:nth-child(2) {
  transform: rotate(0.8deg);
  margin-top: 8px;
}

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

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

.info-2-card p {
  font-size: 0.88rem;
  margin: 0;
}

.info-3-quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin: 18px 0;
  font-style: italic;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transform: rotate(-0.3deg);
}

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

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

.info-4-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

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

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

.info-4-stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.info-5-timeline {
  position: relative;
  margin: 24px 0;
  padding-left: 28px;
  border-left: 2px dashed var(--primary);
}

.info-5-step {
  position: relative;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.info-5-step::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--surface);
}

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

.info-5-step p {
  font-size: 0.88rem;
  margin: 0;
}

.info-6-img-bg {
  position: relative;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 18px;
}

.info-6-img-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/decorative/decor_3.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.info-6-img-bg ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 10px;
}

.info-6-img-bg li {
  background: rgba(236, 239, 244, 0.95);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.info-7-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 18px 0;
}

.info-7-tile {
  background: var(--bg);
  padding: 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transform: rotate(0.5deg);
}

.info-7-tile:nth-child(even) {
  transform: rotate(-0.7deg);
}

.info-7-tile strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-7-tile span {
  font-size: 0.88rem;
  color: var(--muted);
}

.info-8-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.info-8-markets {
  background: var(--bg);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
}

.info-8-markets h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text);
}

.info-8-markets ul {
  list-style: none;
}

.info-8-markets li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.info-8-markets li:last-child {
  border-bottom: none;
}

.info-9-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.info-9-img {
  flex-shrink: 0;
  max-width: 320px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  max-height: 320px;
  object-fit: cover;
}

.info-9-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.info-pill {
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
}

.info-10-band {
  display: block;
}

.info-10-highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(0.8deg);
}

.info-10-highlight h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.info-10-highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

.info-10-img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 40vh;
    align-items: center;
    text-align: center;
  }

  .hero-section h1,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .offer-card-logo {
    width: 240px;
    height: 78px;
  }

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

  .info-1-layout,
  .info-4-split,
  .info-8-columns,
  .info-9-wrap,
  .info-10-band {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-1-img-wrap,
  .info-4-img,
  .info-9-img,
  .info-10-img {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .info-1-img-wrap img,
  .info-4-img,
  .info-9-img,
  .info-10-img {
    max-width: 100%;
    max-height: 240px;
    width: 100%;
    object-fit: cover;
  }

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

  .info-7-grid {
    grid-template-columns: 1fr;
  }

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