/* ============================================================
   MSTOTO — Professional Landing Page Styles
   Layer 1: SEO content (Googlebot + User)
   Layer 2: Black overlay via JS
   ============================================================ */

:root {
  --color-bg: #faf9f7;
  --color-bg-alt: #ffffff;
  --color-surface: #ffffff;
  --color-text: #1a1a2e;
  --color-text-muted: #5c5c6f;
  --color-accent: #c9a227;
  --color-accent-dark: #9a7b1a;
  --color-accent-hover: #e0b830;
  --color-border: #e8e6e1;
  --color-hero-from: #0f0f1a;
  --color-hero-to: #1a1a2e;
  --color-gold: #ffd700;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --container-max: 1140px;
  --section-pad: 5rem;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --content-inset: 1rem;
}

/* Black mode — overlay aktif; jangan ubah warna teks konten SEO */
body.user-mode {
  background-color: #0a0a0a;
}

/* Layer 1: konten putih selalu kontras tinggi */
.white-content {
  color: #1a1a2e;
}

.white-content .content-section,
.white-content .section-alt.content-section,
.white-content .toc,
.white-content .faq-details,
.white-content .criteria-card,
.white-content .strategy-card,
.white-content .blog-card,
.white-content .review-card,
.white-content .pros-box,
.white-content .cons-box,
.white-content .stats-strip {
  background: #ffffff;
  color: #1a1a2e;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content .content-section h2,
.white-content .criteria-card strong,
.white-content .strategy-card h3,
.white-content .faq-details summary {
  color: #1a1a2e;
}

.white-content p,
.white-content .content-prose p,
.white-content .section p,
.white-content .criteria-card p,
.white-content .strategy-card p,
.white-content .feature-list li,
.white-content .faq-details p,
.white-content .blog-card p,
.white-content .review-card__body p {
  color: #4a4a5a;
}

.white-content .content-section > p:first-of-type,
.white-content .content-prose p:first-child {
  color: #2a2a3e;
}

.white-content .section-tag,
.white-content .toc-label,
.white-content .stat-label,
.white-content .highlight-box__label {
  color: #6b6b7b;
}

.white-content .stat-value,
.white-content .highlight-box__value {
  color: #9a7b1a;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

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

.table-wrap,
.blog-list,
.content-section,
.hero-landing__grid {
  max-width: 100%;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
  padding: 0.85rem 0;
  transition: background-color 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #ffffff;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  color: #0f0f1a;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 8px;
}

.brand-text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.header-cta {
  padding: 0.6rem 1.35rem;
  margin-left: 0.5rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  color: #0f0f1a;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  color: #0f0f1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #f0d060;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 208, 96, 0.45);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.theme-toggle__icon {
  display: none;
  line-height: 0;
}

html[data-theme="light"] .theme-toggle__icon--moon,
html[data-theme="dark"] .theme-toggle__icon--sun {
  display: block;
}

/* --- Dark theme (content) --- */
html[data-theme="dark"] {
  --color-bg: #0c0c10;
  --color-bg-alt: #14141c;
  --color-surface: #16161f;
  --color-text: #f0f0f5;
  --color-text-muted: #a0a0b0;
  --color-border: #2a2a36;
  color-scheme: dark;
}

html[data-theme="dark"] body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

html[data-theme="dark"] .white-content {
  color: var(--color-text);
}

html[data-theme="dark"] .white-content .content-section,
html[data-theme="dark"] .white-content .section-alt.content-section,
html[data-theme="dark"] .white-content .toc,
html[data-theme="dark"] .white-content .faq-details,
html[data-theme="dark"] .white-content .criteria-card,
html[data-theme="dark"] .white-content .strategy-card,
html[data-theme="dark"] .white-content .blog-card,
html[data-theme="dark"] .white-content .review-card,
html[data-theme="dark"] .white-content .pros-box,
html[data-theme="dark"] .white-content .cons-box,
html[data-theme="dark"] .white-content .stats-strip {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

html[data-theme="dark"] .white-content h1,
html[data-theme="dark"] .white-content h2,
html[data-theme="dark"] .white-content h3,
html[data-theme="dark"] .white-content .content-section h2,
html[data-theme="dark"] .white-content .criteria-card strong,
html[data-theme="dark"] .white-content .strategy-card h3,
html[data-theme="dark"] .white-content .faq-details summary {
  color: #f5f5fa;
}

html[data-theme="dark"] .white-content p,
html[data-theme="dark"] .white-content .content-prose p,
html[data-theme="dark"] .white-content .section p,
html[data-theme="dark"] .white-content .criteria-card p,
html[data-theme="dark"] .white-content .strategy-card p,
html[data-theme="dark"] .white-content .feature-list li,
html[data-theme="dark"] .white-content .faq-details p,
html[data-theme="dark"] .white-content .blog-card p,
html[data-theme="dark"] .white-content .review-card__body p {
  color: var(--color-text-muted);
}

html[data-theme="dark"] .white-content .content-section > p:first-of-type,
html[data-theme="dark"] .white-content .content-prose p:first-child {
  color: #d0d0dc;
}

html[data-theme="dark"] .white-content .section-tag,
html[data-theme="dark"] .white-content .toc-label,
html[data-theme="dark"] .white-content .stat-label,
html[data-theme="dark"] .white-content .highlight-box__label {
  color: #8a8a9a;
}

html[data-theme="dark"] .white-content .stat-value,
html[data-theme="dark"] .white-content .highlight-box__value {
  color: var(--color-gold);
}

html[data-theme="dark"] .site-footer {
  background: #08080c;
  border-color: #1f1f28;
}

html[data-theme="dark"] .footer-copy {
  color: #777;
}

html[data-theme="dark"] .compare-table th,
html[data-theme="dark"] .compare-table td {
  border-color: var(--color-border);
  color: var(--color-text-muted);
}

html[data-theme="dark"] .compare-table th {
  background: #1a1a24;
  color: var(--color-gold);
}

html[data-theme="dark"] .highlight-box,
html[data-theme="dark"] .provider-pill,
html[data-theme="dark"] .disclaimer-box {
  background: #1a1a24;
  border-color: var(--color-border);
}

html[data-theme="dark"] .stats-strip {
  background: var(--color-bg-alt);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.15rem;
  position: relative;
}

.main-nav a:hover {
  color: var(--color-gold);
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* --- Hero Landing --- */
.hero-landing {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-landing__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-hero-from) 0%, var(--color-hero-to) 50%, #252540 100%);
  z-index: 0;
}

.hero-landing__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 40%);
}

.hero-landing__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-landing__grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas:
    "intro image"
    "cta image";
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

/* ===== Sakura falling (match amp.html) ===== */
.sakura {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.sakura__petal {
  position: absolute;
  top: -40px;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #fff5f8 0%, #ffb7c5 45%, #ff8fab 100%);
  border-radius: 150% 0 150% 0;
  opacity: 0.85;
  box-shadow: 0 0 6px rgba(255, 182, 193, 0.45);
  animation-name: sakura-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.sakura__petal::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 150% 0 150% 0;
  background: radial-gradient(circle at 70% 70%, transparent 40%, rgba(255, 255, 255, 0.35) 100%);
  transform: rotate(45deg);
}

.sakura__petal:nth-child(1)  { left: 6%;  width: 12px; height: 12px; animation-duration: 9s;  animation-delay: 0s; }
.sakura__petal:nth-child(2)  { left: 14%; width: 10px; height: 10px; animation-duration: 11s; animation-delay: -2s; }
.sakura__petal:nth-child(3)  { left: 22%; width: 15px; height: 15px; animation-duration: 8s;  animation-delay: -4s; }
.sakura__petal:nth-child(4)  { left: 30%; width: 11px; height: 11px; animation-duration: 12s; animation-delay: -1s; }
.sakura__petal:nth-child(5)  { left: 38%; width: 13px; height: 13px; animation-duration: 10s; animation-delay: -6s; }
.sakura__petal:nth-child(6)  { left: 46%; width: 9px;  height: 9px;  animation-duration: 13s; animation-delay: -3s; }
.sakura__petal:nth-child(7)  { left: 54%; width: 14px; height: 14px; animation-duration: 9.5s; animation-delay: -7s; }
.sakura__petal:nth-child(8)  { left: 62%; width: 11px; height: 11px; animation-duration: 11.5s; animation-delay: -0.5s; }
.sakura__petal:nth-child(9)  { left: 70%; width: 16px; height: 16px; animation-duration: 8.5s; animation-delay: -5s; }
.sakura__petal:nth-child(10) { left: 78%; width: 10px; height: 10px; animation-duration: 12.5s; animation-delay: -8s; }
.sakura__petal:nth-child(11) { left: 86%; width: 13px; height: 13px; animation-duration: 10.5s; animation-delay: -2.5s; }
.sakura__petal:nth-child(12) { left: 92%; width: 12px; height: 12px; animation-duration: 9s;  animation-delay: -4.5s; }
.sakura__petal:nth-child(13) { left: 10%; width: 8px;  height: 8px;  animation-duration: 14s; animation-delay: -9s; opacity: 0.65; }
.sakura__petal:nth-child(14) { left: 48%; width: 15px; height: 15px; animation-duration: 7.5s; animation-delay: -1.5s; }
.sakura__petal:nth-child(15) { left: 68%; width: 9px;  height: 9px;  animation-duration: 13.5s; animation-delay: -6.5s; }
.sakura__petal:nth-child(16) { left: 84%; width: 11px; height: 11px; animation-duration: 8s;  animation-delay: -3.5s; }

@keyframes sakura-fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }
  8% { opacity: 0.9; }
  25% {
    transform: translate3d(18px, 25vh, 0) rotate(90deg);
  }
  50% {
    transform: translate3d(-22px, 55vh, 0) rotate(200deg);
    opacity: 0.85;
  }
  75% {
    transform: translate3d(14px, 80vh, 0) rotate(300deg);
  }
  100% {
    transform: translate3d(-10px, 110vh, 0) rotate(400deg);
    opacity: 0;
  }
}

.hero-landing__intro {
  grid-area: intro;
  text-align: left;
}

.hero-landing__cta {
  grid-area: cta;
  text-align: left;
}

.hero-product {
  grid-area: image;
  margin: 0;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  align-self: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.25),
    0 16px 48px rgba(0, 0, 0, 0.45);
  background: #0a0a12;
  aspect-ratio: 1 / 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-landing h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-landing__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-landing__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-product__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
  margin-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.trust-icon {
  font-size: 1rem;
}

/* --- Stats Strip --- */
.stats-strip {
  background: linear-gradient(180deg, var(--color-surface) 0%, #faf8f4 100%);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

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

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
  transition: background 0.2s;
}

.stat-card:hover {
  background: rgba(201, 162, 39, 0.04);
}

.stat-card:last-child {
  border-right: none;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Content Wrap --- */
.content-wrap {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  background: transparent;
}

.content-wrap > .section {
  padding-top: 0;
  padding-bottom: 0;
}

.content-section {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 3.25rem 3rem 3.25rem calc(3.75rem + var(--content-inset));
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.content-section:hover {
  box-shadow: var(--shadow-md);
}

.content-section > p:first-of-type {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 1.75rem;
  max-width: none;
}

.content-section::before {
  display: none;
}

.section-alt.content-section {
  background: #ffffff;
  margin-left: 0;
  margin-right: 0;
  padding: 3.25rem 3rem 3.25rem calc(3.75rem + var(--content-inset));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-left: 5px solid var(--color-accent);
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 1.75rem;
  padding-bottom: 1.15rem;
  line-height: 1.35;
  border-bottom: 2px solid rgba(201, 162, 39, 0.15);
}

.content-section h3 {
  font-size: 1.1rem;
  margin: 2rem 0 1rem;
  line-height: 1.4;
  color: var(--color-text);
}

.content-section p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.content-prose p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.85;
  max-width: none;
}

.content-prose p:first-child {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 1.75rem;
}

/* Highlight stats box */
.highlight-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.25rem;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(255,215,0,0.04));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
}

.highlight-box__item {
  text-align: center;
  padding: 0.75rem 0.5rem;
  position: relative;
}

.highlight-box__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 162, 39, 0.25);
}

.highlight-box__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  line-height: 1.2;
}

.highlight-box__label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Provider pills */
.provider-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
}

.provider-pill {
  padding: 0.5rem 1rem;
  background: var(--color-hero-from);
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  line-height: 1.4;
}

/* Criteria grid */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0 2.25rem;
}

.criteria-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.criteria-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.3);
}

.criteria-card__num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-accent);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.criteria-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.criteria-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Pros / Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0 1.75rem;
}

.pros-box,
.cons-box {
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.pros-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02));
  border-color: rgba(34, 197, 94, 0.2);
}

.cons-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
  border-color: rgba(239, 68, 68, 0.15);
}

.pros-box h3,
.cons-box h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.review-card__body h3 {
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.review-card__body h3:first-of-type {
  margin-top: 0.5rem;
}

.feature-list--pros li::before {
  content: '✓';
  color: #16a34a;
}

.feature-list--cons li::before {
  content: '−';
  color: #dc2626;
}

/* Steps timeline */
.steps-timeline {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent), rgba(201,162,39,0.2));
}

.steps-timeline li {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  padding: 1.1rem 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  color: #0f0f1a;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-top: 0.1rem;
}

.steps-timeline li strong {
  color: var(--color-text);
}

/* Strategy grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 1.75rem;
}

.strategy-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.strategy-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.25);
}

.strategy-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.strategy-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.strategy-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Disclaimer */
.disclaimer-box {
  margin-top: 2rem;
  padding: 1.15rem 1.35rem;
  background: rgba(239, 68, 68, 0.06);
  border-left: 4px solid #dc2626;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.disclaimer-box strong {
  color: #b91c1c;
}

/* FAQ wrapper */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Image placeholder enhanced */
.img-placeholder--logo {
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 40%, #2a2040 100%);
  position: relative;
  overflow: hidden;
}

.img-placeholder--logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.15) 0%, transparent 50%);
}

.img-placeholder__logo {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  opacity: 0.9;
}

.img-placeholder--logo span {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  background: rgba(201, 162, 39, 0.1);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.content-section > .section-tag + h2 {
  margin-top: 0.25rem;
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 50%, #1a1a2e 100%);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.content-figure {
  margin: 2rem 0 0;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.product-caption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* --- Review Card --- */
.review-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  margin: 2rem 0 0.5rem;
  box-shadow: var(--shadow-md);
}

.review-card__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(255,215,0,0.05));
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.review-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  line-height: 1;
}

.review-card__stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin: 0.25rem 0;
}

.review-card__count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-card__body p {
  max-width: none;
}

/* --- White Content Layer --- */
.white-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
  margin: 2rem 0 1.5rem;
}

.white-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 1rem;
}

.white-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.white-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  max-width: 72ch;
}

.white-content figure {
  margin: 1.5rem 0;
}

/* --- Table of Contents --- */
.toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}

.toc-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.3), transparent);
}

.toc ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.5rem;
  counter-reset: toc-counter;
}

.toc li {
  margin-bottom: 0;
}

.toc a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  background: var(--color-bg);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.toc a::before {
  content: counter(toc-counter, decimal-leading-zero);
  counter-increment: toc-counter;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-accent);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.toc a:hover {
  color: var(--color-accent-dark);
  border-color: rgba(201, 162, 39, 0.3);
  background: rgba(201, 162, 39, 0.05);
  transform: translateX(4px);
}

/* --- Comparison Table --- */
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0 1.75rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--color-border);
  padding: 1rem 1.15rem;
  text-align: left;
}

.compare-table thead {
  background: var(--color-hero-from);
}

.compare-table th {
  font-weight: 600;
  color: #fff;
}

.compare-table th:nth-child(2) {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
}

.compare-table td:first-child {
  font-weight: 600;
  background: var(--color-bg);
}

.compare-table td:nth-child(2) {
  background: rgba(201, 162, 39, 0.06);
  font-weight: 500;
}

.compare-table tbody tr:hover td {
  background: rgba(201, 162, 39, 0.04);
}

.compare-table tbody tr:hover td:nth-child(2) {
  background: rgba(201, 162, 39, 0.1);
}

/* --- CTA Primary (crawlable) --- */
.cta-primary {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.95rem 2.35rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  color: #0f0f1a;
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
  line-height: 1.4;
}

.cta-primary:hover {
  color: #0f0f1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.4);
}

/* --- FAQ Details --- */
.faq-details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0 1.5rem;
  margin-bottom: 0;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-details:hover {
  border-color: rgba(201, 162, 39, 0.25);
}

.faq-details[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(201, 162, 39, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
}

.faq-details summary {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.35rem 0.25rem;
  cursor: pointer;
  color: var(--color-text);
  list-style: none;
  line-height: 1.55;
}

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

.faq-details summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  min-width: 1.6rem;
  background: rgba(201, 162, 39, 0.12);
  color: var(--color-accent-dark);
  font-weight: 700;
  border-radius: 6px;
  margin-right: 0;
  margin-top: 0.1rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-details[open] summary::before {
  content: '−';
}

.faq-details p {
  padding: 0 0.25rem 1.5rem 2.85rem;
  margin: 0;
  max-width: none;
  color: var(--color-text-muted);
  line-height: 1.85;
}

/* --- Simple Footer --- */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid #1f1f1f;
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-simple {
  text-align: center;
  padding: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

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

.footer-simple > p:first-of-type,
.footer-simple .footer-copy {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
  padding-top: 0;
  border-top: none;
}

.footer-simple nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.footer-simple nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-simple nav a:hover {
  color: var(--color-gold);
}

.footer-updated {
  color: rgba(255, 255, 255, 0.4);
}

/* --- Hero --- */
.hero {
  padding: var(--section-pad) 0 2rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-media {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.85rem;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  color: #0f0f1a;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  color: #0f0f1a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* --- Sections --- */
.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--color-bg);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s;
}

.content-wrap .section h2 {
  margin-bottom: 1.5rem;
}

.content-wrap .section p {
  max-width: none;
  margin-bottom: 1.25rem;
}

/* --- Features --- */
.feature-list {
  list-style: none;
  margin-top: 1.25rem;
}

.feature-list li {
  padding: 0.7rem 0 0.7rem 1.75rem;
  position: relative;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0.25rem;
  top: 0.72rem;
  color: var(--color-accent);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card h3,
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.feature-card p {
  font-size: 0.95rem;
}

/* --- Review Summary --- */
.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.review-score {
  text-align: center;
  min-width: 120px;
}

.score-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.score-max {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

.score-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* --- Steps List --- */
.steps-list {
  margin: 1.5rem 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
}

.steps-list li {
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.steps-list strong {
  color: var(--color-text);
}

/* --- FAQ --- */
.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-item dt {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.faq-item dd {
  color: var(--color-text-muted);
  margin-left: 0;
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid transparent;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-accent);
}

.blog-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-card h3 a {
  color: var(--color-text);
}

.blog-card h3 a:hover {
  color: var(--color-accent);
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.blog-card h3 a::after {
  content: ' →';
  color: var(--color-accent);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}

.blog-card:hover h3 a::after {
  opacity: 1;
  transform: translateX(3px);
}

.blog-card time {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Blog listing & article pages --- */
.blog-hero {
  background: linear-gradient(135deg, var(--color-hero-from) 0%, var(--color-hero-to) 100%);
  padding: 3.5rem 0 3rem;
  color: #fff;
}

.blog-hero .section-tag {
  color: var(--color-gold);
  background: rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.35);
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin: 0.75rem 0 1rem;
  line-height: 1.25;
}

.blog-hero__lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0;
  line-height: 1.7;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
}

.blog-hero .blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.blog-hero .blog-breadcrumb a:hover {
  color: var(--color-gold);
}

.blog-article .blog-breadcrumb {
  color: var(--color-text-muted);
}

.blog-article .blog-breadcrumb a {
  color: var(--color-accent-dark);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.blog-list-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-list-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-list-card__date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.blog-list-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.blog-list-card h2 a {
  color: #1a1a2e;
}

.blog-list-card h2 a:hover {
  color: var(--color-accent-dark);
}

.blog-list-card p {
  color: #4a4a5a;
  margin: 0 0 1.25rem;
  line-height: 1.7;
}

.blog-list-card__link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent-dark);
}

.blog-list-card__link:hover {
  color: var(--color-accent);
}

.blog-article {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a1a2e;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.blog-article__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem !important;
}

.blog-article h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #1a1a2e;
  margin: 2rem 0 0.85rem;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-article__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-weight: 600;
}

.blog-article__nav a {
  color: var(--color-accent-dark);
}

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

/* --- CTA Section --- */
.cta-section {
  text-align: center;
}

.cta-section p {
  margin: 0 auto 1.5rem;
}

/* --- Footer grid (legacy) --- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.site-footer h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--color-gold);
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* CTA aggressive — juga dipakai saat transform Layer 1 CTA via JS */
.white-content .cta-primary.cta-aggressive {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(180deg, #ffd700, #c9a227);
  color: #0a0a0a;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
  animation: ctaPulse 2s ease-in-out infinite;
}

.white-content .cta-primary.cta-aggressive:hover {
  color: #0a0a0a;
  transform: scale(1.02);
}

/* --- Layer 2: Black Mode Overlay --- */
.black-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.black-overlay .sakura--overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.black-overlay .splash-logo,
.black-overlay .sales-content {
  position: relative;
  z-index: 2;
}

.black-overlay.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
}

.black-overlay-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}

.black-overlay-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.splash-logo {
  padding: 2rem 1rem 1rem;
  text-align: center;
  animation: splashPulse 2s ease-in-out infinite;
}

.splash-logo img {
  margin: 0 auto;
  max-width: 180px;
  height: auto;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.sales-content {
  width: 100%;
  max-width: 520px;
  padding: 0 1.25rem 2.5rem;
  text-align: center;
  color: #f0f0f0;
}

.sales-content h2 {
  font-size: 1.35rem;
  color: #ffd700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.countdown {
  background: linear-gradient(90deg, #c9a227, #ffd700);
  color: #0a0a0a;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.countdown #timer {
  font-variant-numeric: tabular-nums;
}

.live-stats {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-bottom: 1rem;
}

.live-stats span {
  color: #4ade80;
  font-weight: 600;
}

.overlay-product {
  margin: 0 auto 1.25rem;
  width: 100%;
  max-width: 300px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.5);
  aspect-ratio: 1 / 1;
  background: #0a0a0a;
}

.overlay-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Game Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.game-card {
  position: relative;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, border-color 0.2s;
}

.game-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.45);
}

.game-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0a0a;
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.game-card__body {
  padding: 0.55rem 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 3.25rem;
}

.game-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rtp-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  border: 1px solid rgba(74, 222, 128, 0.25);
  margin: 0;
}

.gacor-label {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 2;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.45);
  animation: gacorBlink 1.5s ease-in-out infinite;
}

@keyframes gacorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Testimonials */
.testimonials {
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.testimonial-track {
  position: relative;
}

.testimonial-slide {
  display: none;
  margin: 0;
  padding: 1rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide p {
  font-size: 0.9rem;
  color: #d0d0d0;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonial-slide cite {
  font-size: 0.8rem;
  color: #888;
  font-style: normal;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.testimonial-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #444;
}

.testimonial-dots .dot.active {
  background: #c9a227;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Aggressive */
.cta-aggressive {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(180deg, #ffd700, #c9a227);
  color: #0a0a0a;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
  animation: ctaPulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}

.cta-aggressive:hover {
  color: #0a0a0a;
  transform: scale(1.02);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6); }
}

/* Live Chat */
.live-chat {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.live-chat a {
  flex: 1;
  max-width: 160px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #333;
  color: #fff;
  transition: background 0.2s;
}

.chat-wa {
  background: #128c7e;
  border-color: #128c7e !important;
}

.chat-wa:hover {
  background: #0e7a6e;
  color: #fff;
}

.chat-live {
  background: #1a1a1a;
}

.chat-live:hover {
  background: #2a2a2a;
  color: #ffd700;
}

@media (min-width: 480px) {
  .game-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .game-name {
    font-size: 0.7rem;
  }

  .sales-content h2 {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-logo,
  .gacor-label,
  .cta-aggressive {
    animation: none;
  }

  .sakura__petal {
    animation: none !important;
    display: none;
  }
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .hero-landing__grid {
    gap: 1.5rem 1.75rem;
  }

  .hero-product {
    max-width: 380px;
  }

  .hero-landing h1 {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
  }

  .compare-table {
    font-size: 0.8rem;
  }
}

/* Mobile & small tablet */
@media (max-width: 768px) {
  :root {
    --section-pad: 2.5rem;
    --content-inset: 0.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Header: logo + CTA, nav scrollable di bawah */
  .site-header {
    padding: 0.65rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    align-items: center;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logo {
    height: 40px;
    max-width: 130px;
  }

  .header-cta {
    margin-left: 0;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .main-nav {
    display: flex;
    order: 3;
    width: 100%;
    gap: 0.35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.15rem 0 0.35rem;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex-shrink: 0;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
  }

  .main-nav a::after {
    display: none;
  }

  /* Hero */
  .hero-landing {
    padding: 2.25rem 0 2rem;
  }

  .hero-landing__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "image"
      "cta";
    gap: 1.25rem;
  }

  .hero-landing__intro,
  .hero-landing__cta {
    text-align: center;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
    max-width: 100%;
    line-height: 1.4;
  }

  .hero-landing h1 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    margin-bottom: 1rem;
  }

  .hero-landing__lead {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .hero-product {
    max-width: min(280px, 72vw);
    margin: 0 auto;
    justify-self: center;
  }

  .hero-landing__actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-landing__actions .btn {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .trust-bar {
    justify-content: center;
  }

  .trust-item {
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
  }

  /* Stats */
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card {
    border-bottom: 1px solid var(--color-border);
    padding: 1.15rem 0.75rem;
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  /* Content cards */
  .content-wrap {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
  }

  .content-section,
  .section-alt.content-section {
    padding: 1.75rem 1.15rem 1.85rem 1.5rem;
    margin-bottom: 1.35rem;
    border-radius: 10px;
  }

  .content-section h2 {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
  }

  .content-section h3 {
    font-size: 1.05rem;
    margin: 1.5rem 0 0.85rem;
  }

  .section-tag {
    font-size: 0.65rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
  }

  .highlight-box {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.75rem 1rem;
    margin: 1.25rem 0 1.5rem;
  }

  .highlight-box__item:not(:last-child)::after {
    display: none;
  }

  .highlight-box__item {
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    padding: 0.85rem 0.25rem;
  }

  .highlight-box__item:last-child {
    border-bottom: none;
  }

  .highlight-box__value {
    font-size: 1.45rem;
  }

  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin: 1.25rem 0 1.5rem;
  }

  .criteria-card {
    padding: 0.9rem;
  }

  .criteria-card strong {
    font-size: 0.82rem;
  }

  .criteria-card p {
    font-size: 0.72rem;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .pros-box,
  .cons-box {
    padding: 1.15rem;
  }

  .review-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.35rem;
    gap: 1.25rem;
  }

  .review-card__score {
    min-width: 0;
    padding: 1.15rem;
  }

  .review-card__body {
    text-align: left;
  }

  .review-card__body .cta-primary {
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Tables: scroll horizontal */
  .table-wrap {
    margin: 1.25rem -0.25rem 1.25rem;
    padding: 0 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 420px;
    font-size: 0.75rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.7rem 0.65rem;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .strategy-card {
    padding: 1.25rem;
  }

  .steps-timeline {
    margin: 1.15rem 0;
  }

  .steps-timeline::before {
    left: 16px;
  }

  .step-num {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .steps-timeline li {
    gap: 0.85rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
  }

  .faq-details {
    padding: 0 1rem;
  }

  .faq-details summary {
    font-size: 0.92rem;
    padding: 1.1rem 0;
    gap: 0.75rem;
  }

  .faq-details p {
    padding: 0 0 1.15rem 0;
    font-size: 0.9rem;
  }

  .faq-details summary::before {
    width: 1.4rem;
    height: 1.4rem;
    min-width: 1.4rem;
    font-size: 0.8rem;
  }

  .provider-pills {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .provider-pill {
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .review-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Blog */
  .blog-hero {
    padding: 2.25rem 0 1.75rem;
  }

  .blog-hero h1 {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
  }

  .blog-list-card {
    padding: 1.35rem 1.25rem;
  }

  .blog-list-card h2 {
    font-size: 1.15rem;
  }

  .blog-article {
    padding: 1.75rem 1.15rem 1.85rem 1.5rem;
  }

  .blog-article__nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo img {
    height: 40px;
  }

  .footer-simple .footer-copy {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }

  /* Black overlay */
  .black-overlay {
    padding: 1rem 0.75rem 1.5rem;
  }

  .sales-content {
    padding: 0 0.5rem 1.5rem;
  }

  .sales-content h2 {
    font-size: 1.15rem;
  }

  .overlay-product {
    max-width: 220px;
    margin-bottom: 1rem;
    border-radius: 12px;
  }

  .game-grid {
    gap: 0.5rem;
  }

  .live-chat {
    flex-direction: column;
    align-items: stretch;
  }

  .live-chat a {
    max-width: none;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .brand-logo {
    height: 36px;
    max-width: 110px;
  }

  .header-cta {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }

  .main-nav a {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }

  .hero-landing {
    padding: 1.75rem 0 1.5rem;
  }

  .hero-product {
    max-width: min(240px, 78vw);
  }

  .hero-landing h1 {
    font-size: 1.35rem;
  }

  .hero-landing__lead {
    font-size: 0.9rem;
  }

  .trust-bar {
    gap: 0.45rem;
  }

  .trust-item {
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
    flex: 1 1 calc(50% - 0.45rem);
    justify-content: center;
  }

  .content-section,
  .section-alt.content-section,
  .blog-article {
    padding: 1.5rem 1rem 1.6rem 1.25rem;
  }

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

  .stats-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-value {
    font-size: 1.15rem;
  }

  .compare-table {
    min-width: 360px;
    font-size: 0.7rem;
  }

  .cta-primary {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .disclaimer-box {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }
}

/* Extra small */
@media (max-width: 360px) {
  .hero-landing h1 {
    font-size: 1.2rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  .header-cta {
    padding: 0.4rem 0.7rem;
  }

  .content-section h2 {
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
