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

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

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(28px, 5vw, 44px);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  z-index: 1;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/decorative/decor_2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 249, 246, 0.7) 0%, var(--bg) 100%);
  z-index: 0;
}

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

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 8px;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
}

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

.offer-card {
  background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  max-width: 360px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s;
}

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

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

.offer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.offer-bonus-wrap {
  margin-bottom: 12px;
}

.offer-bonus {
  font-size: 18px;
  font-weight: 700;
  color: #FFD700;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

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

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

.offer-cta {
  background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
  color: #1a1a2e;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.15s;
}

.offer-cta:hover {
  transform: translateY(-2px);
}

.offer-cta:active {
  transform: translateY(1px);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2);
}

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

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section:nth-child(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(244, 164, 96, 0.04) 100%);
}

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

.info-1-layout .info-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.info-1-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-mini-card {
  background: linear-gradient(165deg, var(--surface) 0%, rgba(255, 249, 246, 0.9) 100%);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--border);
}

.info-mini-card h3 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 6px;
}

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

.info-1-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-raised);
  object-fit: cover;
}

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

.info-2-layout h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.info-2-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.info-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: var(--surface);
  padding: 28px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--border);
  position: relative;
}

.info-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(180deg, var(--primary) 0%, #C85A45 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-soft);
}

.info-3-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.info-3-sidebar {
  flex: 0 0 280px;
  background: linear-gradient(180deg, var(--nav-bg) 0%, #3A2218 100%);
  color: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: var(--shadow-raised);
}

.info-3-sidebar h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.info-3-sidebar ul {
  list-style: none;
}

.info-3-sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.info-3-main h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.info-3-main p {
  margin-bottom: 14px;
}

.info-4-layout {
  background: linear-gradient(135deg, rgba(226, 114, 91, 0.06) 0%, rgba(112, 130, 56, 0.06) 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.info-4-layout h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.info-4-highlight {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  box-shadow: var(--shadow-soft);
}

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

.info-5-layout h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.info-5-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-raised);
}

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

.info-5-table th {
  background: linear-gradient(180deg, var(--nav-bg) 0%, #3A2218 100%);
  color: #fff;
  font-weight: 600;
}

.info-5-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-raised);
  object-fit: cover;
}

.info-6-layout h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
}

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

.info-check-item {
  background: var(--surface);
  padding: 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--border);
  text-align: center;
}

.info-check-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent) 0%, #5A6B2A 100%);
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

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

.info-7-payments {
  flex: 1;
  min-width: 280px;
}

.info-7-payments h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.info-pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.info-pay-item {
  background: var(--surface);
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.info-7-visual {
  flex: 0 0 300px;
}

.info-7-visual img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-raised);
  object-fit: cover;
}

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

.info-8-layout h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

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

.info-tier {
  background: linear-gradient(165deg, var(--surface) 0%, rgba(255, 249, 246, 0.8) 100%);
  padding: 28px 24px;
  border-radius: 14px;
  width: 200px;
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--border);
}

.info-tier h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

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

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

.info-9-layout h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.info-9-callout {
  background: linear-gradient(165deg, rgba(112, 130, 56, 0.12) 0%, var(--surface) 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-raised);
  border: 1px solid rgba(112, 130, 56, 0.2);
}

.info-9-callout h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

.info-9-callout ul {
  list-style: none;
  margin-top: 12px;
}

.info-9-callout li {
  padding: 6px 0;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.info-9-callout li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.info-10-layout {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.info-10-layout h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.info-10-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.info-stat {
  background: var(--surface);
  padding: 24px 32px;
  border-radius: 14px;
  box-shadow: var(--shadow-raised);
  border: 1px solid var(--border);
}

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

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

.info-cta-link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: linear-gradient(180deg, var(--primary) 0%, #C85A45 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-raised);
  transition: transform 0.15s;
}

.info-cta-link:hover {
  transform: translateY(-2px);
}

.info-cta-link:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-pressed);
}

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

  .offer-logo-wrap {
    width: 120px;
    height: 60px;
  }

  .offer-logo-wrap img {
    object-fit: contain;
    object-position: center;
  }

  .info-1-layout,
  .info-5-layout,
  .info-9-layout {
    grid-template-columns: 1fr;
  }

  .info-3-layout {
    flex-direction: column;
  }

  .info-3-sidebar {
    flex: none;
    width: 100%;
  }

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

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

@media (max-width: 375px) {
  .offers-section,
  .info-section,
  .info-inner,
  .hero {
    max-width: 100%;
    overflow-x: hidden;
  }

  .info-1-img,
  .info-5-img,
  .info-7-visual img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
    height: auto;
  }
}
