:root {
  --bg: #fff7f3;
  --surface: #ffffff;
  --surface2: #fff0ea;
  --border: #ffd6c7;
  --accent: #ff6b4a;
  --accent-light: #ff9a84;
  --accent-dim: #d94b2a;
  --text: #37251d;
  --muted: #8d7268;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-card: 0 2px 12px rgba(55, 37, 29, 0.07);
  --shadow-hover: 0 6px 24px rgba(55, 37, 29, 0.12);
  --transition: 0.25s ease;
  --wrap-max: 1140px;
  --wrap-px: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-dim);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 999;
  font-weight: 600;
}

.skip-nav:focus {
  top: 0.5rem;
}

.content-wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: var(--wrap-px);
  padding-right: var(--wrap-px);
}

/* ===== HEADER ===== */
.masthead {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 400;
  text-decoration: none;
}

.site-brand strong {
  font-weight: 700;
}

.site-brand:hover {
  color: var(--accent);
}

.brand-icon {
  flex-shrink: 0;
}

.nav-strip .nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.burger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.burger-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.burger-toggle span:nth-child(1) { top: 2px; }
.burger-toggle span:nth-child(2) { top: 10px; }
.burger-toggle span:nth-child(3) { top: 18px; }

.burger-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.burger-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ===== BREADCRUMBS ===== */
.crumb-trail {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.crumb-trail ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.crumb-trail li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: var(--border);
}

.crumb-trail a {
  color: var(--muted);
}

.crumb-trail a:hover {
  color: var(--accent);
}

/* ===== HERO ===== */
.hero-block {
  background: linear-gradient(170deg, var(--bg), var(--surface2));
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.hero-block h1 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.hero-cta {
  display: inline-block;
}

/* ===== CTA BUTTON ===== */
.go-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

.go-btn:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 74, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.go-btn:active {
  transform: translateY(0);
}

/* ===== SHOWCASE ===== */
.showcase-block {
  background: var(--surface);
  padding: 3.5rem 0;
}

.showcase-block h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  text-align: center;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-entry {
  display: grid;
  grid-template-columns: 44px 130px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.showcase-entry:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-light);
}

.entry-rank {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  line-height: 1;
}

.entry-logo {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-logo img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.entry-offer {
  min-width: 0;
}

.offer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.offer-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-dim);
  margin-bottom: 0.35rem;
}

.offer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== EVAL / CRITERIA ===== */
.eval-section {
  background: var(--bg);
  padding: 3.5rem 0;
}

.eval-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eval-section > .content-wrap > p {
  max-width: 800px;
  margin-bottom: 1.75rem;
  color: var(--muted);
}

.criteria-wrap {
  overflow-x: auto;
  margin-bottom: 2.25rem;
}

.criteria-table {
  min-width: 580px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.criteria-table th {
  background: var(--surface2);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.criteria-table td {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.criteria-table tr:last-child td {
  border-bottom: none;
}

.importance-high {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}

.importance-med {
  background: var(--accent-light);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}

.importance-mod {
  background: var(--border);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1rem;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: box-shadow var(--transition);
}

.trust-item:hover {
  box-shadow: var(--shadow-card);
}

.trust-item svg {
  margin: 0 auto 0.65rem;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ===== REVIEWS ===== */
.reviews-block {
  background: var(--surface);
  padding: 3.5rem 0;
}

.reviews-block > .content-wrap > h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.reviews-block > .content-wrap > p {
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--muted);
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-card);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.pill-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pill-popular { background: #fff0ea; color: var(--accent-dim); }
.pill-crypto { background: #e6f9f0; color: #0d7a4d; }
.pill-fast { background: #e8fce8; color: #16723a; }
.pill-mobile { background: #e8f0fe; color: #2b5ea7; }
.pill-live { background: #f3ecfe; color: #6b3fa0; }
.pill-bonus { background: #fef5e7; color: #a06b17; }
.pill-vip { background: #fce8e6; color: #b32d15; }
.pill-new { background: #fff0ea; color: var(--accent); }
.pill-special { background: #f0ebe6; color: #5c3d2e; }

.review-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.review-body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.review-logo {
  margin: 0;
  flex-shrink: 0;
  width: 140px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.review-text {
  flex: 1;
  min-width: 0;
}

.review-text p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.merit-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.merit-table th {
  background: var(--surface2);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  width: 50%;
}

.merit-table td {
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  background: var(--surface);
}

.merit-table tr:last-child td {
  border-bottom: none;
}

.merit-table td:first-child {
  color: #0d7a4d;
}

.merit-table td:last-child {
  color: var(--accent-dim);
}

/* ===== CONTENT SECTIONS ===== */
.choose-section {
  background: var(--bg);
  padding: 3.5rem 0;
}

.bonus-section {
  background: var(--surface);
  padding: 3.5rem 0;
}

.payment-section {
  background: var(--bg);
  padding: 3.5rem 0;
}

.safety-section {
  background: var(--surface);
  padding: 3.5rem 0;
}

.register-section {
  background: var(--bg);
  padding: 3.5rem 0;
}

.mobile-section {
  background: var(--surface);
  padding: 3.5rem 0;
}

.compare-section {
  background: var(--bg);
  padding: 3.5rem 0;
}

.faq-section {
  background: var(--surface);
  padding: 3.5rem 0;
}

.choose-section h2,
.bonus-section h2,
.payment-section h2,
.safety-section h2,
.register-section h2,
.mobile-section h2,
.compare-section h2,
.faq-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.choose-section h3,
.bonus-section h3,
.payment-section h3,
.safety-section h3,
.register-section h3,
.mobile-section h3,
.compare-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.choose-section p,
.bonus-section p,
.payment-section p,
.safety-section p,
.register-section p,
.mobile-section p,
.compare-section p {
  max-width: 820px;
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Bonus type cards */
.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bonus-type-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.bonus-type-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.bonus-type-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Condition table */
.condition-wrap {
  overflow-x: auto;
}

.condition-table {
  min-width: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.condition-table th {
  background: var(--surface2);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.condition-table td {
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.condition-table tr:last-child td {
  border-bottom: none;
}

/* Payment methods */
.method-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.method-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.method-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mtype-crypto .method-dot { background: #f7931a; }
.mtype-card .method-dot { background: #1a56db; }
.mtype-bank .method-dot { background: #16a34a; }

.pay-table-wrap {
  overflow-x: auto;
}

.pay-compare-table {
  min-width: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pay-compare-table th {
  background: var(--surface2);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pay-compare-table td {
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.pay-compare-table tr:last-child td {
  border-bottom: none;
}

/* Check/Warn lists */
.check-list,
.warn-list {
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.check-list li,
.warn-list li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 1rem;
}

.warn-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--accent-dim);
  font-weight: 700;
  font-size: 1rem;
}

/* Step flow */
.step-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: box-shadow var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-card);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.step-card strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.step-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

/* Verdict */
.verdict-box {
  background: var(--surface2);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem;
  margin-top: 1.75rem;
}

.verdict-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.verdict-box p {
  margin-bottom: 0;
}

/* ===== FAQ ===== */
.faq-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.qa-panel {
  max-width: 780px;
  margin: 0 auto;
}

.qa-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow var(--transition);
}

.qa-item:hover {
  box-shadow: var(--shadow-card);
}

.qa-item[open] {
  border-color: var(--accent-light);
}

.qa-question {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2.75rem 1rem 1.15rem;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--text);
}

.qa-question::-webkit-details-marker {
  display: none;
}

.qa-question::after {
  content: '+';
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform var(--transition);
}

.qa-item[open] .qa-question::after {
  content: '−';
}

.qa-answer {
  padding: 0 1.15rem 1.15rem;
}

.qa-answer p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.footer-brand strong {
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-heading {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-col ul li {
  margin-bottom: 0.35rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--accent-light);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  margin-bottom: 1rem;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-copy p {
  font-size: 0.78rem;
}

.footer-copy a {
  color: var(--accent-light);
}

/* ===== SUBPAGES ===== */
.page-hero {
  background: linear-gradient(170deg, var(--bg), var(--surface2));
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.page-content {
  background: var(--surface);
  padding: 3rem 0;
}

.prose-block {
  max-width: 780px;
  margin: 0 auto;
}

.prose-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.prose-block h2:first-child {
  margin-top: 0;
}

.prose-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.prose-block p {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.prose-block ul,
.prose-block ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose-block ul {
  list-style: disc;
}

.prose-block ol {
  list-style: decimal;
}

.prose-block li {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.prose-block .resp-tips li {
  list-style: none;
  position: relative;
  padding-left: 0.5rem;
}

/* Author page */
.author-profile {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.author-avatar {
  flex-shrink: 0;
  margin: 0;
}

.author-avatar img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid var(--border);
}

.author-bio {
  flex: 1;
  min-width: 0;
}

.author-bio h2 {
  margin-top: 0;
  font-size: 1.75rem;
}

.author-role {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.author-bio h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.author-bio ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.author-bio li {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.author-bio p {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .showcase-entry {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
    position: relative;
  }

  .entry-rank {
    position: absolute;
    top: 0.85rem;
    left: 1rem;
    font-size: 1.1rem;
    background: var(--surface2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .entry-logo {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .entry-offer {
    text-align: center;
  }

  .showcase-entry .go-btn {
    width: 100%;
    justify-content: center;
  }

  .review-body {
    flex-direction: column;
  }

  .review-logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .author-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-bio ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .burger-toggle {
    display: block;
  }

  .nav-strip .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem var(--wrap-px);
    gap: 0;
    box-shadow: 0 8px 20px rgba(55, 37, 29, 0.08);
    z-index: 99;
  }

  .nav-strip .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
  }

  .hero-block {
    padding: 2rem 0 1.75rem;
  }

  .hero-block h1 {
    font-size: 1.65rem;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .showcase-block,
  .eval-section,
  .reviews-block,
  .choose-section,
  .bonus-section,
  .payment-section,
  .safety-section,
  .register-section,
  .mobile-section,
  .compare-section,
  .faq-section {
    padding: 2.5rem 0;
  }

  .showcase-block h2,
  .eval-section h2,
  .reviews-block > .content-wrap > h2,
  .choose-section h2,
  .bonus-section h2,
  .payment-section h2,
  .safety-section h2,
  .register-section h2,
  .mobile-section h2,
  .compare-section h2,
  .faq-section h2 {
    font-size: 1.4rem;
  }

  .review-card h3 {
    font-size: 1.15rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .step-flow {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .trust-cards {
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-block h1 {
    font-size: 1.45rem;
  }

  .bonus-types-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-cards {
    grid-template-columns: 1fr 1fr;
  }

  .method-visual {
    gap: 0.45rem;
  }

  .method-pill {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-block h1 {
    font-size: 2.75rem;
  }

  .hero-lead {
    font-size: 1.1rem;
  }
}