.olga-block {
  --bg: #090909;
  --card: #121212;
  --gold: #c9a96e;
  --gold-hover: #e0c48c;
  --text: #f5f5f5;
  --muted: #a4a4a4;
  --line: rgba(201, 169, 110, 0.35);
  background: radial-gradient(circle at top, #111 0%, var(--bg) 45%);
  padding: 100px 20px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
}

.olga-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.gold-line {
  width: 74px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  margin: 0 auto 22px;
}

.olga-title {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.olga-subtitle {
  margin: 0 auto 56px;
  text-align: center;
  color: var(--muted);
  max-width: 760px;
  font-size: 17px;
}

.olga-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.olga-card {
  background: linear-gradient(160deg, #161616 0%, #101010 70%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.olga-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  border-color: rgba(201, 169, 110, 0.45);
}

.olga-card h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.olga-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.08);
  color: #e4cc99;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.olga-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.olga-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 16px;
}

.olga-list li:last-child {
  border-bottom: 0;
}

.olga-list li strong {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.olga-note {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.olga-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.olga-checks li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  line-height: 1.6;
}

.olga-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.olga-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.olga-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  background: var(--gold);
  color: #111;
}

.olga-button:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 110, 0.35);
}

.olga-soft-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.olga-soft-link:hover {
  color: var(--gold-hover);
  border-color: rgba(224, 196, 140, 0.6);
}

@media (max-width: 900px) {
  .olga-grid {
    grid-template-columns: 1fr;
  }

  .olga-card {
    padding: 26px;
  }

  .olga-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
