.home-hero {
  display: grid;
  gap: var(--space-4);
}

.hero-panel {
  background: linear-gradient(160deg, #ffffff, #eef8f4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.comparison-card h3 {
  margin-bottom: 8px;
}

.top-brands-intro {
  background: linear-gradient(145deg, #ffffff, #f2fbf7);
}

.bonus-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px dashed #78bfa6;
  border-radius: var(--radius-md);
  background: #f7fffb;
}

.bonus-code {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #dff5eb;
  color: #0f6d54;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.bonus-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.bonus-input {
  min-height: 44px;
  min-width: 200px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #ffffff;
}

.top-brands-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.top-brand-card {
  background: linear-gradient(180deg, #ffffff, #f9fcff);
}

.operator-list {
  display: grid;
  gap: var(--space-3);
}

.operator-item {
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  background: #ffffff;
}

@media (min-width: 900px) {
  .home-hero {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }

  .top-brands-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operator-item {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

.author-block {
  background: linear-gradient(145deg, #ffffff, #f5f9fc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
  display: grid;
  gap: var(--space-3);
}

.author-block-header {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.author-block-avatar {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009879, #007f66) center / cover;
  background-image: url('/img/author-main.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.8rem;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 152, 121, 0.2);
}

.author-block-content h3 {
  margin-bottom: 4px;
}

.author-block-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.author-block-bio {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

/* Popular Slots Section */
.popular-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.slot-card {
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.slot-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 152, 121, 0.13);
  transform: translateY(-2px);
}

.slot-card-media {
  aspect-ratio: 16 / 10;
  background: #09131a;
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-card-body {
  display: grid;
  gap: 6px;
  padding: var(--space-3);
}

.slot-card h3 {
  font-size: 1rem;
  margin: 0;
}

.slot-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Payment Methods Section */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.payment-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: linear-gradient(135deg, #f9fcfb, #f0f9f5);
  border: 1px solid #d0e8e0;
  border-radius: var(--radius-lg);
  text-align: center;
}

.payment-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.payment-icon p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Providers Grid */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.provider-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-height: 170px;
  text-align: center;
  transition: all 0.2s ease;
}

.provider-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 152, 121, 0.1);
}

.provider-logo {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fbfd;
  border: 1px solid #e6edf2;
  border-radius: var(--radius-sm);
  padding: 10px;
}

.provider-card img {
  width: 100%;
  max-width: 115px;
  max-height: 56px;
  object-fit: contain;
}

.provider-card h3 {
  font-size: 0.9rem;
  margin: 0;
}
