/* ==========================================================================
   VORID - PREMIUM DIGITAL STORE DESIGN SYSTEM
   Brand Guide Compliant: Indigo Obsidian, Paper Lilac, VORID Indigo & Aurum
   Typography: Plus Jakarta Sans & Inter
   ========================================================================== */

:root {
  /* =========================================
     DARK MODE TOKENS (Indigo Obsidian & Aurum)
     ========================================= */
  --bg-primary: #171428;        /* Indigo Obsidian Base */
  --bg-secondary: #1E1A33;      /* Deep Indigo Slate */
  --bg-tertiary: #272242;       /* Elevated Indigo Container */
  --bg-card: rgba(30, 26, 51, 0.88);
  --bg-card-hover: rgba(43, 37, 72, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-heavy: rgba(23, 20, 40, 0.94);

  --text-primary: #FAF8FF;      /* Paper Lilac Tint White */
  --text-secondary: #A5A0C8;    /* Soft Indigo Muted */
  --text-muted: #746E9B;        /* Muted Indigo Slate */
  --text-inverse: #171428;

  --accent-purple: #7C3AED;
  --accent-indigo: #5B3EE8;     /* VORID Indigo Vibrant */
  --accent-indigo-dark: #3D2A9E;/* VORID Indigo Deep */
  --accent-gold: #F59B08;       /* Aurum Gold Base */
  --accent-gold-light: #FFC24B; /* Aurum Gold Light */
  --accent-cyan: #06B6D4;
  --accent-pink: #EC4899;
  --accent-emerald: #10B981;
  --accent-amber: #F59B08;
  --accent-rose: #F43F5E;

  --gradient-brand: linear-gradient(135deg, #5B3EE8 0%, #3D2A9E 100%);
  --gradient-aurum: linear-gradient(135deg, #FFC24B 0%, #F59B08 100%);
  --gradient-accent: linear-gradient(135deg, #FFC24B 0%, #5B3EE8 100%);
  --gradient-amber: linear-gradient(135deg, #FFC24B 0%, #F59B08 100%);

  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(91, 62, 232, 0.55);
  --border-focus: #5B3EE8;

  /* Hero Section Variables - Dark */
  --hero-card-bg: linear-gradient(135deg, rgba(45, 31, 100, 0.65) 0%, rgba(23, 20, 40, 0.96) 100%);
  --hero-card-border: rgba(91, 62, 232, 0.4);
  --hero-card-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 25px rgba(91, 62, 232, 0.2);
  --hero-pill-bg: rgba(91, 62, 232, 0.18);
  --hero-pill-border: rgba(91, 62, 232, 0.45);
  --hero-pill-text: #D2C8FE;
  --hero-title-akun: #FAF8FF;
  --hero-title-premium-grad: linear-gradient(135deg, #FFC24B 0%, #F59B08 40%, #5B3EE8 100%);
  --hero-subtitle-color: #D2C8FE;
  --hero-desc-color: #A5A0C8;
  
  --hero-price-bg: linear-gradient(135deg, #FFC24B 0%, #F59B08 100%);
  --hero-price-border: transparent;
  --hero-price-label: #171428;
  --hero-price-amount: #171428;
  --hero-price-desc: #272044;
  --hero-price-border-left: rgba(23, 20, 40, 0.25);

  --bento-card-bg: rgba(30, 26, 51, 0.88);
  --bento-card-border: rgba(255, 255, 255, 0.09);
  --bento-icon-bg: rgba(91, 62, 232, 0.16);
  --bento-icon-border: rgba(91, 62, 232, 0.35);
  --bento-title: #FAF8FF;
  --bento-desc: #A5A0C8;

  --trust-alert-bg: rgba(245, 155, 8, 0.12);
  --trust-alert-border: rgba(245, 155, 8, 0.4);
  --trust-alert-title: #FFC24B;
  --trust-alert-desc: #D4D0ED;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.35), 0 2px 6px -1px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(91, 62, 232, 0.25);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-max: 1220px;
  --header-height: 74px;
}

/* ==========================================================================
   LIGHT MODE TOKENS (Paper Lilac, VORID Indigo & Aurum)
   ========================================================================== */
[data-theme="light"] {
  --bg-primary: #FAF8FF;        /* Paper Lilac Base */
  --bg-secondary: #FFFFFF;      /* Pure White */
  --bg-tertiary: #F2EDFD;       /* Soft Lilac Container */
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8F5FF;
  --bg-glass: rgba(250, 248, 255, 0.94);
  --bg-glass-heavy: rgba(250, 248, 255, 0.97);

  --text-primary: #171428;      /* Indigo Obsidian (Deep High Contrast) */
  --text-secondary: #4A4568;    /* Indigo Slate */
  --text-muted: #746E9B;        /* Muted Lilac Slate */
  --text-inverse: #FAF8FF;

  --accent-purple: #7C3AED;
  --accent-indigo: #5B3EE8;
  --accent-indigo-dark: #3D2A9E;
  --accent-gold: #F59B08;
  --accent-gold-light: #FFC24B;
  --accent-cyan: #0284C7;
  --accent-pink: #DB2777;
  --accent-emerald: #059669;
  --accent-amber: #D97706;
  --accent-rose: #E11D48;

  --gradient-brand: linear-gradient(135deg, #5B3EE8 0%, #3D2A9E 100%);
  --gradient-aurum: linear-gradient(135deg, #FFC24B 0%, #F59B08 100%);
  --gradient-accent: linear-gradient(135deg, #F59B08 0%, #5B3EE8 100%);
  --gradient-amber: linear-gradient(135deg, #FFC24B 0%, #F59B08 100%);

  --border-subtle: #E8E2F7;     /* Soft Lilac Border */
  --border-hover: #5B3EE8;
  --border-focus: #3D2A9E;

  /* Hero Section Variables - Light */
  --hero-card-bg: #FFFFFF;
  --hero-card-border: #DED6FB;
  --hero-card-shadow: 0 20px 40px -15px rgba(91, 62, 232, 0.12), 0 4px 12px rgba(23, 20, 40, 0.04);
  --hero-pill-bg: #EFEAFE;
  --hero-pill-border: #D6CAFB;
  --hero-pill-text: #3D2A9E;
  --hero-title-akun: #171428;
  --hero-title-premium-grad: linear-gradient(135deg, #5B3EE8 0%, #3D2A9E 45%, #F59B08 100%);
  --hero-subtitle-color: #5B3EE8;
  --hero-desc-color: #4A4568;

  --hero-price-bg: linear-gradient(135deg, #FFF8EB 0%, #FEF0D6 100%);
  --hero-price-border: #F59B08;
  --hero-price-label: #9A5B00;
  --hero-price-amount: #7A4500;
  --hero-price-desc: #7A4500;
  --hero-price-border-left: rgba(154, 91, 0, 0.35);

  --bento-card-bg: #FFFFFF;
  --bento-card-border: #E8E2F7;
  --bento-icon-bg: #EFEAFE;
  --bento-icon-border: #D6CAFB;
  --bento-title: #171428;
  --bento-desc: #4A4568;

  --trust-alert-bg: #FFF8EB;
  --trust-alert-border: #FED7AA;
  --trust-alert-title: #9A5B00;
  --trust-alert-desc: #4A4568;

  --shadow-sm: 0 1px 3px rgba(23, 20, 40, 0.06);
  --shadow-md: 0 6px 20px rgba(23, 20, 40, 0.08);
  --shadow-lg: 0 16px 36px rgba(91, 62, 232, 0.12);
  --shadow-card: 0 1px 4px rgba(23, 20, 40, 0.04), 0 0 0 1px rgba(232, 226, 247, 0.6);
}
  --trust-alert-desc: #475569;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(79, 70, 229, 0.12);
  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   BASE RESETS & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* Ambient Background Lights */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-blob-1 {
  position: absolute;
  top: -10%;
  left: 15%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatBlob 18s infinite alternate ease-in-out;
}

.ambient-blob-2 {
  position: absolute;
  top: 35%;
  right: -5%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: floatBlob2 22s infinite alternate ease-in-out;
}

.ambient-blob-3 {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: floatBlob 20s infinite alternate ease-in-out;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-size: 36px 36px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

[data-theme="light"] .grid-pattern {
  background-image: 
    linear-gradient(to right, rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
}

[data-theme="light"] .ambient-bg {
  opacity: 0.45;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

[data-theme="light"] .text-gradient {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #FFFFFF !important;
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.35);
}

[data-theme="light"] .btn-primary {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  color: #FFFFFF !important;
}

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

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary) !important;
  border: 1.5px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-indigo);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #FFFFFF !important;
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.btn-lg {
  font-size: 1.02rem;
  padding: 0.88rem 1.75rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   NAVIGATION BAR & ADAPTIVE STORE LOGO
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid var(--border-subtle);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  height: 52px;
}

/* Single Adaptive Brand Logo SVG */
.brand-logo-svg {
  height: 48px;
  width: auto;
  max-width: 250px;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo-svg:hover {
  transform: scale(1.03);
}

/* VORID Logo Styling - Dark Mode (Default) */
.vorid-mark-glow {
  fill: #5B3EE8;
  fill-opacity: 0.22;
  transition: fill 0.25s ease, fill-opacity 0.25s ease;
}

.vorid-gold-peak {
  fill: url(#voridGold);
  transition: fill 0.25s ease;
}

.vorid-indigo-base {
  fill: url(#voridIndigo);
  transition: fill 0.25s ease;
}

.vorid-wordmark-text {
  fill: #FAF8FF !important;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 3.5px;
  transition: fill 0.25s ease;
}

.vorid-tagline-text {
  fill: #A5A0C8 !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 7.8px;
  letter-spacing: 2.8px;
  transition: fill 0.25s ease;
}

/* VORID Logo Styling - Light Mode */
[data-theme="light"] .vorid-mark-glow {
  fill: #5B3EE8;
  fill-opacity: 0.12;
}

[data-theme="light"] .vorid-wordmark-text {
  fill: #171428 !important; /* Deep Indigo Obsidian */
}

[data-theme="light"] .vorid-tagline-text {
  fill: #5B3EE8 !important; /* VORID Indigo Tagline */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent-indigo);
  border-radius: var(--radius-full);
}

[data-theme="light"] .nav-link.active::after {
  background: #4F46E5;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease;
}

.status-badge-live:hover {
  transform: translateY(-1px);
}

/* Status Online (Green / Emerald) */
.status-badge-live.status-online {
  background: rgba(16, 185, 129, 0.12);
  border: 1.5px solid rgba(16, 185, 129, 0.38);
  color: #059669;
}
[data-theme="dark"] .status-badge-live.status-online {
  color: #10B981;
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.45);
}

/* Status Break / Prayer (Aurum / Amber) */
.status-badge-live.status-break {
  background: rgba(245, 155, 8, 0.14);
  border: 1.5px solid rgba(245, 155, 8, 0.45);
  color: #B45309;
}
[data-theme="dark"] .status-badge-live.status-break {
  color: #FFC24B;
  background: rgba(245, 155, 8, 0.18);
  border-color: rgba(245, 155, 8, 0.5);
}

/* Status Offline (Muted Slate) */
.status-badge-live.status-offline {
  background: rgba(148, 163, 184, 0.12);
  border: 1.5px solid rgba(148, 163, 184, 0.35);
  color: #64748B;
}
[data-theme="dark"] .status-badge-live.status-offline {
  color: #94A3B8;
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.35);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.pulse-dot-green {
  background-color: #10B981;
}
.pulse-dot-green::after {
  background-color: rgba(16, 185, 129, 0.5);
  animation: pulseRing 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.pulse-dot-amber {
  background-color: #F59B08;
}
.pulse-dot-amber::after {
  background-color: rgba(245, 155, 8, 0.55);
  animation: pulseRing 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.pulse-dot-slate {
  background-color: #94A3B8;
}
.pulse-dot-slate::after {
  background-color: rgba(148, 163, 184, 0.4);
  animation: pulseRing 3.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.theme-toggle-btn, .sound-toggle-btn {
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover, .sound-toggle-btn:hover {
  border-color: var(--accent-indigo);
  transform: scale(1.06);
}

/* ==========================================================================
   HERO SECTION (ADAPTIVE BENTO GRID)
   ========================================================================== */
.hero-section {
  padding: 3rem 0 2rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-main-card {
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  background: var(--hero-card-bg);
  border: 1.5px solid var(--hero-card-border);
  box-shadow: var(--hero-card-shadow);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--hero-pill-bg);
  border: 1.5px solid var(--hero-pill-border);
  padding: 0.38rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--hero-pill-text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--hero-title-akun);
  transition: color 0.25s ease;
}

.hero-title .text-gradient {
  background: var(--hero-title-premium-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--hero-subtitle-color);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--hero-desc-color);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.25s ease;
}

/* Price Tag */
.hero-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  background: var(--hero-price-bg);
  border: 1.5px solid var(--hero-price-border);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
  transition: all 0.25s ease;
}

.hero-price-tag .label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--hero-price-label);
  opacity: 0.95;
}

.hero-price-tag .amount {
  font-size: 1.65rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--hero-price-amount);
  line-height: 1.1;
}

.hero-price-tag .desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hero-price-desc);
  border-left: 1.5px solid var(--hero-price-border-left);
  padding-left: 0.85rem;
  line-height: 1.35;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Hero Side Bento */
.hero-side-bento {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
}

.bento-mini-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  background: var(--bento-card-bg);
  border: 1.5px solid var(--bento-card-border);
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

.bento-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  background: var(--bento-icon-bg);
  border: 1.5px solid var(--bento-icon-border);
  transition: all 0.25s ease;
}

.bento-info h4 {
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
  color: var(--bento-title);
  font-weight: 800;
  transition: color 0.25s ease;
}

.bento-info p {
  font-size: 0.86rem;
  color: var(--bento-desc);
  transition: color 0.25s ease;
  line-height: 1.45;
}

/* Trust Alert */
.trust-alert-card {
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--trust-alert-bg);
  border: 1.5px solid var(--trust-alert-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
}

.trust-alert-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.trust-alert-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--trust-alert-title);
  margin-bottom: 0.15rem;
  font-weight: 800;
  transition: color 0.25s ease;
}

.trust-alert-text p {
  font-size: 0.88rem;
  color: var(--trust-alert-desc);
  transition: color 0.25s ease;
}

/* ==========================================================================
   BEST DEALS SECTION
   ========================================================================== */
.best-deals-section {
  padding: 2.75rem 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-indigo);
  margin-bottom: 0.35rem;
  display: block;
}

[data-theme="light"] .section-tag {
  color: #4F46E5;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.best-deal-highlight-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.08));
  border: 2px solid rgba(99, 102, 241, 0.35);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

[data-theme="light"] .best-deal-highlight-card {
  background: linear-gradient(135deg, #F5F3FF 0%, #EEF2FF 100%);
  border-color: #C7D2FE;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.08);
}

.best-deal-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.app-monogram-circle {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.best-deal-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 800;
}

.deal-badge-star {
  background: #F59E0B;
  color: #0F172A;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.best-deal-info p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.best-deal-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.best-deal-price {
  text-align: right;
}

.best-deal-price .amount {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--accent-indigo);
  line-height: 1;
}

[data-theme="light"] .best-deal-price .amount {
  color: #4F46E5;
}

.best-deal-price .status-available {
  font-size: 0.78rem;
  font-weight: 800;
  color: #059669;
  display: block;
  margin-top: 0.35rem;
}

[data-theme="dark"] .best-deal-price .status-available {
  color: #10B981;
}

.best-deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.mini-deal-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .mini-deal-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.mini-deal-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-indigo);
  box-shadow: var(--shadow-md);
}

.mini-deal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.mini-deal-name {
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.mini-deal-dur {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.mini-deal-price {
  font-size: 1.3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--accent-indigo);
  margin-top: 0.85rem;
}

[data-theme="light"] .mini-deal-price {
  color: #4F46E5;
}

/* ==========================================================================
   CATALOG / PRICELIST
   ========================================================================== */
.catalog-section {
  padding: 3rem 0 4rem;
}

.catalog-controls {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.search-bar-wrap {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.25rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}

[data-theme="light"] .search-input {
  background: #FFFFFF;
  border-color: #E2E8F0;
  color: #0F172A;
}

.search-input:focus {
  border-color: var(--accent-indigo);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}

.category-pills-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.category-pills-row::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

[data-theme="light"] .filter-pill {
  background: #FFFFFF;
  border-color: #E2E8F0;
  color: #475569;
}

.filter-pill:hover {
  border-color: var(--accent-indigo);
  color: var(--text-primary);
}

.filter-pill.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #FFFFFF !important;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

[data-theme="light"] .filter-pill.active {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  color: #FFFFFF !important;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .product-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-icon-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.product-title-group h3 {
  font-size: 1.18rem;
  margin-bottom: 0.15rem;
  color: var(--text-primary);
  font-weight: 800;
}

.product-cat-tag {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.product-badge-pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(139, 92, 246, 0.14);
  color: var(--accent-indigo);
  border: 1px solid rgba(139, 92, 246, 0.35);
  white-space: nowrap;
}

[data-theme="light"] .product-badge-pill {
  background: #EEF2FF;
  color: #4338CA;
  border-color: #C7D2FE;
}

.product-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.15rem;
  line-height: 1.5;
}

/* Variant Selector */
.product-variants-wrap {
  margin-bottom: 1.25rem;
}

.variant-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.variant-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.variant-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.95rem;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

[data-theme="light"] .variant-option-row {
  background: #F8FAFC;
  border-color: #E2E8F0;
}

.variant-option-row:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-indigo);
}

.variant-option-row.selected {
  background: rgba(99, 102, 241, 0.14);
  border-color: var(--accent-indigo);
}

[data-theme="light"] .variant-option-row.selected {
  background: #EEF2FF;
  border-color: #6366F1;
}

.variant-name {
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.variant-price-tag {
  font-size: 0.95rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.status-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.status-badge.available {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

[data-theme="dark"] .status-badge.available {
  color: #10B981;
}

.status-badge.limited {
  background: rgba(245, 158, 11, 0.15);
  color: #D97706;
}

.status-badge.out_of_stock {
  background: rgba(239, 68, 68, 0.15);
  color: #DC2626;
}

.product-features-list {
  list-style: none;
  margin-bottom: 1.25rem;
  padding: 0.85rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
}

[data-theme="light"] .product-features-list {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.product-features-list li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.product-features-list li:last-child {
  margin-bottom: 0;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.price-display-col .price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
}

.price-display-col .price-amount {
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--accent-indigo);
}

[data-theme="light"] .price-display-col .price-amount {
  color: #4F46E5;
}

/* ==========================================================================
   QRIS PAYMENT SECTION
   ========================================================================== */
.qris-section {
  padding: 3rem 0;
}

.qris-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.qris-card {
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-subtle);
  position: relative;
  text-align: center;
}

[data-theme="light"] .qris-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.qris-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.qris-card-header .qris-logo-text {
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.qris-merchant-title {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.qris-nmid-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-tertiary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

[data-theme="light"] .qris-nmid-pill {
  background: #F1F5F9;
  color: #334155;
}

.qris-image-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qris-image-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.qris-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  margin: 0 auto;
}

.qris-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.payment-steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.25rem 1.45rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
}

[data-theme="light"] .step-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="light"] .step-number {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
}

.step-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
  font-weight: 800;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   WARRANTY SECTION
   ========================================================================== */
.warranty-section {
  padding: 3rem 0;
}

.warranty-rules-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.warranty-rule-card {
  padding: 1.25rem 1.75rem;
  display: grid;
  grid-template-columns: 65px 1.5fr 1fr 150px;
  align-items: center;
  gap: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
}

[data-theme="light"] .warranty-rule-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.warranty-badge-pill {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.14);
  border: 1.5px solid rgba(99, 102, 241, 0.35);
  color: var(--accent-indigo);
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .warranty-badge-pill {
  background: #EEF2FF;
  border-color: #C7D2FE;
  color: #4F46E5;
}

.warranty-dur-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.warranty-dur-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.warranty-prods {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.warranty-timeline-col {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.warranty-progress-track {
  flex-grow: 1;
  height: 7px;
  background: var(--border-subtle);
  border-radius: var(--radius-full);
  overflow: hidden;
}

[data-theme="light"] .warranty-progress-track {
  background: #E2E8F0;
}

.warranty-progress-bar {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
}

[data-theme="light"] .warranty-progress-bar {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
}

.warranty-arrow {
  color: var(--accent-indigo);
  font-weight: 800;
}

.warranty-guarantee-col {
  text-align: right;
}

.warranty-gt-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.warranty-gt-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-indigo);
  font-family: var(--font-heading);
}

[data-theme="light"] .warranty-gt-val {
  color: #4F46E5;
}

/* Warranty Calculator */
.warranty-calculator-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  margin-top: 1.75rem;
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .warranty-calculator-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.calc-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-control {
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.2s ease;
}

[data-theme="light"] .form-control {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0F172A;
}

.form-control:focus {
  border-color: var(--accent-indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.calc-result-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-subtle);
}

.calc-result-card.active {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.35);
}

.calc-result-card.expired {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.35);
}

.calc-status-tag {
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.calc-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.calc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.calc-detail-item .label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.calc-detail-item .value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

.calc-detail-item .value.highlight {
  color: var(--accent-indigo);
}

[data-theme="light"] .calc-detail-item .value.highlight {
  color: #4F46E5;
}

/* ==========================================================================
   BRAND STORY & PHILOSOPHY
   ========================================================================== */
.brand-story-section {
  padding: 3.5rem 0;
}

.brand-story-card {
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

[data-theme="light"] .brand-story-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF2FF 100%);
  border-color: #C7D2FE;
}

.brand-acronym-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.acronym-box {
  padding: 1.75rem 1.5rem;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

[data-theme="light"] .acronym-box {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: var(--shadow-sm);
}

.acronym-letter {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

[data-theme="light"] .acronym-letter {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.acronym-meaning {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.acronym-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.philosophy-quote {
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 800;
  color: #818CF8;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.4;
}

[data-theme="light"] .philosophy-quote {
  color: #4338CA;
}

/* ==========================================================================
   MOBILE STICKY DOCK & FLOATING WHATSAPP
   ========================================================================== */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1.5px solid var(--border-subtle);
  padding: 0.6rem 1rem;
  z-index: 99;
}

.dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.dock-item .dock-icon {
  font-size: 1.25rem;
}

.dock-item.active, .dock-item:hover {
  color: var(--accent-indigo);
}

[data-theme="light"] .dock-item.active, [data-theme="light"] .dock-item:hover {
  color: #4F46E5;
}

.dock-item.wa-pill {
  background: #25D366;
  color: #FFFFFF !important;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-weight: 800;
}

.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 98;
  background: #25D366;
  color: #FFFFFF !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-wa-btn:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF !important;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  transform: scale(0.95) translateY(15px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .modal-container {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--accent-rose);
  color: #FFFFFF;
}

.modal-header {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
  font-weight: 800;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.order-summary-box {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  margin-bottom: 1.25rem;
}

[data-theme="light"] .order-summary-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.order-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.order-summary-row strong {
  color: var(--text-primary);
}

.order-summary-row:last-child {
  margin-bottom: 0;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--border-subtle);
}

.order-total-price {
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--accent-indigo);
}

[data-theme="light"] .order-total-price {
  color: #4F46E5;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1.5px solid var(--accent-indigo);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-theme="light"] .toast {
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Site Footer */
.site-footer {
  border-top: 1.5px solid var(--border-subtle);
  background: var(--bg-secondary);
  padding: 3.5rem 0 5rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

[data-theme="light"] .site-footer {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & SMARTPHONES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .best-deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qris-grid {
    grid-template-columns: 1fr;
  }
  .brand-acronym-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 66px;
  }
  .nav-links {
    display: none;
  }
  .brand-logo-svg {
    height: 38px;
    max-width: 200px;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .best-deal-highlight-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .best-deal-right {
    width: 100%;
    justify-content: space-between;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .best-deals-grid {
    grid-template-columns: 1fr;
  }
  .warranty-rule-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: left;
  }
  .warranty-guarantee-col {
    text-align: left;
  }
  .calc-inputs-row {
    grid-template-columns: 1fr;
  }
  .calc-details-grid {
    grid-template-columns: 1fr;
  }
  .mobile-bottom-dock {
    display: block;
  }
  .floating-wa-btn {
    bottom: 5.2rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }
  .site-footer {
    padding-bottom: 7.5rem;
  }
}

/* ==========================================================================
   VORID SECURITY SHIELD & TRUST BADGES STYLES
   ========================================================================== */
.security-shield-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(91, 62, 232, 0.12);
  border: 1.5px solid rgba(91, 62, 232, 0.35);
  color: var(--accent-indigo);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.security-shield-btn:hover {
  background: var(--accent-indigo);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 62, 232, 0.3);
}

.security-trust-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px dashed rgba(16, 185, 129, 0.4);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #059669;
  margin-top: 0.75rem;
}
[data-theme="dark"] .security-trust-pill {
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
}

.security-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
  text-align: left;
}

.security-pillar-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.2s ease;
}
.security-pillar-card:hover {
  border-color: var(--accent-indigo);
  transform: translateY(-2px);
}
.security-pillar-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.security-pillar-card p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 0;
}

