/* ═══════════════════════════════════════════════════════════════════════════
   StatixPress Theme — Main Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --clr-primary: #7c3aed;
  --clr-primary-dk: #5b21b6;
  --clr-primary-lt: #ede9fe;
  --clr-secondary: #4f46e5;
  --clr-accent: #f59e0b;

  /* Neutrals */
  --clr-bg: #0f0e1a;
  --clr-bg-card: #18172a;
  --clr-bg-card-lt: #1f1e32;
  --clr-border: rgba(255, 255, 255, .08);
  --clr-border-md: rgba(255, 255, 255, .15);
  --clr-text: #e2e0f0;
  --clr-text-muted: #9896b8;
  --clr-text-dim: #6b6a87;

  /* Light Mode */
  --clr-bg-light: #f8f7ff;
  --clr-bg-card-light: #ffffff;
  --clr-border-light: #e9e7f5;
  --clr-text-light: #1a1830;
  --clr-muted-light: #6b6a87;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Layout */
  --container: 1200px;
  --container-sm: 800px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .5);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, .3);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 150ms;
  --dur-med: 250ms;
  --dur-slow: 400ms;
}

/* ── 2. Reset & Base ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
}

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

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

a:hover {
  color: var(--clr-primary-dk);
}

a:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  background: var(--clr-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

/* ── 3. Container / Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-24) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  margin-bottom: var(--space-8);
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--space-4);
}

.section-lead {
  font-size: 18px;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── 4. Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, .4);
}

.btn-primary:hover {
  background: var(--clr-primary-dk);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, .5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border-md);
}

.btn-outline:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
}

.btn-white {
  background: #fff;
  color: var(--clr-primary);
  font-weight: 700;
}

.btn-white:hover {
  background: #f0edff;
  color: var(--clr-primary-dk);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: #fff;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── 5. Top Bar ───────────────────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, var(--clr-primary) 0%, #4f46e5 100%);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-cta {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--dur-fast);
}

.topbar-cta:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

/* ── 6. Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 14, 26, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--dur-med) var(--ease);
  padding: 0;
  height: 72px;
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  gap: var(--space-8);
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  font-size: 22px;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: #fff;
}

.logo-tagline {
  font-size: 9px;
  color: var(--clr-primary);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: -2px;
}

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

/* Nav Menu */
.primary-nav {
  flex: 1;
  display: flex !important;
  align-items: center !important;
  height: 100%;
  margin-top: 4px;
  /* Visual nudge to middle */
}

.nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 4px;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
}

.nav-menu li a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text-muted);
  border-radius: 99px;
  transition: all var(--dur-fast) var(--ease);
  line-height: 1;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  /* Visual nudge */
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
}

.lang-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  border: 1px solid transparent;
  transition: all var(--dur-fast);
}

.lang-btn:hover,
.lang-btn.lang-active {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  background: var(--clr-primary-lt);
}

/* Search Toggle */
.search-toggle,
.search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.search-toggle:hover,
.search-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* Cart Icon */
.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.cart-icon-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 17px;
  height: 17px;
  background: var(--clr-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  transform: scale(0);
  transition: transform var(--dur-fast) var(--ease);
}

.cart-count.has-items {
  transform: scale(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}

.hamburger:hover {
  background: rgba(255, 255, 255, .08);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Search Drawer */
.search-drawer {
  background: var(--clr-bg-card);
  border-top: 1px solid var(--clr-border);
  padding: 16px 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--dur-med) var(--ease);
  pointer-events: none;
}

.search-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.search-form-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-input {
  flex: 1;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border-md);
  border-radius: var(--radius-md);
  color: #fff;
  padding: 10px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color var(--dur-fast);
}

.search-input:focus {
  border-color: var(--clr-primary);
}

/* ── 7. Mini Cart ─────────────────────────────────────────────────────────── */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
}

.mini-cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 100dvh;
  background: var(--clr-bg-card);
  border-left: 1px solid var(--clr-border);
  z-index: 160;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mini-cart.open {
  transform: translateX(0);
}

#stx-mini-cart-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--clr-border);
}

.mc-title {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.mc-count {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.mc-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mc-item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--clr-bg);
}

.mc-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mc-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.mc-item-price {
  font-size: 13px;
  color: var(--clr-primary);
  font-weight: 600;
}

.mc-item-qty {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.mc-remove {
  color: var(--clr-text-dim);
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--dur-fast), background var(--dur-fast);
}

.mc-remove:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, .1);
}

.mc-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--clr-border);
}

.mc-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
}

.mc-total strong {
  color: var(--clr-primary);
  font-size: 18px;
}

.mc-actions {
  display: flex;
  gap: 10px;
}

.mc-actions .btn {
  flex: 1;
}

.mc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  padding: 40px 24px;
  text-align: center;
  color: var(--clr-text-muted);
}

.mc-empty-icon {
  font-size: 48px;
  opacity: .4;
}

.mc-empty p {
  font-size: 15px;
}

/* ── 8. Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--clr-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--clr-border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  opacity: .3;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(124, 58, 237, .25);
  top: -200px;
  left: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(79, 70, 229, .2);
  bottom: -100px;
  right: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, .15);
  border: 1px solid rgba(124, 58, 237, .4);
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--clr-text-muted);
  max-width: 680px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero-stat {
  padding: 12px 32px;
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border-md);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-value small {
  font-size: 16px;
  color: var(--clr-primary);
  margin-left: 2px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Terminal Demo */
.hero-terminal {
  max-width: 620px;
  margin: 0 auto;
  background: #1a1830;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid var(--clr-border);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.terminal-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-dim);
  font-family: var(--font-mono);
}

.terminal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.terminal-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-label {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--clr-text-muted);
  min-width: 130px;
  text-align: left;
}

.t-before {
  color: #f87171;
}

.t-after {
  color: #4ade80;
}

.t-bar-wrap {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  overflow: hidden;
}

.t-bar {
  height: 100%;
  border-radius: 999px;
  transition: width 1s var(--ease);
}

.t-bar-before {
  background: linear-gradient(90deg, #f87171, #ef4444);
}

.t-bar-after {
  background: linear-gradient(90deg, #4ade80, #22c55e);
}

.t-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

.t-slow {
  color: #f87171;
}

.t-fast {
  color: #4ade80;
}

/* ── 9. Trust Bar ─────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--clr-bg-card);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 13px;
  color: var(--clr-text-dim);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo {
  font-size: 13px;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.trust-sep {
  color: var(--clr-border-md);
}

/* ── 10. Steps ────────────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--clr-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.step-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.step-card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-glow);
}

.step-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 800;
  color: rgba(124, 58, 237, .15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: var(--space-4);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-3);
}

.step-card p {
  color: var(--clr-text-muted);
  font-size: 15px;
}

/* ── 11. Features ─────────────────────────────────────────────────────────── */
.features-section {
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-card) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.feature-card {
  display: flex;
  gap: 16px;
  background: var(--clr-bg-card-lt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--dur-med), transform var(--dur-fast);
}

.feature-card:hover {
  border-color: var(--clr-primary);
  transform: translateY(-2px);
}

.feature-card.feature-premium {
  border-color: rgba(124, 58, 237, .3);
  background: rgba(124, 58, 237, .06);
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-body {
  flex: 1;
}

.feature-body h3 {
  font-size: 16px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-body p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.badge-premium {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
}

.badge-free {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(74, 222, 128, .15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, .3);
}

/* ── 12. Compare Table ────────────────────────────────────────────────────── */
.perf-compare {
  background: var(--clr-bg);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.compare-table thead th {
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--clr-bg-card);
}

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

.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, .02);
}

.col-highlight {
  background: rgba(124, 58, 237, .08) !important;
  border-left: 2px solid var(--clr-primary);
  border-right: 2px solid var(--clr-primary);
}

.compare-table tbody tr:last-child .col-highlight {
  border-bottom: 2px solid var(--clr-primary);
}

.col-bad {
  color: #f87171;
}

.col-med {
  color: #fbbf24;
}

.col-good {
  color: #4ade80;
  font-weight: 600;
}

/* ── 13. Pricing ──────────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--clr-bg-card);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--clr-bg-card-lt);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.pricing-card:hover {
  border-color: var(--clr-border-md);
}

.pricing-featured {
  border-color: var(--clr-primary);
  background: rgba(124, 58, 237, .08);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-text-muted);
  display: block;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}

.price-period {
  font-size: 14px;
  color: var(--clr-text-muted);
}

.pricing-tagline {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-6);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-6);
}

.pricing-features li {
  font-size: 14px;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-check {
  color: #4ade80;
  font-weight: 700;
}

.feat-check-premium {
  color: #a78bfa;
}

.pricing-action {
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-top: var(--space-6);
}

/* ── 14. Testimonials ─────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--clr-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color var(--dur-med);
}

.testimonial-card:hover {
  border-color: var(--clr-primary);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  font-size: 32px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--clr-text-muted);
}

/* ── 15. Blog Grid ────────────────────────────────────────────────────────── */
.blog-preview-section {
  background: var(--clr-bg-card);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.blog-card {
  background: var(--clr-bg-card-lt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--dur-med), transform var(--dur-fast);
}

.blog-card:hover {
  border-color: var(--clr-primary);
  transform: translateY(-3px);
}

.blog-card-img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
  padding: 3px 10px;
  border-radius: 999px;
}

.blog-date {
  font-size: 12px;
  color: var(--clr-text-dim);
}

.blog-card-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-title a {
  color: #fff;
}

.blog-card-title a:hover {
  color: var(--clr-primary);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.blog-read-time {
  font-size: 12px;
  color: var(--clr-text-dim);
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-primary);
}

.blog-read-more:hover {
  color: #a78bfa;
}

/* ── 16. Final CTA ────────────────────────────────────────────────────────── */
.final-cta-section {
  background: var(--clr-bg);
}

.final-cta-inner {
  position: relative;
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: linear-gradient(135deg, rgba(124, 58, 237, .2) 0%, rgba(79, 70, 229, .15) 100%);
  border: 1px solid rgba(124, 58, 237, .3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124, 58, 237, .2), transparent);
  pointer-events: none;
}

.final-cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.final-cta-inner p {
  font-size: 18px;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 17. Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg-card);
  border-top: 1px solid var(--clr-border);
}

.footer-top {
  padding: var(--space-16) 0 var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-tagline {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--clr-text-muted);
  transition: color var(--dur-fast);
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Payment Badges */
.payment-badges {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-5);
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border-md);
  color: var(--clr-text-muted);
}

.paypal-badge {
  color: #1565c0;
  border-color: rgba(21, 101, 192, .3);
  background: rgba(21, 101, 192, .08);
}

.qris-badge {
  color: #15803d;
  border-color: rgba(21, 128, 61, .3);
  background: rgba(21, 128, 61, .08);
}

/* Social */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.social-link:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: var(--clr-text-dim);
}

.footer-copy a {
  color: var(--clr-text-dim);
}

.footer-copy a:hover {
  color: var(--clr-primary);
}

.footer-legal-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-legal-menu a {
  font-size: 13px;
  color: var(--clr-text-dim);
}

.footer-legal-menu a:hover {
  color: var(--clr-primary);
}

/* Back to Top */
.back-to-top {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--clr-bg-card-lt);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

/* ── 18. Content Pages ────────────────────────────────────────────────────── */
.page-container {
  padding-top: var(--space-8);
  padding-bottom: var(--space-16);
}

.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-10);
  align-items: start;
}

/* Archive / Page Headers */
.archive-header,
.page-header {
  margin-bottom: var(--space-10);
}

.archive-title,
.page-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--space-3);
}

.archive-desc {
  font-size: 17px;
  color: var(--clr-text-muted);
}

/* Post List Items */
.post-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.post-list-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-6);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-med), transform var(--dur-fast);
}

.post-list-item:hover {
  border-color: var(--clr-primary);
  transform: translateY(-2px);
}

.post-list-img-wrap {
  display: block;
}

.post-list-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-list-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
  padding: 3px 10px;
  border-radius: 999px;
}

.post-date,
.post-read-time {
  font-size: 12px;
  color: var(--clr-text-dim);
}

.post-list-title {
  font-size: 22px;
  margin: 0;
}

.post-list-title a {
  color: #fff;
}

.post-list-title a:hover {
  color: var(--clr-primary);
}

.post-list-excerpt {
  color: var(--clr-text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.read-more-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-primary);
  align-self: flex-start;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 80px;
}

.widget {
  margin-bottom: var(--space-6);
}

.widget-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--clr-border);
}

/* Pagination */
.pagination {
  margin-top: var(--space-10);
}

.pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination ul li a,
.pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.pagination ul li a:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

.pagination ul li .current {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

/* ── 19. Single Article ───────────────────────────────────────────────────── */
.single-article {
  max-width: 860px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: var(--space-8);
}

.article-meta-top {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-4);
}

.article-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
  padding: 4px 12px;
  border-radius: 999px;
}

.article-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: var(--space-5);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.article-author a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 14px;
  font-weight: 600;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.article-date,
.article-read-time {
  font-size: 13px;
  color: var(--clr-text-dim);
}

.article-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-8);
}

.article-hero-img img {
  width: 100%;
}

/* Article Body with TOC */
.article-body-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 90px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-size: 13px;
}

.article-toc h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}

#toc-nav a {
  display: block;
  padding: 5px 0;
  color: var(--clr-text-muted);
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: all var(--dur-fast);
}

#toc-nav a:hover,
#toc-nav a.active {
  color: var(--clr-primary);
  border-left-color: var(--clr-primary);
}

/* Article content typography */
.entry-content {
  color: var(--clr-text);
}

.entry-content h2 {
  font-size: 28px;
  margin: 2em 0 .75em;
  padding-top: 1em;
}

.entry-content h3 {
  font-size: 22px;
  margin: 1.8em 0 .6em;
}

.entry-content h4 {
  font-size: 18px;
  margin: 1.5em 0 .5em;
}

.entry-content p {
  margin-bottom: 1.4em;
  font-size: 17px;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.4em 1.5em;
}

.entry-content li {
  margin-bottom: .5em;
  font-size: 16px;
}

.entry-content blockquote {
  border-left: 4px solid var(--clr-primary);
  background: rgba(124, 58, 237, .08);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--clr-text-muted);
}

.entry-content pre,
.entry-content code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: #1a1830;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
}

.entry-content pre {
  padding: 16px 20px;
  overflow-x: auto;
  margin: 1.5em 0;
}

.entry-content code {
  padding: 2px 6px;
}

.entry-content pre code {
  padding: 0;
  background: none;
  border: none;
}

.entry-content img {
  border-radius: var(--radius-md);
  margin: 1.5em 0;
}

.entry-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 2em 0;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.entry-content th,
.entry-content td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
}

.entry-content th {
  background: var(--clr-bg-card);
}

/* Article Footer */
.article-footer {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
}

.article-tag {
  padding: 4px 12px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.article-tag:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  font-size: 14px;
  font-weight: 700;
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.share-btn:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.author-box-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
}

.author-box-name {
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}

.author-box-bio {
  font-size: 14px;
  color: var(--clr-text-muted);
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.post-navigation a {
  display: block;
  padding: 16px 20px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--clr-text-muted);
  transition: all var(--dur-fast);
}

.post-navigation a:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.nav-next {
  text-align: right;
}

/* Related Posts */
.related-posts {
  margin-top: var(--space-12);
}

.related-posts h3 {
  font-size: 22px;
  margin-bottom: var(--space-6);
}

/* ── 20. Error 404 ────────────────────────────────────────────────────────── */
.error-404-wrap {
  text-align: center;
  padding: var(--space-24) 0;
}

.error-code {
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  color: rgba(124, 58, 237, .2);
  margin-bottom: var(--space-4);
}

.error-404-wrap h1 {
  font-size: 40px;
  margin-bottom: var(--space-4);
}

.error-404-wrap p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-8);
}

/* ── 21. Shop ─────────────────────────────────────────────────────────────── */
.shop-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.shop-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--space-3);
}

.shop-desc {
  color: var(--clr-text-muted);
  font-size: 17px;
}

.shop-features-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
  font-size: 13px;
  color: var(--clr-text-muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: var(--space-6);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
}

.breadcrumb-list li {
  color: var(--clr-text-dim);
}

.breadcrumb-list li a {
  color: var(--clr-text-muted);
}

.breadcrumb-list li a:hover {
  color: var(--clr-primary);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  opacity: .4;
}

/* QRIS Payment Field */
.qris-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.qris-wallet-badge {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(21, 128, 61, .1);
  border: 1px solid rgba(21, 128, 61, .3);
  color: #4ade80;
  border-radius: 999px;
  font-weight: 600;
}

.qris-note {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.qris-receipt-wrap {
  text-align: center;
  padding: var(--space-8);
}

.qris-receipt-wrap h3 {
  margin-bottom: var(--space-4);
}

.qris-static-qr {
  max-width: 280px;
  margin: 0 auto var(--space-4);
  border: 4px solid #fff;
  border-radius: var(--radius-lg);
}

.qris-order-id,
.qris-amount {
  margin-top: var(--space-2);
  font-size: 15px;
  color: var(--clr-text-muted);
}

/* ── 22. Utilities ────────────────────────────────────────────────────────── */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ── 23. Responsive ───────────────────────────────────────────────────────── */
/* header-cta responsive handled inline above */

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 0 60px;
    min-height: auto;
  }

  .steps-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-featured {
    transform: scale(1);
  }

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

  .content-sidebar-wrap {
    grid-template-columns: 1fr;
  }

  .post-list-item {
    grid-template-columns: 1fr;
  }

  .article-body-wrap {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .compare-table {
    font-size: 13px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
  }
}

@media (max-width: 768px) {
  .primary-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 68px;
    background: rgba(15, 14, 26, .97);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 24px;
    overflow-y: auto;
  }

  .primary-nav.mobile-open {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 4px;
  }

  .nav-menu li a {
    font-size: 18px;
    padding: 12px 16px;
  }

  .hamburger {
    display: flex;
  }

  .topbar-text {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0;
  }

  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-stat {
    padding: 12px 0;
  }

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

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

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

  .post-navigation {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .mini-cart {
    width: 100vw;
    max-width: 100vw;
  }

  .hero-terminal {
    margin: 0 -16px;
    border-radius: 0;
    width: calc(100% + 32px);
    max-width: none;
  }
  
  .terminal-body {
    padding: 16px 12px;
  }
  
  .t-label {
    min-width: 90px;
    font-size: 11px;
  }
  
  .t-value {
    min-width: 50px;
    font-size: 11px;
  }
  
  .terminal-row {
    gap: 8px;
  }
  
  .hero-title {
    font-size: clamp(32px, 8vw, 80px);
  }
  
  .compare-table-wrap {
    margin: 0 -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: calc(100% + 32px);
  }
}

/* ── 24. Checkout Page ────────────────────────────────────────────────────── */
.stx-checkout-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-8) 0 var(--space-16);
}

.checkout-title {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: var(--space-8);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-8);
  align-items: start;
}

.co-section {
  margin-bottom: var(--space-6);
}

.co-section-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-4);
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
}

.form-group .req {
  color: #ef4444;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--clr-bg-card-lt);
  border: 1.5px solid var(--clr-border-md);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-sans);
  transition: border-color var(--dur-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, .15);
}

.form-hint {
  font-size: 12px;
  color: var(--clr-text-dim);
}

/* Payment methods */
.co-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.co-pm {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--clr-bg-card-lt);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.co-pm:hover {
  border-color: var(--clr-border-md);
}

.co-pm-selected {
  border-color: var(--clr-primary);
  background: rgba(124, 58, 237, .06);
}

.co-pm input[type="radio"] {
  accent-color: var(--clr-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.co-pm-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.co-pm-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.co-pm-text strong {
  font-size: 15px;
  color: #fff;
}

.co-pm-text span {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.co-submit-btn {
  margin-top: var(--space-4);
  padding: 16px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.co-trust {
  text-align: center;
  font-size: 13px;
  color: var(--clr-text-dim);
  margin-top: var(--space-3);
}

/* Order summary box */
.co-summary-box {
  background: var(--clr-bg-card-lt);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: sticky;
  top: 90px;
}

.co-summary-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--clr-border);
}

.co-item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-5);
}

.co-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--clr-text);
}

.co-total-row {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--clr-border);
  font-size: 16px;
  margin-bottom: var(--space-5);
}

.co-total-row strong {
  color: var(--clr-primary);
  font-size: 20px;
}

.co-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-text-muted);
}

/* Empty cart */
.stx-checkout-empty {
  text-align: center;
  padding: var(--space-16) 0;
}

.co-empty-icon {
  font-size: 60px;
  opacity: .4;
  margin-bottom: var(--space-4);
}

.stx-checkout-empty h2 {
  font-size: 28px;
  margin-bottom: var(--space-4);
}

/* Order confirm page */
.stx-order-confirm {
  text-align: center;
  padding: var(--space-10) 0 var(--space-16);
}

.co-confirm-icon {
  font-size: 64px;
  margin-bottom: var(--space-4);
}

.stx-order-confirm h1 {
  font-size: clamp(24px, 4vw, 38px);
  margin-bottom: var(--space-4);
}

.co-confirm-sub {
  font-size: 17px;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-8);
}

.co-qris-img {
  max-width: 260px;
  margin: var(--space-6) auto;
  border: 4px solid #fff;
  border-radius: var(--radius-lg);
  display: block;
}

.co-qris-amount {
  font-size: 20px;
  margin-bottom: var(--space-4);
}

.co-qris-note {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-6);
}

.co-paypal-btn {
  display: inline-flex;
  margin: var(--space-6) 0;
}

.co-order-details {
  max-width: 520px;
  margin: var(--space-8) auto;
  text-align: left;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.co-order-details h3 {
  font-size: 16px;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--clr-border);
}

.co-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.co-order-table th,
.co-order-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top;
}

.co-order-table th {
  color: var(--clr-text-muted);
  width: 100px;
  font-weight: 600;
}

.co-order-table tr:last-child th,
.co-order-table tr:last-child td {
  border-bottom: none;
}

/* Mini-cart items (updated layout) */
.mc-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mc-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mc-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.mc-item-price {
  font-size: 13px;
  color: var(--clr-primary);
}

/* Checkout responsive */
@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .co-summary-box {
    position: static;
    order: -1;
  }
}

/* ── 25. Animations ───────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp .5s var(--ease) both;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

/* ── Download Modal ──────────────────────────────────────────────────────────── */
.stx-dl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 24, .75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.stx-dl-overlay.open {
  opacity: 1;
  visibility: visible;
}
.stx-dl-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  transform: translateY(24px) scale(.97);
  transition: transform .28s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.stx-dl-overlay.open .stx-dl-modal {
  transform: translateY(0) scale(1);
}
.stx-dl-modal-head {
  background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
  padding: 32px 36px 28px;
  text-align: center;
  position: relative;
}
.stx-dl-modal-icon { font-size: 40px; line-height: 1; margin-bottom: 10px; }
.stx-dl-modal-head h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
}
.stx-dl-modal-head p {
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.5;
}
.stx-dl-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  line-height: 1;
}
.stx-dl-modal-close:hover { background: rgba(255,255,255,.3); }
.stx-dl-modal-body { padding: 28px 36px 32px; }
.stx-dl-field { margin-bottom: 16px; }
.stx-dl-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.stx-dl-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  background: #f8fafc;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
  outline: none;
}
.stx-dl-field input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
  background: #fff;
}
.stx-dl-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #4338ca, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(67,56,202,.35);
}
.stx-dl-submit:hover:not(:disabled) { opacity: .92; transform: translateY(-1px); }
.stx-dl-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.stx-dl-msg {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  display: none;
}
.stx-dl-msg.success { background: #dcfce7; color: #15803d; display: block; }
.stx-dl-msg.error   { background: #fee2e2; color: #b91c1c; display: block; }
.stx-dl-success-state { display: none; padding: 28px 36px 36px; text-align: center; }
.stx-dl-success-state.show { display: block; }
.stx-dl-success-icon { font-size: 52px; margin-bottom: 14px; }
.stx-dl-success-state h3 { font-size: 18px; font-weight: 800; color: #111827; margin: 0 0 8px; }
.stx-dl-success-state p { font-size: 14px; color: #6b7280; margin: 0 0 20px; line-height: 1.6; }
.stx-dl-direct-link {
  display: inline-block;
  background: #f3f4f6;
  color: #4338ca;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 7px;
  transition: background .15s;
  border: 1px solid #e5e7eb;
}
.stx-dl-direct-link:hover { background: #ede9fe; color: #4338ca; }
/* ── Global Language Switcher ──────────────────────────────────────────── */
.lang-id { display: none !important; }
[data-stx-lang="id"] .lang-id { display: block !important; }
[data-stx-lang="id"] .lang-en { display: none !important; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 3px;
}
.lang-sw-btn {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .15s, color .15s;
  letter-spacing: .04em;
}
.lang-sw-btn[aria-pressed="true"] {
  background: var(--clr-primary);
  color: #fff;
}

/* Inline spans inside headings/paragraphs stay inline when shown */
[data-stx-lang="id"] span.lang-id { display: inline !important; }
[data-stx-lang="id"] p.lang-id    { display: block !important; }
