.hero {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  min-height: 380px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.15);
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(11, 11, 11, 0.92) 0%, rgba(21, 21, 21, 0.95) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(220, 38, 38, 0.08) 0%, transparent 60%);
  background-size: cover, cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(250, 250, 250, 0.02) 48px,
    rgba(250, 250, 250, 0.02) 49px
  );
  pointer-events: none;
}

.offers-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.offers-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 12px;
}

.offers-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
}

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

.offer-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.offer-logo-wrap {
  width: 160px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.offer-card-bonus {
  font-size: 14px;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

.offer-card-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  margin-top: auto;
  align-self: flex-start;
}

.offer-cta:hover {
  opacity: 0.92;
  color: #fff;
}

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

.info-section:nth-child(even) {
  background: rgba(21, 21, 21, 0.5);
}

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

.info-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 36px;
  height: 36px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-cta-link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.info-cta-link:hover {
  color: var(--text);
  opacity: 0.9;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.layout-split img {
  max-width: 280px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
}

.info-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--accent);
}

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

.layout-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-left: 2px solid var(--accent);
  margin-left: 23px;
  padding-left: 24px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
}

.timeline-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-left: -71px;
}

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

.pull-quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.stat-box {
  text-align: center;
  padding: 20px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

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

.stat-box span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.layout-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-top: 16px;
}

.check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
}

.check-item::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.layout-band {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
}

.layout-band img {
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
}

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

.col-block {
  padding: 24px;
  border-top: 3px solid var(--primary);
  background: rgba(21, 21, 21, 0.8);
}

.col-block h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

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

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

.icon-cell {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.icon-cell .section-icon {
  margin-top: 2px;
}

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

.layout-feature-row {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.layout-feature-row .text-block {
  flex: 1;
  min-width: 280px;
}

.layout-feature-row img {
  max-width: 320px;
  max-height: 280px;
  object-fit: cover;
  flex-shrink: 0;
}

.info-decor-img {
  margin-top: 24px;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 375px) {
  .info-decor-img {
    max-height: 200px;
  }
}

.info-section p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.medical-clean-note {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 32px;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .hero-visual {
    order: -1;
  }

  .hero-circle {
    width: 150px;
    height: 150px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .layout-split,
  .layout-quote,
  .layout-band,
  .layout-columns-3,
  .layout-cards,
  .layout-stats,
  .layout-checklist,
  .layout-icon-grid {
    grid-template-columns: 1fr;
  }

  .layout-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .layout-band img {
    margin: 0 auto;
  }

  .layout-feature-row {
    flex-direction: column;
  }

  .layout-feature-row img {
    max-width: 100%;
  }

  .offer-logo-wrap {
    width: 160px;
    height: 64px;
  }

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

@media (max-width: 375px) {
  .hero-visual,
  .layout-split,
  .layout-band,
  .layout-feature-row,
  .info-section {
    overflow: hidden;
    max-width: 100%;
  }

  .hero-circle,
  .layout-split img,
  .layout-band img,
  .layout-feature-row img,
  .info-section img {
    max-width: 100%;
    height: auto;
  }

  .layout-split img,
  .layout-band img,
  .layout-feature-row img {
    max-height: 220px;
  }
}
