/* ===== LANDING PAGE STYLESHEET — CETAK VOUCHER RUIJIE PRO ===== */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-glow: rgba(37, 99, 235, 0.25);
  
  --gold: #d97706;
  --gold-light: #fef3c7;
  --gold-glow: rgba(217, 119, 6, 0.25);

  --dark: #0f172a;
  --dark-surface: #1e293b;
  --dark-border: #334155;
  
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  
  --success: #10b981;
  --success-light: #ecfdf5;
  
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
}

.landing-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-badge-pro {
  font-size: 0.62rem;
  font-weight: 850;
  color: #2563eb;
  letter-spacing: 0.05em;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--text-secondary);
  transition: color 150ms ease;
}

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

.btn-app-launch {
  background: #0f172a;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 750;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-xs);
  transition: all 180ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-app-launch:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  text-align: center;
  overflow: hidden;
}

.hero-container {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary-light);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 750;
  padding: 0.35rem 0.95rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.hero-headline {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}

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

.btn-hero-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: all 200ms ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

.btn-hero-secondary {
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  font-weight: 750;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
}

.btn-hero-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.trust-item {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hero Mockup Preview Window */
.hero-mockup-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.mockup-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
  overflow: hidden;
  text-align: left;
}

.mockup-header {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.mockup-url-bar {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.2rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  width: 240px;
}

.mockup-content {
  padding: 1.5rem;
  background: #cbd5e1;
  position: relative;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.mockup-voucher-card {
  background: #ffffff;
  border: 1.5px dashed #94a3b8;
  border-radius: 4px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mv-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 750;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.3rem;
}

.mv-sn {
  background: #0f172a;
  color: #fff;
  padding: 1px 4px;
  border-radius: 2px;
}

.mv-code-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  padding: 0.4rem;
  text-align: center;
}

.mv-code-label {
  font-size: 0.52rem;
  font-weight: 800;
  color: #64748b;
}

.mv-code-val {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 0.88rem;
  color: #000;
}

.mv-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  font-weight: 700;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.3rem;
}

.mv-price {
  font-weight: 900;
  color: var(--primary);
}

.floating-mockup-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: floatBounce 3s infinite ease-in-out;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== SECTION COMMON ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 850;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-header-center h2 {
  font-size: 2.2rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.section-header-center p {
  font-size: 1.02rem;
  color: var(--text-secondary);
}

/* ===== 💰 KALKULATOR PENGHEMATAN BIAYA ===== */
.calc-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.calc-box {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.calc-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.calc-header h2 {
  font-size: 1.85rem;
  font-weight: 850;
  margin-bottom: 0.5rem;
}

.calc-slider-wrap {
  margin-bottom: 2.25rem;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.calc-slider-header label {
  font-size: 0.95rem;
  font-weight: 750;
}

.calc-slider-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  accent-color: var(--primary);
  cursor: pointer;
}

.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}

.calc-result-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}

.calc-result-card.highlight {
  background: var(--primary-light);
  border-color: rgba(37, 99, 235, 0.3);
}

.calc-result-card.gold {
  background: var(--gold-light);
  border-color: rgba(217, 119, 6, 0.3);
}

.result-label {
  font-size: 0.76rem;
  font-weight: 750;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.result-val {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}

.calc-result-card.highlight .result-val { color: var(--primary); }
.calc-result-card.gold .result-val { color: var(--gold); }

.result-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ===== 🌟 FITUR GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 200ms ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.15rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 850;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.15rem;
  flex: 1;
}

.feature-checklist {
  list-style: none;
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px dashed var(--border);
  padding-top: 0.85rem;
}

/* ===== 📖 HOW IT WORKS ===== */
.how-it-works-section {
  background: var(--bg-alt);
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 850;
  margin-bottom: 0.55rem;
}

.step-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== 💎 PRICING SECTION ===== */
.pricing-container-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.pricing-plan-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
}

.pricing-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-plan-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, #f0f7ff, #ffffff);
  transform: scale(1.03);
}

.pricing-plan-card.lifetime {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffbeb, #ffffff);
}

.plan-featured-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.plan-featured-tag.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.plan-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1.15rem;
  min-height: 40px;
}

.plan-price-strike {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 700;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-price .currency {
  font-size: 1.15rem;
}

.plan-price .period {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.plan-price-sub {
  font-size: 0.75rem;
  font-weight: 750;
  color: var(--primary);
  margin-top: 0.35rem;
}

.plan-features {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.btn-plan-order {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all 180ms ease;
  display: block;
}

.btn-plan-order:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.btn-plan-order.primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-plan-order.primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-plan-order.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-plan-order.gold:hover {
  background: linear-gradient(135deg, #fbbf24, #b45309);
  transform: translateY(-2px);
}

/* Payment Info Banner */
.payment-info-banner {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.payment-account-badge {
  background: var(--surface);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.25rem;
  display: inline-block;
  margin: 0.65rem 0;
  font-size: 1.1rem;
  color: var(--primary);
}

/* ===== ❓ FAQ SECTION ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

.faq-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.faq-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== 🚀 FOOTER ===== */
.landing-footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 3rem;
}

.footer-logo {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links a {
  display: block;
  font-size: 0.86rem;
  color: #94a3b8;
  margin-bottom: 0.6rem;
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-contact p {
  font-size: 0.86rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.btn-wa-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-xs);
  margin-top: 0.65rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
}

/* ===== 🎨 GALERI DESAIN VOUCHER SHOWCASE ===== */
.gallery-section {
  background: var(--bg);
  padding: 5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.showcase-voucher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.showcase-card-wrap {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
}

.showcase-card-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.showcase-badge {
  font-size: 0.75rem;
  font-weight: 850;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-xs);
  display: inline-block;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.real-voucher-card {
  background: #ffffff;
  border: 1.5px dashed #94a3b8;
  border-radius: 6px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex: 1;
  position: relative;
}

.real-voucher-card .rv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.4rem;
  gap: 0.5rem;
}

.real-voucher-card .rv-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.real-voucher-card .rv-logo-icon {
  font-size: 1.25rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--surface-alt);
}

.real-voucher-card .rv-brand-name {
  font-size: 0.76rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.real-voucher-card .rv-ssid-name {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 600;
}

.real-voucher-card .rv-sn-badge {
  font-size: 0.65rem;
  font-weight: 850;
  background: #0f172a;
  color: #ffffff;
  padding: 2px 5px;
  border-radius: 3px;
  flex-shrink: 0;
}

.real-voucher-card .rv-code-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 0.45rem;
  text-align: center;
}

.real-voucher-card .rv-code-label {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
}

.real-voucher-card .rv-code-val {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.06em;
}

.real-voucher-card .rv-code-val.mono-huge {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.real-voucher-card .rv-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.real-voucher-card .rv-pkg-tag {
  color: #1e293b;
}

.real-voucher-card .rv-price-tag {
  color: var(--primary);
  font-weight: 900;
  font-size: 0.82rem;
}

.real-voucher-card .rv-sub-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: #64748b;
}

.real-voucher-card .rv-footer-hint {
  font-size: 0.58rem;
  color: #94a3b8;
  text-align: center;
  border-top: 1px dashed #e2e8f0;
  padding-top: 0.3rem;
}

/* Theme variations in showcase */
.real-voucher-card.theme-blue { border-color: #93c5fd; }
.real-voucher-card.theme-blue .rv-code-box { background: #eff6ff; border-color: #bfdbfe; }
.real-voucher-card.theme-blue .rv-sn-badge { background: #1d4ed8; }

.real-voucher-card.theme-emerald { border-color: #6ee7b7; }
.real-voucher-card.theme-emerald .rv-code-box { background: #ecfdf5; border-color: #a7f3d0; }
.real-voucher-card.theme-emerald .rv-sn-badge { background: #059669; }
.real-voucher-card.theme-emerald .rv-price-tag { color: #059669; }

.real-voucher-card.theme-gold { border-color: #fde68a; }
.real-voucher-card.theme-gold .rv-code-box { background: #fef3c7; border-color: #fcd34d; }
.real-voucher-card.theme-gold .rv-sn-badge { background: #d97706; }
.real-voucher-card.theme-gold .rv-price-tag { color: #d97706; }

/* Thermal Receipt Styling */
.real-voucher-card.thermal-receipt-card {
  background: #fffff5;
  border: 1px solid #d1d5db;
  border-bottom: 2px dashed #9ca3af;
  font-family: var(--font-mono);
  padding: 0.85rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.thermal-store-name {
  font-weight: 900;
  font-size: 0.84rem;
  text-align: center;
}

.thermal-store-sub {
  font-size: 0.62rem;
  text-align: center;
  color: #64748b;
}

.thermal-divider {
  font-size: 0.6rem;
  text-align: center;
  color: #94a3b8;
  overflow: hidden;
}

.thermal-info-row, .thermal-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
}

.thermal-code-box {
  background: #f1f5f9;
  border: 1px dashed #64748b;
  padding: 0.4rem;
  text-align: center;
}

.thermal-code-label {
  font-size: 0.58rem;
  font-weight: 700;
}

.thermal-code-val {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.thermal-status {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #10b981;
}

.thermal-footer {
  text-align: center;
  font-size: 0.6rem;
  color: #64748b;
}

.showcase-card-desc {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ===== RESPONSIVE MOBILE ENGINE (SMARTPHONE OPTIMIZATION) ===== */
@media (max-width: 960px) {
  .hero-headline { font-size: 2.2rem; }
  .calc-results-grid, .pricing-container-grid, .steps-grid, .footer-top { grid-template-columns: 1fr; }
  .pricing-plan-card.featured { transform: none; }
  .mockup-grid { grid-template-columns: 1fr 1fr; }
  .landing-nav-links { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .landing-header {
    padding: 0.65rem 1rem;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .btn-app-launch {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero-section {
    padding: 2.5rem 1rem 3rem;
  }

  .hero-headline {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .hero-trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.76rem;
  }

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

  .calculator-section {
    padding: 3rem 1rem;
  }

  .savings-calculator-card {
    padding: 1.35rem 1rem;
  }

  .calc-input-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .features-section, .steps-section, .pricing-section, .faq-section {
    padding: 3rem 1rem;
  }

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

  .feature-card {
    padding: 1.25rem 1rem;
  }

  .pricing-plan-card {
    padding: 1.5rem 1.15rem;
  }

  .step-card {
    padding: 1.25rem 1rem;
  }

  .cta-banner {
    padding: 2.5rem 1.15rem;
  }

  .cta-headline {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.6rem;
  }

  .section-headline {
    font-size: 1.45rem;
  }

  .calc-val-huge {
    font-size: 1.8rem;
  }
}
