/*
Theme Name: Melbet Theme
Description: Custom WordPress theme converted from HTML design. Dark gaming aesthetic with gold accents.
Version: 1.0
Author: Melbet
Text Domain: melbet-theme-test
*/

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #07090f;
  --bg-secondary: #0d1120;
  --bg-card: #111827;
  --bg-card-hover: #162035;
  --gold: #c9a227;
  --gold-light: #e2bb3d;
  --gold-dark: #a07f18;
  --accent: #ff6b00;
  --accent-hover: #e05f00;
  --text-primary: #f0f4ff;
  --text-secondary: #9aa5be;
  --text-muted: #5a6580;
  --border: rgba(201, 162, 39, 0.22);
  --border-subtle: rgba(255,255,255,0.06);
  --success: #22c55e;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-gold: 0 0 40px rgba(201,162,39,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  direction: ltr;
  text-align: left;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201,162,39,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255,107,0,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== STICKY BAR ===== */
#sticky-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(7,9,15,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#sticky-bar .brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
}

.sticky-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}
.sticky-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

section { padding: 64px 0; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

/* ===== HERO ===== */
#hero {
  padding: 68px 0 68px;
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { animation: fadeInUp 0.65s ease both; }
.hero-visual  { animation: fadeInUp 0.65s 0.18s ease both; }

.hero-content h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 490px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #e05f00 100%);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
  font-family: inherit;
  animation: pulse-glow 3s infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: inherit;
}
.btn-secondary:hover {
  background: rgba(201,162,39,0.08);
  border-color: var(--gold);
}

.hero-badges {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  color: var(--text-secondary);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* App mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-wrap {
  position: relative;
}

.mockup-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.1), transparent 70%);
  pointer-events: none;
}

.app-mockup {
  width: 235px;
  height: 470px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 2px solid rgba(201,162,39,0.3);
  box-shadow: var(--shadow-gold), 0 24px 60px rgba(0,0,0,0.65);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mockup-notch {
  height: 28px;
  background: #0a0c14;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-notch-pill {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}

.mockup-header {
  background: var(--gold);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.05rem;
  color: #07090f;
  letter-spacing: 2px;
}

.mockup-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.m-row {
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
}

.m-row.h1 { height: 32px; }
.m-row.h2 { height: 72px; }
.m-row.h3 { height: 48px; }
.m-row.gold { background: rgba(201,162,39,0.12); border-color: rgba(201,162,39,0.2); }
.m-row.orange { background: rgba(255,107,0,0.15); border-color: rgba(255,107,0,0.25); }

/* ===== STATS BAR ===== */
#stats-bar {
  padding: 28px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 14px 20px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
  display: block;
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.28;
}

.section-sub {
  font-size: 0.97rem;
  color: var(--text-secondary);
  margin-bottom: 38px;
  max-width: 620px;
  line-height: 1.7;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ===== HOW TO DOWNLOAD ===== */
#how-to-download { background: var(--bg-primary); }

.platform-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 9px 22px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.tab-btn.active {
  background: var(--gold);
  color: #07090f;
  border-color: var(--gold);
}

.tab-btn:hover:not(.active) {
  border-color: rgba(201,162,39,0.3);
  color: var(--text-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.25s, transform 0.25s;
}

.step-card:hover {
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-4px);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  color: #07090f;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-tip {
  margin-top: 12px;
  padding: 8px 10px;
  background: rgba(201,162,39,0.05);
  border-radius: 0;
  border-left: 3px solid var(--gold-dark);
  font-size: 0.76rem;
  color: var(--gold-light);
  line-height: 1.5;
}

.steps-cta { text-align: center; }

/* ===== REQUIREMENTS ===== */
#requirements { background: var(--bg-secondary); }

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
}

.req-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.req-table { width: 100%; border-collapse: collapse; }
.req-table tr { border-bottom: 1px solid var(--border-subtle); }
.req-table tr:last-child { border-bottom: none; }
.req-table td { padding: 10px 4px; font-size: 0.87rem; }
.req-table td:first-child { color: var(--text-muted); width: 48%; }
.req-table td:last-child { color: var(--text-primary); font-weight: 600; }

/* ===== FEATURES ===== */
#features { background: var(--bg-primary); }

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  border-color: rgba(201,162,39,0.28);
  box-shadow: 0 0 24px rgba(201,162,39,0.06);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.features-cta { text-align: center; margin-top: 36px; }

/* ===== SECURITY ===== */
#security { background: var(--bg-secondary); }

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s;
}

.security-item:hover { border-color: rgba(201,162,39,0.2); }
.sec-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 1px; }
.security-item h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 5px; }
.security-item p { font-size: 0.81rem; color: var(--text-secondary); line-height: 1.6; }

.trust-strip {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 0.81rem;
  color: var(--text-secondary);
}

/* ===== BONUS ===== */
#bonus { background: var(--bg-primary); }

.bonus-card {
  background: linear-gradient(135deg, #140f03 0%, var(--bg-card) 65%);
  border: 1px solid var(--gold-dark);
  border-radius: 18px;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.07), transparent 70%);
}

.bonus-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.bonus-amount span {
  font-size: 1.4rem;
  color: var(--text-secondary);
}

.bonus-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 420px;
  line-height: 1.7;
}

.bonus-steps {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.bonus-steps li .ck { color: var(--success); font-size: 0.95rem; flex-shrink: 0; }
.bonus-actions { text-align: center; }

.bonus-disclaimer {
  font-size: 0.71rem;
  color: var(--text-muted);
  max-width: 180px;
  margin: 10px auto 0;
  line-height: 1.55;
}

/* ===== BONUS PAGE EXTRAS ===== */
.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.bonus-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.bonus-type-card:hover {
  border-color: rgba(201,162,39,0.28);
  box-shadow: 0 0 24px rgba(201,162,39,0.06);
}

.bonus-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.bonus-type-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.bonus-type-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }

.bonus-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  margin-top: 12px;
}

/* ===== FAQ ===== */
#faq { background: var(--bg-secondary); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 840px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(201,162,39,0.2); }

.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
  gap: 12px;
}

.faq-q:hover { background: var(--bg-card-hover); }

.faq-q span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-arrow {
  color: var(--gold);
  font-size: 0.75rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.open .faq-body { max-height: 280px; }

.faq-body-inner {
  padding: 14px 22px 18px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.72;
  border-top: 1px solid var(--border-subtle);
}

/* ===== FINAL CTA ===== */
#final-cta { background: var(--bg-primary); text-align: center; }

.cta-box {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #0a130a 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,162,39,0.05), transparent);
}

.cta-box h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1rem;
  position: relative;
}

.cta-btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 44px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 44px;
  margin-bottom: 36px;
}

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.footer-about {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.footer-cols h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 9px; }
.footer-cols a {
  font-size: 0.84rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--gold); }

.footer-hr {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0 18px;
}

#legal { font-size: 0.74rem; color: var(--text-muted); line-height: 1.75; }
#legal p { margin-bottom: 8px; }
#legal p:last-child { margin-bottom: 0; }

/* WordPress body padding for sticky bar */
.wp-page-content { padding-top: 0px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(255,107,0,0.35); }
  50%      { box-shadow: 0 4px 32px rgba(255,107,0,0.55), 0 0 0 8px rgba(255,107,0,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid   { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .bonus-types-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .req-grid      { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-cols   { grid-template-columns: repeat(2, 1fr); }
  .bonus-card    { grid-template-columns: 1fr; }
  .bonus-types-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .steps-grid    { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-cols   { grid-template-columns: 1fr; }
  section        { padding: 48px 0; }
  #hero          { padding: 90px 0 52px; }
}

/* ===== STEP ROWS — горизонтальний layout ===== */
.step-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.step-row-reverse {
  display: flex !important;
  flex-direction: row !important;
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.step-row-reverse .step-col-center {
  order: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-row-reverse .step-col-text {
  order: 1;
  flex: 1;
  padding: 0 10px;
}

.step-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-col-text {
  padding: 0 10px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a07f18, #c9a227);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #07090f;
  margin-bottom: 18px;
}

.step-title {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  margin-bottom: 14px !important;
  color: #f0f4ff !important;
  line-height: 1.3 !important;
}

.step-text {
  font-size: 0.95rem !important;
  color: #9aa5be !important;
  line-height: 1.75 !important;
}

@media (max-width: 768px) {
  .step-row,
  .step-row-reverse {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 28px;
    padding: 36px 0;
  }

  .step-row-reverse .step-col-center { order: 0; flex: none; width: 100%; }
  .step-row-reverse .step-col-text   { order: 0; flex: none; width: 100%; }

  .step-col-text {
    padding: 0;
  }

  .step-row-reverse .step-col-text {
    padding: 0;
  }
}