:root {
  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.14);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.22);
  --container: 1160px;
  --header-h: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070a12;
  --bg2: #0a1022;
  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.93);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.62);
  --primary: #4f8cff;
  --primary2: #7b5cff;
  --ring: rgba(79, 140, 255, 0.35);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f9ff;
  --bg2: #ffffff;
  --surface: rgba(15, 23, 42, 0.06);
  --surface2: rgba(15, 23, 42, 0.08);
  --border: rgba(15, 23, 42, 0.12);
  --text: rgba(11, 18, 32, 0.93);
  --muted: rgba(11, 18, 32, 0.70);
  --muted2: rgba(11, 18, 32, 0.58);
  --primary: #155eef;
  --primary2: #6d28d9;
  --ring: rgba(21, 94, 239, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  *:not(.wa-row):not(.wa-row-1):not(.wa-row-2):not(#sp-dot):not(#sp-toast):not(#sp-toast::before) {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

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

html,
body {
  height: 100%;
}

a svg,
button svg,
.section-icon svg,
.trust-icon svg {
  display: block;
}

svg [stroke] {
  stroke-linecap: round;
  stroke-linejoin: round;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(1400px 700px at 50% -200px, rgba(79, 140, 255, 0.22), transparent 60%),
    radial-gradient(900px 500px at 10% 30%, rgba(123, 92, 255, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.65;
  letter-spacing: -0.01em;
  text-align: center;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 18, 0.46);
  backdrop-filter: blur(14px);
  text-align: left;
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.25), rgba(123, 92, 255, 0.18));
  border: 1px solid var(--border);
}

.brand-text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

html[data-theme="light"] .nav {
  background: rgba(15, 23, 42, 0.04);
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .nav-link:hover {
  background: rgba(15, 23, 42, 0.06);
}

.nav-link[aria-current="true"] {
  color: var(--text);
  background: rgba(79, 140, 255, 0.16);
  border: 1px solid rgba(79, 140, 255, 0.24);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  justify-content: flex-end;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

html[data-theme="light"] .theme-toggle {
  background: rgba(15, 23, 42, 0.04);
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
  white-space: nowrap;
}

.btn:focus-visible,
.theme-toggle:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 16px 45px rgba(79, 140, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 60px rgba(79, 140, 255, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.06);
}

.btn-sm {
  padding: 10px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 18px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

.section {
  position: relative;
  padding: 84px 0;
}

.hero {
  padding-top: 110px;
  overflow: hidden;
}

.bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(55px);
  opacity: 0.65;
}

.blob-a {
  width: 520px;
  height: 520px;
  left: -150px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(79, 140, 255, 0.75), transparent 60%);
}

.blob-b {
  width: 680px;
  height: 680px;
  right: -220px;
  top: 10px;
  background: radial-gradient(circle at 50% 40%, rgba(123, 92, 255, 0.6), transparent 62%);
}

.blob-c {
  width: 720px;
  height: 480px;
  left: 15%;
  bottom: -260px;
  background: radial-gradient(circle at 50% 50%, rgba(79, 140, 255, 0.35), transparent 60%);
}

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

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(79, 140, 255, 0.25);
  background: rgba(79, 140, 255, 0.1);
  color: var(--muted);
  font-size: 13px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 0 0 6px rgba(79, 140, 255, 0.14);
}

.hero-title {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 0 0 12px;
  font-size: clamp(14px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  .hero-subtitle {
    white-space: normal;
    font-size: clamp(14px, 2vw, 17px);
    max-width: 52ch;
  }
}

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

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
}

html[data-theme="light"] .trust-item {
  background: rgba(15, 23, 42, 0.04);
}

.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.16), rgba(123, 92, 255, 0.1));
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  width: 100%;
}

.mock-panel {
  width: min(440px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

html[data-theme="light"] .mock-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.mock-panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

html[data-theme="light"] .dot {
  background: rgba(15, 23, 42, 0.12);
}

.mock-search {
  margin-left: auto;
  width: 46%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

html[data-theme="light"] .mock-search {
  background: rgba(15, 23, 42, 0.06);
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}

.metric {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] .metric {
  background: rgba(15, 23, 42, 0.04);
}

.metric-label {
  font-size: 12px;
  color: var(--muted);
}

.metric-value {
  margin-top: 6px;
  font-weight: 700;
  font-size: 13px;
}

.mock-chart {
  padding: 14px;
}

.mock-chart .line {
  height: 180px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: radial-gradient(320px 180px at 20% 30%, rgba(79, 140, 255, 0.26), transparent 65%),
    radial-gradient(320px 180px at 75% 60%, rgba(123, 92, 255, 0.22), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

html[data-theme="light"] .mock-chart .line {
  background: radial-gradient(320px 180px at 20% 30%, rgba(21, 94, 239, 0.2), transparent 65%),
    radial-gradient(320px 180px at 75% 60%, rgba(109, 40, 217, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02));
}

.mock-card {
  position: absolute;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-sm);
  padding: 12px;
  width: 220px;
}

html[data-theme="light"] .mock-card {
  background: rgba(255, 255, 255, 0.75);
}

.mock-top {
  top: 18px;
  left: 10px;
  transform: rotate(-6deg);
}

.mock-side {
  bottom: 24px;
  right: 10px;
  transform: rotate(7deg);
}

.mock-kicker {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}

.mock-bars .bar {
  width: 10px;
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(79, 140, 255, 0.85), rgba(123, 92, 255, 0.5));
}

.mock-pill {
  height: 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  margin-top: 10px;
}

html[data-theme="light"] .mock-pill {
  background: rgba(15, 23, 42, 0.04);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-direction: column;
  text-align: center;
}

.section-head.compact {
  margin-bottom: 0;
}

.section-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.16), rgba(123, 92, 255, 0.12));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex: 0 0 auto;
}

.section-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-title-sm {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.body-text {
  margin: 0;
  color: var(--muted2);
  max-width: 78ch;
}

.grid {
  display: grid;
  gap: 14px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

html[data-theme="light"] .card {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.card-title {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.card.highlight {
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.16), rgba(123, 92, 255, 0.12));
  border-color: rgba(79, 140, 255, 0.28);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  justify-items: center;
}

.about-media {
  width: min(980px, 100%);
  margin: 14px auto 18px;
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] .about-media {
  background: rgba(255, 255, 255, 0.72);
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* Placeholder for cover image */
.about-media-placeholder {
  width: 100%;
  height: 260px;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.18), rgba(123, 92, 255, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.badge {
  display: inline-flex;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
}

html[data-theme="light"] .badge {
  background: rgba(15, 23, 42, 0.04);
}

.split-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 18px;
}

html[data-theme="light"] .split-panel {
  background: rgba(255, 255, 255, 0.76);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 680px) {
  .panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.panel-card {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  text-align: center;
}

html[data-theme="light"] .panel-card {
  background: rgba(15, 23, 42, 0.04);
}

.panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.16), rgba(123, 92, 255, 0.12));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.panel-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.panel-text {
  margin-top: 2px;
  font-size: 13px;
  color: var(--muted);
}

/* ===== MODULE GRID - CARD STYLE (Reference: Tips & Trick card) ===== */
.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 900px) {
  .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .module-grid { grid-template-columns: 1fr; }
}

/* Modul 7 — full-width horizontal card */
.module-7 {
  grid-column: 1 / -1;
  flex-direction: row !important;
  min-height: 160px;
}

.module-7 .module-thumb {
  width: 260px;
  min-width: 260px;
  height: auto;
  min-height: 160px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  flex-shrink: 0;
}

.module-7 .module-body {
  flex: 1;
  padding: 20px 24px 16px;
  gap: 10px;
  justify-content: center;
}

.module-7 .module-name {
  font-size: 18px;
}

.module-7 .module-desc {
  font-size: 14px;
  max-width: 60ch;
}

.module-7 .module-footer {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 24px;
  border-top: none;
  border-left: 1px solid var(--border);
  min-width: 190px;
  gap: 12px;
}

.module-7 .module-list-panel {
  grid-column: 1 / -1;
  width: 100%;
  border-left: none;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .module-7 {
    flex-direction: column !important;
    min-height: unset;
  }
  .module-7 .module-thumb {
    width: 100%;
    min-width: unset;
    height: 148px;
    min-height: unset;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .module-7 .module-footer {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--border);
    min-width: unset;
    padding: 12px 18px 14px;
    align-items: center;
    justify-content: space-between;
  }
}

.card.module {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg2);
  transition: transform 220ms cubic-bezier(.22,.68,0,1.2), box-shadow 220ms ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

html[data-theme="light"] .card.module {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}

.card.module:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.32);
}

/* Thumbnail header area */
.module-thumb {
  position: relative;
  height: 148px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-thumb-bg {
  position: absolute;
  inset: 0;
}

.module-thumb-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.module-thumb-num {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.38);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18);
}

.module-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  background: rgba(0,0,0,0.3);
}

/* Module body */
.module-body {
  padding: 16px 18px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}

.module-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Footer with count + button */
.module-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px 14px;
  border-top: 1px solid var(--border);
}

.module-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
}

.module-count svg { opacity: 0.75; flex-shrink: 0; }

.btn-list {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  transition: opacity 160ms ease, transform 160ms ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34,197,94,0.32);
}

.btn-list:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* List panel — hidden, data only */
.module-list-panel { display: none; }

/* ===== MODAL POPUP ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: modalFadeIn 180ms ease forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  width: min(480px, 100%);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 200ms cubic-bezier(.22,.68,0,1.2) forwards;
  overflow: hidden;
}

html[data-theme="light"] .modal-box {
  background: #fff;
  box-shadow: 0 32px 80px rgba(15,23,42,0.18);
}

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

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 140ms ease, transform 140ms ease;
}

.modal-close:hover {
  background: var(--surface2);
  transform: scale(1.08);
}

.modal-body {
  overflow-y: auto;
  padding: 16px 20px 20px;
  flex: 1;
}

.modal-body .list li {
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.modal-body .list li:last-child { border-bottom: none; }

/* Per-module thumbnail gradients */
.module-1 .module-thumb-bg { background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%); }
.module-1 .module-thumb-icon { color: #93c5fd; }
.module-1 .module-badge { background: rgba(59,130,246,0.5); }

.module-2 .module-thumb-bg { background: linear-gradient(135deg, #0e7490 0%, #0369a1 50%, #1e3a8a 100%); }
.module-2 .module-thumb-icon { color: #67e8f9; }
.module-2 .module-badge { background: rgba(6,182,212,0.5); }

.module-3 .module-thumb-bg { background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 50%, #2e1065 100%); }
.module-3 .module-thumb-icon { color: #c4b5fd; }
.module-3 .module-badge { background: rgba(139,92,246,0.5); }

.module-4 .module-thumb-bg { background: linear-gradient(135deg, #15803d 0%, #14532d 50%, #052e16 100%); }
.module-4 .module-thumb-icon { color: #86efac; }
.module-4 .module-badge { background: rgba(34,197,94,0.5); }

.module-5 .module-thumb-bg { background: linear-gradient(135deg, #c2410c 0%, #9a3412 50%, #431407 100%); }
.module-5 .module-thumb-icon { color: #fdba74; }
.module-5 .module-badge { background: rgba(249,115,22,0.5); }

.module-6 .module-thumb-bg { background: linear-gradient(135deg, #7e22ce 0%, #581c87 50%, #3b0764 100%); }
.module-6 .module-thumb-icon { color: #e9d5ff; }
.module-6 .module-badge { background: rgba(168,85,247,0.5); }

.module-7 .module-thumb-bg { background: linear-gradient(135deg, #0369a1 0%, #075985 50%, #082f49 100%); }
.module-7 .module-thumb-icon { color: #7dd3fc; }
.module-7 .module-badge { background: rgba(56,189,248,0.5); }

html[data-theme="light"] .module-1 .module-thumb-bg { background: linear-gradient(135deg, #3b82f6, #6d28d9); }
html[data-theme="light"] .module-2 .module-thumb-bg { background: linear-gradient(135deg, #06b6d4, #0369a1); }
html[data-theme="light"] .module-3 .module-thumb-bg { background: linear-gradient(135deg, #8b5cf6, #4f46e5); }
html[data-theme="light"] .module-4 .module-thumb-bg { background: linear-gradient(135deg, #22c55e, #15803d); }
html[data-theme="light"] .module-5 .module-thumb-bg { background: linear-gradient(135deg, #f97316, #dc2626); }
html[data-theme="light"] .module-6 .module-thumb-bg { background: linear-gradient(135deg, #a855f7, #ec4899); }
html[data-theme="light"] .module-7 .module-thumb-bg { background: linear-gradient(135deg, #38bdf8, #0369a1); }

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.list li {
  position: relative;
  padding-left: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.list li::before {
  content: "";
  position: static;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  transform: none;
}


/* ===== BONUS LIST (compact) ===== */
.bonus-list {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg2);
}
html[data-theme="light"] .bonus-list { background: #fff; }

.bonus-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 140ms ease;
}
.bonus-row:last-child { border-bottom: none; }
.bonus-row:hover { background: var(--surface); }

.bonus-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
html[data-theme="light"] .bonus-row-icon { border-color: rgba(15,23,42,0.06); }

.bonus-row-name {
  flex: 1;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}

.bonus-row-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted2);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.bonus-resell {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.22);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

/* ===== BONUS SECTION ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bonus-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg2);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

html[data-theme="light"] .bonus-card { background: #ffffff; }

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

.bonus-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted2);
  letter-spacing: 0.08em;
}

.bonus-thumb {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

html[data-theme="light"] .bonus-thumb { border-color: rgba(15,23,42,0.08); }

.bonus-thumb-1 { background: linear-gradient(135deg,#1e3a8a,#312e81); color:#93c5fd; }
.bonus-thumb-2 { background: linear-gradient(135deg,#164e63,#0c4a6e); color:#67e8f9; }
.bonus-thumb-3 { background: linear-gradient(135deg,#14532d,#052e16); color:#86efac; }
.bonus-thumb-4 { background: linear-gradient(135deg,#7c2d12,#431407); color:#fdba74; }
.bonus-thumb-5 { background: linear-gradient(135deg,#4c1d95,#2e1065); color:#c4b5fd; }
.bonus-thumb-6 { background: linear-gradient(135deg,#831843,#500724); color:#f9a8d4; }
.bonus-thumb-7 { background: linear-gradient(135deg,#134e4a,#022c22); color:#5eead4; }
.bonus-thumb-8 { background: linear-gradient(135deg,#1e3a5f,#0f2347); color:#7dd3fc; }
.bonus-thumb-9 { background: linear-gradient(135deg,#713f12,#3f1f06); color:#fcd34d; }

.bonus-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.4;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bonus-resell {
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.22);
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  width: fit-content;
}

.bonus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  width: 100%;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
  text-decoration: none;
}

.bonus-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border-color: transparent;
  color: #fff;
}

@media (max-width: 720px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bonus-grid { grid-template-columns: 1fr; } }

/* ===== BENEFIT GRID ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  background: var(--bg2);
  transition: background 160ms ease;
}

html[data-theme="light"] .benefit-item {
  background: #ffffff;
}

.benefit-item:hover {
  background: var(--surface2);
}

html[data-theme="light"] .benefit-item:hover {
  background: rgba(15,23,42,0.03);
}

.benefit-item--accent {
  background: linear-gradient(135deg, rgba(79,140,255,0.08), rgba(123,92,255,0.06));
}

html[data-theme="light"] .benefit-item--accent {
  background: linear-gradient(135deg, rgba(21,94,239,0.05), rgba(109,40,217,0.04));
}

.benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== RESULT SECTION ===== */
.result-section {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg2);
}

html[data-theme="light"] .result-section {
  background: #ffffff;
}

.result-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

html[data-theme="light"] .result-section-head {
  background: rgba(15,23,42,0.03);
}

.result-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.result-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 150ms ease, color 150ms ease;
}

.result-row:nth-child(even) {
  border-right: none;
}

.result-row:nth-last-child(-n+2) {
  border-bottom: none;
}

.result-row:last-child:nth-child(odd) {
  border-right: none;
  grid-column: 1 / -1;
  border-bottom: none;
}

.result-row:hover {
  background: var(--surface);
  color: var(--text);
}

.result-row svg {
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.85;
}

@media (max-width: 760px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .result-list { grid-template-columns: 1fr; }
  .result-row { border-right: none; }
  .result-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .result-row:last-child { border-bottom: none; grid-column: auto; }
}

@media (max-width: 520px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

.fit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fit-item {
  padding: 14px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}

html[data-theme="light"] .fit-item {
  background: rgba(15, 23, 42, 0.04);
}

.divider {
  margin: 22px 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="light"] .divider {
  background: rgba(15, 23, 42, 0.08);
}

.quote {
  display: grid;
  gap: 10px;
}

.stars {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .stars {
  color: rgba(11, 18, 32, 0.9);
}

.stars svg {
  opacity: 0.95;
}

.quote-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-by {
  color: var(--muted2);
  font-size: 13px;
}

.cta {
  padding-bottom: calc(100px + var(--safe-bottom));
}

.cta-card {
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(79, 140, 255, 0.26);
  background: radial-gradient(700px 320px at 20% 0%, rgba(79, 140, 255, 0.22), transparent 60%),
    radial-gradient(700px 320px at 80% 60%, rgba(123, 92, 255, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-md);
  text-align: center;
  justify-items: center;
}

html[data-theme="light"] .cta-card {
  background: radial-gradient(700px 320px at 20% 0%, rgba(21, 94, 239, 0.16), transparent 60%),
    radial-gradient(700px 320px at 80% 60%, rgba(109, 40, 217, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.65));
}

.cta-actions {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
}

.footer {
  padding: 26px 0 calc(26px + var(--safe-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 18, 0.35);
  backdrop-filter: blur(14px);
}

html[data-theme="light"] .footer {
  background: rgba(255, 255, 255, 0.65);
  border-top-color: rgba(15, 23, 42, 0.08);
}

.footer-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  max-width: 62ch;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
}

.footer-link {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.footer-link:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] .footer-link:hover {
  background: rgba(15, 23, 42, 0.04);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 14px calc(10px + var(--safe-bottom));
  background: rgba(6, 10, 18, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  display: none;
}

html[data-theme="light"] .mobile-cta {
  background: rgba(255, 255, 255, 0.78);
  border-top-color: rgba(15, 23, 42, 0.12);
}

.mobile-cta-inner {
  width: min(var(--container), calc(100% - 18px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.mobile-cta-title {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 14px;
}

.mobile-cta-sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: calc(18px + var(--safe-bottom));
  z-index: 65;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

html[data-theme="light"] .to-top {
  background: rgba(255, 255, 255, 0.75);
}

.to-top:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(8px);
}

html[data-theme="light"] .to-top:hover {
  background: rgba(255, 255, 255, 0.88);
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

section,
.section {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-visual {
    min-height: 380px;
  }

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

  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .brand,
  .header-actions {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    padding-top: 80px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    white-space: normal;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 15px;
  }

  .hero-visual {
    display: none;
  }

  /* Section heads */
  .section-title {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  /* Cards */
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 16px;
  }

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

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

  /* Price card */
  .price-number {
    font-size: 36px;
  }

  .price-card-head {
    padding: 20px 18px 16px;
  }

  .price-card-body {
    padding: 16px 18px;
  }

  .price-cta {
    padding: 15px;
    font-size: 14px;
  }

  .price-timer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    padding: 9px 12px;
  }

  .price-timer-countdown {
    font-size: 14px;
  }

  /* FAQ */
  .faq-list {
    max-width: 100%;
  }

  .faq-q {
    padding: 16px 16px;
    font-size: 14px;
  }

  /* CTA Final */
  .cta-final {
    padding: 60px 0 80px;
  }

  .cta-final-title {
    font-size: clamp(22px, 6.5vw, 32px);
    line-height: 1.2;
  }

  .cta-final-sub {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .btn-cta-final {
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
  }

  /* Bonus grid */
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  /* Feature strip */
  .feature-strip {
    flex-wrap: wrap;
  }

  .fs-card {
    flex: calc(50% - 1px);
    min-width: calc(50% - 1px);
    border-bottom: 1px solid var(--border);
  }

  .fs-divider {
    display: none;
  }

  .fs-card:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  /* Mobile sticky CTA */
  .mobile-cta {
    display: block;
  }

  .to-top {
    bottom: calc(92px + var(--safe-bottom));
    right: 14px;
  }

  .cta-final {
    padding-bottom: calc(100px + var(--safe-bottom));
  }

  /* Trust row */
  .trust-row {
    gap: 8px 10px;
  }

  .trust-item {
    font-size: 12px;
    padding: 8px 10px;
  }

  /* Header */
  .header-actions .btn-sm {
    display: none;
  }

  .brand-tagline {
    display: none;
  }

  /* Quote cards */
  .quote {
    text-align: left;
  }

  .quote-text {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Module desc */
  .module-desc {
    font-size: 13.5px;
    line-height: 1.6;
  }

  /* Audience pills */
  .audience-pills {
    gap: 8px;
  }

  .aud-pill {
    font-size: 12.5px;
    padding: 8px 14px;
  }
}
    /* ===== UNIFIED SECTION ===== */
.unified-top { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.unified-left, .unified-right { border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; background:var(--bg2); }
html[data-theme="light"] .unified-left, html[data-theme="light"] .unified-right { background:#fff; }
.unified-block-label { font-size:11px; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted2); padding:12px 18px 10px; border-bottom:1px solid var(--border); background:var(--surface); }
html[data-theme="light"] .unified-block-label { background:rgba(15,23,42,0.03); }
.benefit-grid-v2 { display:flex; flex-direction:column; }
.bv2-item { display:flex; align-items:center; gap:12px; padding:12px 18px; border-bottom:1px solid var(--border); font-size:13px; color:var(--muted); transition:background 140ms; }
.bv2-item:last-child { border-bottom:none; }
.bv2-item:hover { background:var(--surface); color:var(--text); }
.bv2-icon { width:28px; height:28px; border-radius:8px; display:flex; align-items:center; justify-content:center; background:rgba(79,140,255,0.12); border:1px solid rgba(79,140,255,0.2); color:var(--primary); flex-shrink:0; }
.fit-grid-v2 { display:grid; grid-template-columns:1fr 1fr; }
.fv2-item { padding:13px 18px; font-size:13px; font-weight:600; color:var(--muted); border-bottom:1px solid var(--border); border-right:1px solid var(--border); transition:background 140ms,color 140ms; cursor:default; }
.fv2-item:nth-child(even) { border-right:none; }
.fv2-item:nth-last-child(-n+2) { border-bottom:none; }
.fv2-item:hover { background:var(--surface); color:var(--text); }
.unified-bottom { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.unified-results { border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; background:var(--bg2); }
html[data-theme="light"] .unified-results { background:#fff; }
.result-checklist { display:grid; grid-template-columns:1fr 1fr; }
.rc-item { display:flex; align-items:center; gap:10px; padding:12px 18px; font-size:13px; color:var(--muted); border-bottom:1px solid var(--border); border-right:1px solid var(--border); transition:background 140ms,color 140ms; }
.rc-item:nth-child(even) { border-right:none; }
.rc-item:nth-last-child(-n+2) { border-bottom:none; }
.rc-item:hover { background:var(--surface); color:var(--text); }
.rc-item svg { color:var(--primary); flex-shrink:0; opacity:0.85; }
.unified-callout { border:1px solid rgba(79,140,255,0.22); border-radius:var(--radius-lg); background:linear-gradient(135deg,rgba(79,140,255,0.1),rgba(123,92,255,0.08)); padding:28px 26px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:16px; }
.uc-icon { width:44px; height:44px; border-radius:14px; background:rgba(79,140,255,0.15); border:1px solid rgba(79,140,255,0.25); display:flex; align-items:center; justify-content:center; color:var(--primary); }
.uc-text { margin:0; font-size:15px; line-height:1.65; color:var(--muted); max-width:38ch; }
.uc-text strong { color:var(--text); font-weight:700; }
@media (max-width:900px) { .unified-top,.unified-bottom { grid-template-columns:1fr; } .result-checklist { grid-template-columns:1fr; } .rc-item { border-right:none; } .rc-item:nth-last-child(-n+2) { border-bottom:1px solid var(--border); } .rc-item:last-child { border-bottom:none; } .fv2-item:nth-last-child(-n+2) { border-bottom:1px solid var(--border); } .fv2-item:last-child,.fv2-item:nth-last-child(2) { } }
@media (max-width:560px) { .fit-grid-v2 { grid-template-columns:1fr; } .fv2-item { border-right:none; } .fv2-item:nth-last-child(-n+2) { border-bottom:1px solid var(--border); } .fv2-item:last-child { border-bottom:none; } }
/* ===== FEATURE STRIP ===== */
.feature-strip { display:flex; align-items:stretch; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; background:var(--bg2); }
html[data-theme="light"] .feature-strip { background:#fff; }
.fs-card { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; padding:22px 16px; text-align:center; transition:background 160ms ease; }
.fs-card:hover { background:var(--surface); }
.fs-divider { width:1px; background:var(--border); flex-shrink:0; align-self:stretch; }
.fs-icon { width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.fs-icon--blue   { background:rgba(79,140,255,0.14); color:#7db4ff; border:1px solid rgba(79,140,255,0.22); }
.fs-icon--purple { background:rgba(123,92,255,0.14); color:#ab8fff; border:1px solid rgba(123,92,255,0.22); }
.fs-icon--cyan   { background:rgba(6,182,212,0.14);  color:#67e8f9; border:1px solid rgba(6,182,212,0.22); }
.fs-icon--green  { background:rgba(34,197,94,0.14);  color:#86efac; border:1px solid rgba(34,197,94,0.22); }
.fs-icon--orange { background:rgba(251,146,60,0.14); color:#fdba74; border:1px solid rgba(251,146,60,0.22); }
.fs-title { font-size:14px; font-weight:700; color:var(--text); letter-spacing:-0.01em; }
.fs-text  { font-size:12px; color:var(--muted); line-height:1.4; }
@media (max-width:700px) { .feature-strip { flex-wrap:wrap; } .fs-card { flex:calc(50% - 1px); min-width:calc(50% - 1px); border-bottom:1px solid var(--border); } .fs-divider { display:none; } .fs-card:nth-child(odd) { border-right:1px solid var(--border); } }
@media (max-width: 400px) {
  .fs-card { flex: 100%; border-right: none !important; }
  .hero-title { font-size: 32px; }
  .cta-final-title { font-size: 22px; }
  .price-number { font-size: 32px; }
  .price-timer { font-size: 11px; }
  .faq-q { font-size: 13.5px; padding: 14px; }
  .trust-item { font-size: 11.5px; padding: 7px 9px; }
}
/* ===== SUBSECTION LABEL 0026 AUDIENCE PILLS ===== */
.subsection-label { font-size:11px; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted2); margin-bottom:14px; text-align:center; }
.subsection-label::before,.subsection-label::after { content:""; display:inline-block; width:28px; height:1px; background:var(--border); margin:0 10px; vertical-align:middle; }
.audience-pills { display:grid; grid-template-columns:repeat(4,auto); gap:10px; justify-content:center; }
@media (max-width:900px) { .audience-pills { grid-template-columns:repeat(3,auto); } }
@media (max-width:700px) { .audience-pills { grid-template-columns:repeat(2,auto); } }
.aud-pill { display:inline-flex; align-items:center; justify-content:center; padding:9px 18px; border-radius:999px; border:1px solid var(--border); background:var(--surface); color:var(--muted); font-size:13px; font-weight:500; transition:background 150ms,color 150ms,border-color 150ms; cursor:default; width:100%; box-sizing:border-box; }
.aud-pill:hover { background:var(--surface2); color:var(--text); border-color:rgba(79,140,255,0.3); }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 90px 0 100px;
  text-align: center;
}
.cta-final-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-final-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .cta-final-title {
    white-space: normal;
    font-size: clamp(22px, 5vw, 34px);
  }
}
.cta-final-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 72ch;
  text-align: center;
}
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 16px 48px rgba(79,140,255,0.32);
  transition: opacity 160ms, transform 160ms, box-shadow 160ms;
  margin-top: 6px;
}
.btn-cta-final:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(79,140,255,0.38);
}

/* ===== FOOTER FINAL ===== */
.footer-final {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-final-brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.footer-final-copy {
  font-size: 12px;
  color: var(--muted2);
}

/* ===== FAQ SECTION ===== */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg2);
}
html[data-theme="light"] .faq-item { background: #fff; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  letter-spacing: -0.01em;
}

.faq-q:hover { background: rgba(255,255,255,0.03); border-radius: var(--radius-md); }
html[data-theme="light"] .faq-q:hover { background: rgba(15,23,42,0.02); }

.faq-icon {
  font-size: 10px;
  color: var(--muted2);
  flex-shrink: 0;
  transition: transform 240ms cubic-bezier(.22,.68,0,1.2);
  display: inline-block;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--muted);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-a.open {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a-inner > p {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  text-align: left;
}

.faq-a-inner > p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 680px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
}
html[data-theme="light"] .price-card { background: #fff; }
.price-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.28); }

.price-card--featured {
  border-color: rgba(79,140,255,0.38);
  box-shadow: 0 0 0 1px rgba(79,140,255,0.18), 0 16px 50px rgba(79,140,255,0.14);
}
.price-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(79,140,255,0.28), 0 28px 70px rgba(79,140,255,0.2);
}

.price-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  white-space: nowrap;
}

.price-card-head {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
html[data-theme="light"] .price-card-head { background: rgba(15,23,42,0.02); }

.price-card--featured .price-card-head {
  background: linear-gradient(135deg, rgba(79,140,255,0.1), rgba(123,92,255,0.08));
}
html[data-theme="light"] .price-card--featured .price-card-head {
  background: linear-gradient(135deg, rgba(21,94,239,0.06), rgba(109,40,217,0.04));
}

.price-plan-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  border: 1px solid var(--border);
}
.price-plan-icon--blue { background: rgba(79,140,255,0.12); color: var(--primary); }
.price-plan-icon--orange { background: rgba(251,146,60,0.14); color: #fb923c; border-color: rgba(251,146,60,0.2); }

.price-plan-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--text);
}
.price-plan-tag {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.price-amount-wrap {
  margin-top: 16px;
}
.price-original {
  font-size: 13px;
  color: var(--muted2);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}
.price-rp { font-size: 16px; font-weight: 700; color: var(--text); }
.price-number { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--text); }
.price-note { font-size: 12px; color: var(--muted2); margin-top: 5px; }

.price-savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  padding: 4px 12px;
  border-radius: 999px;
}

.price-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  text-align: left;
  line-height: 1.45;
}
.price-features li:last-child { border-bottom: none; }

.price-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-check--blue { background: rgba(79,140,255,0.15); color: var(--primary); }
.price-check--orange { background: rgba(251,146,60,0.15); color: #fb923c; }

.price-bonus-tag {
  display: inline-block;
  background: rgba(251,146,60,0.14);
  color: #fb923c;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}

.price-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 160ms, transform 160ms;
}
.price-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.price-cta--blue {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 10px 32px rgba(79,140,255,0.28);
}
.price-cta--orange {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  box-shadow: 0 10px 32px rgba(245,158,11,0.28);
}
.price-guarantee {
  text-align: center;
  font-size: 11px;
  color: var(--muted2);
  margin-top: 10px;
}

/* ===== PRICE TIMER ===== */
.price-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
  font-size: 13px;
  font-weight: 600;
}
html[data-theme="light"] .price-timer {
  background: rgba(239,68,68,0.06);
  border-color: rgba(239,68,68,0.18);
  color: #dc2626;
}
.price-timer svg { flex-shrink: 0; }
.price-timer-countdown {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
  .wa-marquee-wrap {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    width: 100%;
    -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  }
  .wa-row {
    display: flex;
    gap: 14px;
    width: max-content;
    will-change: transform;
  }
  .wa-row-1 { animation: wa-slide-left 40s linear infinite !important; }
  .wa-row-2 { animation: wa-slide-right 44s linear infinite !important; }
  .wa-row-1:hover, .wa-row-2:hover { animation-play-state: paused !important; }
  @keyframes wa-slide-left  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  @keyframes wa-slide-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

  .wa-card {
    width: 240px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  }

  /* topbar */
  .wa-topbar {
    background: #161b22;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .wa-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
    filter: blur(3px);
    user-select: none;
  }
  .wa-contact { flex: 1; min-width: 0; }
  .wa-name {
    font-size: 11.5px; font-weight: 600;
    color: #c9d1d9; line-height: 1.3;
    filter: blur(4px);
    user-select: none;
  }
  .wa-status { font-size: 10px; color: #6e7681; margin-top: 1px; }
  .wa-online {
    width: 7px; height: 7px; border-radius: 50%;
    background: #3fb950; flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(63,185,80,0.2);
  }

  /* chat area */
  .wa-chat {
    background: #0d1117;
    padding: 12px 12px 8px;
    flex: 1;
    position: relative;
  }
  .wa-chat::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
  }

  /* bubble */
  .wa-bubble {
    background: #1c2128;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px 12px 12px 12px;
    padding: 9px 11px 6px;
    max-width: 96%;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .wa-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: -6px;
    border-width: 0 7px 7px 0;
    border-style: solid;
    border-color: transparent rgba(255,255,255,0.06) transparent transparent;
  }
  .wa-bubble::after {
    content: '';
    position: absolute;
    top: 1px; left: -5px;
    border-width: 0 6px 6px 0;
    border-style: solid;
    border-color: transparent #1c2128 transparent transparent;
  }
  .wa-bubble-text {
    font-size: 12px; color: #c9d1d9;
    line-height: 1.6; margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: left !important;
  }
  .wa-bubble-time {
    font-size: 9px; color: #6e7681;
    text-align: right; margin-top: 5px;
    display: flex; align-items: center;
    justify-content: flex-end; gap: 3px;
  }
  .wa-marquee-wrap * { text-align: left; }
  .wa-bubble-time { text-align: right; }
  .wa-check { color: #58a6ff; font-size: 10px; }

  /* WA bottom bar */
  .wa-bottombar {
    background: #161b22;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .wa-input-fake {
    flex: 1;
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    height: 26px;
  }
  .wa-send {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #238636;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .wa-send svg { width: 12px; height: 12px; fill: #fff; }