.poker-page .hero-grid {
  align-items: center;
  gap: var(--space-8);
}

.poker-page .hero-media {
  max-width: 520px;
  margin: 0 auto;
}

.poker-page .hero-content {
  max-width: 620px;
}

.hero-keywords {
  margin-top: var(--space-3);
}

.section-intro-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.section-header {
  max-width: 720px;
  margin: 0 auto var(--space-8);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}

.timeline {
  display: grid;
  gap: var(--space-5);
  max-width: 860px;
  margin: 0 auto;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: flex-start;
}

.timeline-step h3 {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-xl);
}

.timeline-step p {
  margin-bottom: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-display);
  background: radial-gradient(circle at 30% 0, #fff3c2 0, #e2b857 40%, #b98a28 100%);
  color: #14110b;
  box-shadow: var(--shadow-soft);
}

.section-mobile .section-media,
.section-premium .section-media,
.section-gallery .section-media {
  max-width: 520px;
  margin: 0 auto;
}

.cta-box {
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  background: radial-gradient(circle at top left, rgba(226, 184, 87, 0.18), rgba(15, 23, 42, 0.96));
  border: 1px solid var(--border-subtle);
}

.section-safe .card {
  height: 100%;
}

.faq-grid {
  align-items: flex-start;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(10, 15, 28, 0.96);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-soft);
}

.faq-item + .faq-item {
  margin-top: var(--space-3);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 600;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: "\\2212";
}

.faq-item p {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
}

.section-gallery .section-media {
  margin-top: var(--space-4);
}

.cta-final {
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
}

.cta-grid {
  align-items: stretch;
  gap: var(--space-8);
}

.contact-short-form .contact-form {
  margin-top: var(--space-3);
}

.contact-short-form .full-width {
  width: 100%;
  justify-content: center;
}

@media (max-width: 959px) {
  .poker-page .hero {
    text-align: left;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .step-number {
    margin-bottom: var(--space-1);
  }
}

@media (max-width: 767px) {
  .section-header {
    text-align: left;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }
}
