:root {
  --clr-bg: #0e1230;
  --clr-nav: #1a1f3c;
  --clr-nav-dark: #12162e;
  --clr-gold: #fbc02d;
  --clr-gold-hover: #f9a825;
  --clr-purple: #8e24aa;
  --clr-purple-hover: #6a1b9a;
  --clr-text: #e8eaf6;
  --clr-text-muted: #9fa8da;
  --clr-border: #2a3060;
  --clr-card: #161b3a;
  --clr-card-hover: #1e2448;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 18px rgba(251,192,45,0.35);
  --shadow-purple: 0 0 18px rgba(142,36,170,0.35);
  --transition: 0.25s ease;
  --font-main: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-hover); }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }

p { margin-bottom: 0.9rem; color: var(--clr-text); line-height: 1.7; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; color: var(--clr-text); }

.xk9f2-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, #fbc02d 0%, #f57f17 100%);
  color: #1a1200;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { background: linear-gradient(135deg, #fdd835 0%, #fb8c00 100%); box-shadow: 0 0 28px rgba(251,192,45,0.55); color: #1a1200; }

.btn--purple {
  background: linear-gradient(135deg, #8e24aa 0%, #5e1a7a 100%);
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn--purple:hover { background: linear-gradient(135deg, #ab47bc 0%, #7b1fa2 100%); box-shadow: 0 0 28px rgba(142,36,170,0.55); color: #fff; }

.btn--outline-gold {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn--outline-gold:hover { background: var(--clr-gold); color: #1a1200; }

.btn--lg { padding: 15px 34px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--sm { padding: 8px 16px; font-size: 0.78rem; }

.btn-pulse {
  animation: btnPulse 2.2s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(251,192,45,0.4); }
  50% { box-shadow: 0 0 28px rgba(251,192,45,0.8), 0 0 50px rgba(251,192,45,0.3); }
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-purple));
  border-radius: 3px;
}
.section-title p { color: var(--clr-text-muted); margin-top: 0.7rem; }

.xk9f2-section { padding: 70px 0; }
.xk9f2-section--sm { padding: 45px 0; }

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.xr7a1-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-nav);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  color: var(--clr-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.header-nav a svg { flex-shrink: 0; }
.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.header-nav a.active { color: var(--clr-gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  order: 10;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--clr-nav-dark);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 20px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  flex-direction: column;
  gap: 6px;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: var(--clr-text);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.07); color: var(--clr-gold); }
.mobile-menu-btns { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid var(--clr-border); margin-top: 6px; }
.mobile-menu-btns .btn { flex: 1; justify-content: center; min-width: 120px; }

.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/gates-olympus-hero.webp');
  background-size: cover;
  background-position: center 20%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14,18,48,0.92) 0%, rgba(14,18,48,0.7) 50%, rgba(14,18,48,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 60px 20px;
}
.hero-content .xk9f2-wrap { padding: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(251,192,45,0.15);
  border: 1px solid rgba(251,192,45,0.4);
  color: var(--clr-gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.hero-h1 span { color: var(--clr-gold); }
.hero-intro {
  color: #c5cae9;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stat-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

.spoiler-wrap { margin-top: 24px; }
.spoiler-toggle {
  background: none;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-family: var(--font-main);
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: border-color var(--transition), color var(--transition);
}
.spoiler-toggle:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.spoiler-toggle svg { transition: transform 0.25s; }
.spoiler-toggle.open svg { transform: rotate(180deg); }
.spoiler-body {
  display: none;
  margin-top: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  animation: fadeInSpoiler 0.3s ease;
}
.spoiler-body.open { display: block; }
@keyframes fadeInSpoiler { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.game-demo-block {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}
.game-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.game-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.game-demo-footer {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--clr-nav);
  border-top: 1px solid var(--clr-border);
}
.game-demo-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-muted);
  font-size: 0.82rem;
}
.game-demo-info img { height: 28px; border-radius: 4px; }
.game-demo-actions { display: flex; gap: 10px; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 auto; }
.info-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: var(--clr-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.info-table th, .info-table td {
  padding: 13px 20px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
}
.info-table th {
  background: var(--clr-nav);
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 45%;
}
.info-table td { color: var(--clr-text); font-weight: 500; }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: rgba(255,255,255,0.03); }
.info-table .badge-val {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(251,192,45,0.12);
  color: var(--clr-gold);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}
.info-table .badge-rtp {
  background: rgba(142,36,170,0.18);
  color: #ce93d8;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.feature-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(251,192,45,0.15);
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(251,192,45,0.15), rgba(142,36,170,0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251,192,45,0.25);
}
.feature-icon svg { color: var(--clr-gold); }
.feature-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: #fff; }
.feature-card p { font-size: 0.82rem; color: var(--clr-text-muted); margin: 0; line-height: 1.55; }

.content-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 30px;
}
.author-avatar {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-info-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.author-info-desc { font-size: 0.78rem; color: var(--clr-text-muted); margin-top: 2px; }
.author-info-link { font-size: 0.78rem; color: var(--clr-gold); margin-top: 3px; display: inline-block; }

.content-area { color: var(--clr-text); line-height: 1.8; }
.content-area h2 { font-size: 1.5rem; margin: 1.8rem 0 1rem; color: #fff; padding-bottom: 8px; border-bottom: 1px solid var(--clr-border); }
.content-area h3 { font-size: 1.2rem; margin: 1.4rem 0 0.7rem; color: var(--clr-gold); }
.content-area h4 { font-size: 1.05rem; margin: 1.2rem 0 0.6rem; color: #e8eaf6; }
.content-area p { margin-bottom: 1rem; }
.content-area ul, .content-area ol { margin: 0.8rem 0 1rem 1.5rem; }
.content-area li { margin-bottom: 0.5rem; color: var(--clr-text); }
.content-area strong { color: #fff; font-weight: 700; }
.content-area em { color: var(--clr-gold); font-style: normal; font-weight: 600; }
.content-area a { color: var(--clr-gold); text-decoration: underline; }
.content-area a:hover { color: var(--clr-gold-hover); }
.content-area blockquote {
  border-left: 3px solid var(--clr-gold);
  padding: 12px 20px;
  margin: 1.2rem 0;
  background: rgba(251,192,45,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.9rem;
  background: var(--clr-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.content-area table th, .content-area table td { padding: 10px 16px; border-bottom: 1px solid var(--clr-border); text-align: left; }
.content-area table th { background: var(--clr-nav); color: var(--clr-text-muted); font-size: 0.82rem; text-transform: uppercase; }
.content-area table tr:last-child td { border-bottom: none; }
.content-area img { max-width: 100%; border-radius: var(--radius-sm); margin: 1rem 0; }

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 50px;
}
.review-card {
  flex: 1 1 calc(33.333% - 18px);
  min-width: 260px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover { border-color: rgba(251,192,45,0.4); transform: translateY(-3px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--clr-purple), #3949ab);
}
.review-avatar.av2 { background: linear-gradient(135deg, #e65100, #c62828); }
.review-avatar.av3 { background: linear-gradient(135deg, #1b5e20, #00695c); }
.review-avatar.av4 { background: linear-gradient(135deg, #4527a0, var(--clr-purple)); }
.review-avatar.av5 { background: linear-gradient(135deg, #bf360c, #ad1457); }
.review-avatar.av6 { background: linear-gradient(135deg, #1a237e, #006064); }
.review-name { font-weight: 700; font-size: 0.92rem; color: #fff; }
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.review-stars svg { color: var(--clr-gold); }
.review-text { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.65; }

.review-form-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 620px;
  margin: 0 auto;
}
.review-form-wrap h3 { margin-bottom: 22px; text-align: center; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--clr-text-muted); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #4a5080; }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(251,192,45,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  display: none;
  background: rgba(67, 160, 71, 0.15);
  border: 1px solid rgba(67, 160, 71, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  color: #a5d6a7;
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.92rem;
  animation: fadeInSpoiler 0.3s ease;
}

.site-footer {
  background: var(--clr-nav);
  border-top: 1px solid var(--clr-border);
  padding: 50px 0 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-col { flex: 1 1 200px; }
.footer-col--main { flex: 0 0 260px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; width: fit-content;}
.footer-logo img { height: 52px; width: auto;}
.footer-logo-text { font-size: 1rem; font-weight: 800; color: var(--clr-gold); }
.footer-desc { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: rgba(251,192,45,0.15); border-color: var(--clr-gold); color: var(--clr-gold); }

.footer-col-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--clr-text-muted); margin-bottom: 14px; }
.footer-nav-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 0.85rem; color: #7986cb; transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--clr-gold); }

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-badge svg { flex-shrink: 0; }

.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.03em;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: #4a5080; line-height: 1.6; }
.footer-copy a { color: #4a5080; text-decoration: underline; }
.footer-provider { display: flex; align-items: center; gap: 10px; }
.footer-provider img { height: 28px; opacity: 0.7; filter: grayscale(0.3); transition: opacity var(--transition); }
.footer-provider img:hover { opacity: 1; }
.footer-legal {
  font-size: 0.73rem;
  color: #363b5a;
  line-height: 1.55;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(42,48,96,0.5);
}

.footer-email-link { color: var(--clr-gold); font-weight: 600; font-size: 0.85rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  padding: 12px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb span.sep { color: #363b5a; }
.breadcrumb span.cur { color: var(--clr-text); }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.info-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 860px;
  margin: 0 auto;
}
.info-content h1 { margin-bottom: 1.5rem; }
.info-content h2 { font-size: 1.3rem; margin: 1.8rem 0 0.8rem; color: #fff; }
.info-content h3 { font-size: 1.1rem; margin: 1.3rem 0 0.6rem; color: var(--clr-gold); }
.info-content p { color: var(--clr-text); margin-bottom: 0.9rem; }
.info-content ul, .info-content ol { margin: 0.8rem 0 1rem 1.5rem; }
.info-content li { color: var(--clr-text); margin-bottom: 0.4rem; }
.info-content a { color: var(--clr-gold); text-decoration: underline; }

.wp-block-paragraph { display: block; }
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.has-text-align-center { text-align: center; }
.entry-content { width: 100%; }
.elementor-element { position: relative; }
.elementor-widget-text-editor { word-break: break-word; }
.site-main { min-height: 100vh; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; word-wrap: normal; }
.x4k9-hidden-layer { position: fixed; pointer-events: none; opacity: 0; z-index: -1; }
.qr82m-block { contain: layout; }
.n7x3p-spacer { height: 0; overflow: hidden; }

@media (max-width: 1024px) {
  .feature-card { flex: 1 1 calc(50% - 18px); }
  .content-block { padding: 30px 26px; }
}
@media (max-width: 900px) {
  .header-nav a { padding: 4px 7px; }
  .header-logo img {height: 48px;}
  .header-inner {gap: 12px;}
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .xk9f2-section { padding: 50px 0; }
  .hero-section { min-height: 420px; }
  .hero-content { padding: 44px 20px; }
  .hero-stats { gap: 18px; }
  .feature-card { flex: 1 1 calc(50% - 10px); }
  .review-card { flex: 1 1 100%; }
  .review-form-wrap { padding: 24px 20px; }
  .footer-top { gap: 24px; }
  .footer-col--main { flex: 1 1 100%; }
  .content-block { padding: 24px 18px; }
  .info-content { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .feature-card { flex: 1 1 100%; }
  .hero-content { padding: 28px 0; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 420px) {
  .header-actions .btn--outline-gold { display: none; }
}