/* ==========================================================================
   JOBHOS INDONESIA - LANDING PAGE DESIGN SYSTEM (MOBILE-FIRST)
   Program Persiapan & Rekrutmen Perhotelan Internasional Turki 2026
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* Brand Colors - Jobhos & JIC */
  --color-navy-dark: #07122b;
  --color-navy-primary: #0b2567;
  --color-navy-light: #123794;
  --color-blue-royal: #1652f0;
  --color-cyan-vibrant: #00aeef;
  --color-cyan-light: #e0f7fe;
  --color-cyan-glow: rgba(0, 174, 239, 0.35);
  
  /* Conversion & Accent Colors */
  --color-gold: #f59e0b;
  --color-gold-light: #fef3c7;
  --color-gold-dark: #d97706;
  --color-green-success: #10b981;
  --color-red-urgency: #ef4444;
  
  /* Neutral Palette */
  --bg-page: #050d1e;
  --bg-surface: #ffffff;
  --bg-surface-soft: #f8fafc;
  --bg-surface-subtle: #f1f5f9;
  --bg-card-dark: #0d1e42;
  --border-card-dark: rgba(0, 174, 239, 0.2);
  --border-light: #e2e8f0;
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --text-light-muted: #94a3b8;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 16px rgba(11, 37, 103, 0.12);
  --shadow-lg: 0 12px 32px rgba(11, 37, 103, 0.2);
  --shadow-glow: 0 0 25px rgba(0, 174, 239, 0.4);
  --shadow-gold: 0 8px 24px rgba(245, 158, 11, 0.35);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Container Frame - Mobile-First Wrapper */
.mobile-wrapper {
  width: 100%;
  max-width: 500px; /* Aligned with standard modern mobile app experience */
  margin: 0 auto;
  background-color: var(--bg-surface-soft);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  padding-bottom: 90px; /* Space for sticky bottom CTA */
}

@media (min-width: 768px) {
  .mobile-wrapper {
    margin: 20px auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

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

.text-gold { color: var(--color-gold) !important; }
.text-cyan { color: var(--color-cyan-vibrant) !important; }
.text-navy { color: var(--color-navy-primary) !important; }
.text-white { color: #ffffff !important; }
.text-center { text-align: center; }

/* Global Badges & Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-badge.urgent {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
  animation: pulse-glow 2s infinite ease-in-out;
}

.pill-badge.brand-cyan {
  background: rgba(0, 174, 239, 0.15);
  border: 1px solid var(--color-cyan-vibrant);
  color: var(--color-cyan-vibrant);
}

.pill-badge.gold-outline {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.pill-badge.green-trust {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--color-green-success);
  color: var(--color-green-success);
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.9; }
}

/* ==========================================================================
   1. TOP URGENCY ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #07122b 0%, #0b2567 50%, #07122b 100%);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(0, 174, 239, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-announcement-bar .badge-highlight {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
}

/* ==========================================================================
   2. BRAND HEADER & ACCREDITATION LOGOS
   ========================================================================== */
.brand-header {
  background-color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.brand-header .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-header .logo-jobhos {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-header .logo-divider {
  width: 1px;
  height: 24px;
  background-color: var(--border-light);
}

.brand-header .logo-jic {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-header .trust-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.brand-header .trust-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-navy-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-header .trust-tag i {
  color: var(--color-green-success);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  background: radial-gradient(circle at 50% 20%, #123794 0%, #07122b 75%);
  color: #ffffff;
  padding: 26px 18px 24px;
  text-align: center;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(to top, var(--bg-surface-soft), transparent);
}

.hero-badge-container {
  margin-bottom: 14px;
}

.hero-title {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-title span.highlight {
  color: var(--color-cyan-vibrant);
  display: block;
}

.hero-subtitle {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 18px;
  line-height: 1.45;
}

.hero-salary-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.4);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-salary-badge .icon {
  font-size: 1.6rem;
  color: var(--color-gold);
}

.hero-salary-badge .salary-text {
  text-align: left;
}

.hero-salary-badge .label {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-salary-badge .value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.hero-salary-badge .value span {
  color: var(--color-gold);
}

/* Hero Media Box / Cover Mockup */
.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 174, 239, 0.35);
  margin-bottom: 16px;
  background-color: #000000;
}

.hero-media-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hero-media-card .play-overlay-pill {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 18, 43, 0.9);
  border: 1px solid var(--color-cyan-vibrant);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
  width: max-content;
}

/* Fast Value Highlights Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.hero-stat-item {
  background: rgba(11, 37, 103, 0.6);
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
}

.hero-stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-cyan-vibrant);
}

.hero-stat-item .stat-desc {
  font-size: 0.65rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Action CTA Primary */
.btn-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #07122b;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary:hover, .btn-cta-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.5);
  color: #07122b;
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  25%, 100% { left: 150%; }
}

.cta-subtext {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 8px;
  text-align: center;
}

/* ==========================================================================
   4. AUDIENCE QUALIFICATION (PAIN POINTS & FILTER)
   ========================================================================== */
.section-container {
  padding: 24px 16px;
}

.dark-mode-section {
  background-color: var(--color-navy-dark);
  color: #ffffff;
}

.section-header-box {
  text-align: center;
  margin-bottom: 18px;
}

.section-header-box .section-tag {
  margin-bottom: 6px;
}

.section-header-box h2 {
  font-size: 1.35rem;
  color: #ffffff;
  line-height: 1.25;
}

.pain-points-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-card-dark);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-md);
}

.pain-points-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #e2e8f0;
}

.pain-list-item .icon-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-red-urgency);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain-list-item.solution .icon-bullet {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-green-success);
}

.pain-card-cta-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-cyan-vibrant);
  font-weight: 600;
}

/* ==========================================================================
   5. WHY TURKEY & HOTEL CHAINS
   ========================================================================== */
.why-turkey-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hotel-badge {
  background: var(--bg-surface-soft);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hotel-badge i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

.hotel-badge .name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-navy-primary);
  font-family: var(--font-heading);
}

.hotel-badge .stars {
  color: #f59e0b;
  font-size: 0.65rem;
}

/* ==========================================================================
   6. POSITIONS & SALARY SHOWCASE (INTERACTIVE CARDS)
   ========================================================================== */
.positions-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.position-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.position-card:hover {
  border-color: var(--color-cyan-vibrant);
}

.position-card-header {
  background: linear-gradient(135deg, var(--color-navy-primary) 0%, var(--color-navy-dark) 100%);
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.position-card-header .pos-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
}

.position-card-header .pos-number {
  background: rgba(0, 174, 239, 0.2);
  border: 1px solid var(--color-cyan-vibrant);
  color: var(--color-cyan-vibrant);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
}

.position-card-body {
  padding: 16px;
}

.pos-salary-highlight {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pos-salary-highlight .label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-transform: uppercase;
}

.pos-salary-highlight .amount {
  font-size: 1.05rem;
  font-weight: 900;
  color: #92400e;
  font-family: var(--font-heading);
}

.pos-salary-highlight .sub-idr {
  font-size: 0.7rem;
  color: #b45309;
}

.pos-criteria-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: #334155;
  margin-bottom: 14px;
}

.pos-criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.pos-criteria-list li i {
  color: var(--color-cyan-vibrant);
  margin-top: 2px;
  font-size: 0.85rem;
}

.pos-select-btn {
  width: 100%;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--color-navy-primary);
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.pos-select-btn:hover {
  background: var(--color-navy-primary);
  color: #ffffff;
}

/* ==========================================================================
   7. SEASONAL TIMELINE & 5-STEP PROCESS FUNNEL
   ========================================================================== */
.season-period-box {
  background: linear-gradient(135deg, #0b2567 0%, #07122b 100%);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 174, 239, 0.3);
}

.season-period-box .period-tag {
  color: var(--color-gold);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.season-period-box .period-headline {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.season-period-box .period-range {
  font-size: 0.95rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.funnel-steps-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.funnel-step-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.funnel-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue-royal) 0%, var(--color-navy-primary) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-heading);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(22, 82, 240, 0.3);
}

.funnel-step-content {
  flex: 1;
}

.funnel-step-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-navy-primary);
  margin-bottom: 4px;
}

.funnel-step-desc {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.4;
}

.funnel-arrow-down {
  text-align: center;
  color: var(--color-cyan-vibrant);
  font-size: 1rem;
  margin: -4px 0;
}

/* ==========================================================================
   8. CREDIBILITY, LEGALITY & AUTHORITY (SUPER KUAT)
   ========================================================================== */
.authority-showcase-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.authority-showcase-box img {
  width: 100%;
  height: auto;
  display: block;
}

.authority-caption {
  padding: 14px 16px;
  background-color: #ffffff;
}

.authority-caption h4 {
  font-size: 0.98rem;
  color: var(--color-navy-primary);
  margin-bottom: 4px;
}

.authority-caption p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.35;
}

.diplomat-relations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

/* ==========================================================================
   9. TRAINING DOCUMENTATION & TESTIMONY
   ========================================================================== */
.gallery-card-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--border-light);
}

.gallery-card-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.testimony-container {
  margin-top: 14px;
}

/* ==========================================================================
   10. VALUE STACKING BENEFIT SECTION (Rp 500k+ -> Rp 99.000)
   ========================================================================== */
.value-stacking-section {
  background: radial-gradient(circle at 50% 10%, #0d2253 0%, #07122b 90%);
  color: #ffffff;
  padding: 28px 16px;
  position: relative;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.bonus-card-badge {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  color: #07122b;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-card-badge .bonus-tag {
  text-transform: uppercase;
}

.bonus-card-badge .bonus-val {
  background: rgba(0, 0, 0, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.bonus-card-img-wrapper {
  background-color: #ffffff;
  padding: 8px;
  text-align: center;
}

.bonus-card-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

.bonus-card-content {
  padding: 16px;
}

.bonus-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.bonus-card-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.4;
  margin-bottom: 10px;
}

.bonus-feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: #93c5fd;
}

.bonus-feature-bullets li i {
  color: var(--color-cyan-vibrant);
  margin-right: 6px;
}

/* TOTAL VALUE SUMMARY BOX */
.value-summary-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.25) 100%);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-xl);
  padding: 22px 18px;
  text-align: center;
  margin-top: 24px;
  box-shadow: var(--shadow-gold);
}

.value-summary-box .orig-value-label {
  font-size: 0.82rem;
  color: #e2e8f0;
  text-transform: uppercase;
  font-weight: 700;
}

.value-summary-box .orig-value-num {
  font-size: 1.25rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 800;
  margin-bottom: 10px;
}

.value-summary-box .deal-price-label {
  font-size: 0.88rem;
  color: var(--color-cyan-vibrant);
  font-weight: 800;
  text-transform: uppercase;
}

.value-summary-box .deal-price-big {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin: 6px 0 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.value-summary-box .deal-price-big span {
  color: var(--color-gold);
}

/* ==========================================================================
   11. CHECKOUT & REGISTRATION SYSTEM (AUTOMATIC CLOSING)
   ========================================================================== */
.checkout-section {
  background-color: #ffffff;
  padding: 26px 16px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: -16px;
  position: relative;
  z-index: 10;
}

.checkout-box-card {
  background: var(--bg-surface-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-md);
}

/* Payment Method Toggle Tabs */
.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.tab-btn i {
  font-size: 1.2rem;
  color: #64748b;
}

.tab-btn.active {
  background: rgba(11, 37, 103, 0.06);
  border-color: var(--color-navy-primary);
  color: var(--color-navy-primary);
  box-shadow: 0 2px 8px rgba(11, 37, 103, 0.12);
}

.tab-btn.active i {
  color: var(--color-navy-primary);
}

/* Payment Info Panels */
.payment-panel {
  display: none;
}

.payment-panel.active {
  display: block;
}

.bank-info-box {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
  position: relative;
}

.bank-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bank-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #005a9c;
  display: flex;
  align-items: center;
  gap: 6px;
}

.account-num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-subtle);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin: 6px 0;
}

.account-num-row .acc-number {
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  letter-spacing: 1px;
}

.btn-copy-acc {
  background: var(--color-navy-primary);
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease;
}

.btn-copy-acc:hover {
  background: var(--color-blue-royal);
}

.acc-holder {
  font-size: 0.78rem;
  color: #64748b;
}

.acc-holder strong {
  color: var(--text-dark);
}

/* QRIS Panel */
.qris-display-box {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  margin-bottom: 16px;
}

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

.qris-inst {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.35;
}

/* Registration Form Controls */
.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-navy-primary);
  margin-bottom: 6px;
}

.form-group label span.req {
  color: var(--color-red-urgency);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  color: var(--text-dark);
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--color-cyan-vibrant);
  box-shadow: 0 0 0 3px var(--color-cyan-glow);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2567' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
}

.form-help {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 4px;
}

/* Checkout Submit Status */
.submit-status-box {
  display: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  margin-bottom: 14px;
  text-align: center;
}

.submit-status-box.loading {
  display: block;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.submit-status-box.success {
  display: block;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.submit-status-box.error {
  display: block;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ==========================================================================
   12. SYARAT & KETENTUAN VOUCHER
   ========================================================================== */
.terms-card-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.terms-card-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   13. FAQ ACCORDION (OBJECTION HANDLING)
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-question {
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: #ffffff;
  user-select: none;
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--color-cyan-vibrant);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--bg-surface-soft);
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   14. FOOTER & LEGAL DISCLAIMER
   ========================================================================== */
.landing-footer {
  background-color: var(--color-navy-dark);
  color: #94a3b8;
  padding: 24px 16px 30px;
  text-align: center;
  font-size: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-logos img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-legal-text {
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-copyright {
  color: #64748b;
  font-size: 0.7rem;
}

/* ==========================================================================
   15. STICKY MOBILE BOTTOM CTA BAR
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  background: rgba(7, 18, 43, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 174, 239, 0.3);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.sticky-pricing-info {
  display: flex;
  flex-direction: column;
}

.sticky-pricing-info .orig-price {
  font-size: 0.68rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.sticky-pricing-info .deal-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}

.sticky-btn-action {
  flex: 1;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #07122b;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notice {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: var(--color-navy-primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  transition: transform 0.3s ease;
  border: 1px solid var(--color-cyan-vibrant);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
}
