/* ============================================================
   AGRAB Cost Intelligence™ — AGRAB Mobile Master Stylesheet
   Executive Dark Mode & Standard AGRAB Design System
   ============================================================ */

:root {
  --bg-dark: #0B132B;
  --bg-card: rgba(27, 54, 93, 0.45);
  --border-cyan: rgba(0, 229, 255, 0.25);
  --border-slate: rgba(255, 255, 255, 0.12);
  --navy-primary: #1B365D;
  --slate-base: #0F172A;
  --blue-accent: #2979FF;
  --cyan-glow: #00E5FF;
  --gold-glow: #FFD700;
  --amber-accent: #FF9100;
  --emerald-accent: #10B981;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

/* Prevent Browser Default Purple Visited Links */
a, a:visited, a:link, a:active {
  color: inherit;
  text-decoration: none;
}

/* NAVBAR HEADER */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
}

.brand-icon {
  font-size: 22px;
  color: var(--cyan-glow);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

.brand span {
  color: var(--cyan-glow);
  font-weight: 600;
  margin-left: 4px;
}

.nav nav {
  display: flex;
  gap: 28px;
}

.nav nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav nav a:hover {
  color: var(--cyan-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, #00E5FF 0%, #2979FF 100%);
  color: #0B132B;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 229, 255, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FF9100 100%);
  color: #0B132B;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* EXECUTIVE HOME BUTTON */
.btn-home,
.btn-home:visited,
.btn-home:link,
.btn-home:active {
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  border: 1px solid rgba(0, 229, 255, 0.45) !important;
  color: #ffffff !important;
  padding: 9px 18px !important;
  font-family: var(--font-heading) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.15) !important;
}

.btn-home i,
.btn-home:visited i {
  color: #00E5FF !important;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.6));
}

.btn-home:hover {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25) 0%, rgba(41, 121, 255, 0.35) 100%) !important;
  border-color: #00E5FF !important;
  color: #00E5FF !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4) !important;
}

.nav nav a.nav-home-link,
.nav nav a.nav-home-link:visited {
  color: #00E5FF !important;
  font-weight: 700 !important;
}

.btn-trial {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--gold-glow);
}

.btn-trial:hover {
  background: rgba(255, 215, 0, 0.25);
  color: #ffffff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
}

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

/* HERO SECTION (PERFECTLY ALIGNED) */
.hero {
  padding: 130px 40px 70px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan-glow);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #00E5FF 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-copy .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.metrics {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  width: 100%;
}

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

.metrics span b {
  color: var(--cyan-glow);
  font-size: 15px;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shot {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 15px 45px rgba(0, 229, 255, 0.2);
  transition: transform 0.3s ease;
}

.hero-shot:hover {
  transform: scale(1.02);
}

/* INTRO SECTION */
.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--cyan-glow);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.intro h2, .section-head h2, .showcase-card h2, .pricing h2, .cta h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

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

/* WORKFLOW CARDS WITH RELEVANT IMAGES */
.features {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.features article {
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features article:hover {
  transform: translateY(-5px);
  background: rgba(27, 54, 93, 0.75);
  border-color: var(--cyan-glow);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}

.wf-img-wrap {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.2);
  background: #0B132B;
}

.wf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.features article:hover .wf-img-wrap img {
  transform: scale(1.05);
}

.wf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wf-head h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.wf-step {
  font-style: normal;
  font-weight: 800;
  color: var(--cyan-glow);
  font-size: 14px;
  background: rgba(0, 229, 255, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(0, 229, 255, 0.2);
}

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

/* GALLERY WRAP */
.gallery-wrap {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 450px;
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.gallery button {
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 10px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
  overflow: hidden;
}

.gallery button:hover {
  border-color: var(--cyan-glow);
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 8px;
}

.gallery button span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
}

/* SHOWCASE CARDS SECTION */
.showcase-section {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.showcase-card {
  max-width: 100%;
  margin: 0;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.5) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1px solid var(--border-cyan);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.showcase-card:hover {
  border-color: var(--cyan-glow);
}

.showcase-card.alt {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(27, 54, 93, 0.5) 100%);
}

.showcase-card ul {
  list-style: none;
  margin: 20px 0 28px;
}

.showcase-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}

.showcase-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-media img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid var(--border-cyan);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-media img {
  transform: scale(1.02);
}

/* PRICING SECTION */
.pricing {
  max-width: 960px;
  margin: 0 auto 90px;
  padding: 0 24px;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(27, 54, 93, 0.75) 0%, rgba(11, 19, 43, 0.95) 100%);
  border: 2px solid var(--gold-glow);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.22);
}

.price-card:hover {
  transform: translateY(-6px);
}

.card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.card-badge.gold { background: rgba(255, 215, 0, 0.2); color: var(--gold-glow); border: 1px solid rgba(255, 215, 0, 0.4); }
.card-badge.gray { background: rgba(255, 255, 255, 0.1); color: var(--text-muted); }

.plan-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.price-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

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

.price-box .currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}

.price-box .amount {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
}

.price-box .period {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #e2e8f0;
  line-height: 1.45;
}

.features-list li i {
  margin-top: 3px;
}

.price-card button {
  width: 100%;
}

/* CTA BANNER & QUOTE BOX */
.cta {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(27, 54, 93, 0.6) 100%);
  border: 1px solid var(--border-cyan);
  border-radius: 28px;
  text-align: center;
}

.quote-box {
  margin-top: 24px;
  padding: 24px 30px;
  background: rgba(11, 19, 43, 0.65);
  border: 1px solid var(--border-cyan);
  border-left: 4px solid var(--gold-glow);
  border-radius: 16px;
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.6;
}

.quote-gold {
  color: var(--gold-glow);
  font-weight: 700;
}

.quote-author {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan-glow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070D1E;
}

footer .brand {
  justify-content: center;
  margin-bottom: 8px;
}

footer p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 14px;
}

footer small {
  color: #64748B;
  font-size: 12px;
}

/* ============================================================
   MODAL DIALOG STYLING (PERFECTLY CENTERED FIX)
   ============================================================ */
dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  background: transparent;
  padding: 0;
  width: max-content;
  height: max-content;
  max-width: 95vw;
  max-height: 94vh;
  z-index: 1000;
}

dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

dialog::backdrop {
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-box {
  background: #0F172A;
  border: 1.5px solid var(--border-cyan);
  border-radius: 24px;
  width: 92vw;
  max-width: 540px;
  padding: 28px;
  position: relative;
  color: var(--text-main);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* STANDARD AGRAB CHECKOUT FORM STYLING */
.std-checkout-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.std-checkout-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.std-checkout-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.std-checkout-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.std-prod-box {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.std-prod-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cyan-glow);
  letter-spacing: 1px;
}

.std-prod-name {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.std-prod-normal-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.std-prod-normal-val {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.std-prod-discount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #334155;
  font-size: 12px;
  color: var(--emerald-accent);
}

.std-prod-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #334155;
}

.std-prod-total-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-main);
}

.std-prod-total-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--cyan-glow);
}

.std-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.std-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.std-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.std-field label {
  font-size: 11.5px;
  font-weight: 600;
  color: #cbd5e1;
}

.std-input {
  width: 100%;
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 10px 12px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}

.std-input:focus {
  border-color: var(--cyan-glow);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.std-voucher-container {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 12px;
}

.std-voucher-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-glow);
}

.std-voucher-row {
  display: flex;
  gap: 8px;
}

.std-voucher-input {
  flex: 1;
  background: #0B132B;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--cyan-glow);
  font-family: monospace;
  font-size: 12px;
  text-transform: uppercase;
  outline: none;
}

.std-voucher-btn {
  padding: 0 16px;
  background: var(--navy-primary);
  border: 1px solid var(--border-cyan);
  color: var(--cyan-glow);
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.std-voucher-btn:hover {
  background: var(--cyan-glow);
  color: #0B132B;
}

.std-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #00E5FF 0%, #2979FF 100%);
  color: #0B132B;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35);
  margin-top: 4px;
  transition: all 0.2s ease;
}

.std-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
}

/* STEP 2 PAYMENT INSTRUCTIONS & SUCCESS SCREEN STYLING */
.pay-success-header {
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.1);
  padding: 18px;
  margin-bottom: 18px;
}

.pay-success-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pay-success-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.pay-success-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.pay-success-sub {
  font-size: 12px;
  color: #cbd5e1;
}

.pay-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.pay-meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}

.pay-order-id-val {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-glow);
}

.pay-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
}

.pay-bill-box {
  background: #0B132B;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pay-bill-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}

.pay-bill-amount {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #34d399;
}

.pay-trust-box {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 18px;
}

.pay-trust-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan-glow);
  margin-bottom: 10px;
}

.pay-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pay-trust-list li {
  font-size: 12.5px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-method-wrap {
  background: #1E293B;
  border: 2px solid var(--cyan-glow);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 18px;
}

.pay-method-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pay-method-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.pay-qris-container {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #334155;
}

.pay-qris-img-box {
  display: inline-block;
  padding: 10px;
  background: #ffffff;
  border-radius: 16px;
  margin: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pay-qris-img-box img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
}

.pay-separator {
  position: relative;
  text-align: center;
  margin: 14px 0;
}

.pay-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid #334155;
}

.pay-separator span {
  position: relative;
  background: #1E293B;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.pay-bca-box {
  background: #0B132B;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pay-bca-bank {
  font-size: 12px;
  font-weight: 800;
  color: #60a5fa;
}

.pay-bca-name {
  font-size: 11px;
  color: var(--text-muted);
}

.pay-bca-rekening {
  font-family: monospace;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.btn-confirm-wa {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.btn-confirm-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* TRIAL MODAL STYLING (CENTERED) */
.trial-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold-glow);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}

.lightbox-box {
  max-width: 850px;
  padding: 20px;
  text-align: center;
}

.lightbox-box img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 10px;
}

.lightbox-caption {
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan-glow);
}

.hidden { display: none !important; }

/* RESPONSIVE BREAKPOINTS & HAMBURGER SYSTEM */
.mobile-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #00E5FF;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mobile-toggle:hover {
  background: rgba(0, 229, 255, 0.2);
  transform: scale(1.05);
}

.mobile-menu-drawer {
  display: none;
  position: fixed !important;
  top: 72px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: calc(100vh - 72px) !important;
  background: rgba(11, 19, 43, 0.98) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-top: 1px solid rgba(0, 229, 255, 0.3) !important;
  padding: 24px 20px 40px 20px !important;
  flex-direction: column !important;
  gap: 12px !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95) !important;
  z-index: 999999 !important;
  overflow-y: auto !important;
}

.mobile-menu-drawer.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: slideDown 0.25s ease-out forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-link {
  color: #F8FAFC !important;
  text-decoration: none !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.4);
  color: #00E5FF !important;
}

.mobile-nav-link.home-mobile-link {
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: #00E5FF !important;
  font-weight: 800;
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .nav {
    padding: 0 20px !important;
  }
  .desktop-nav,
  .desktop-actions {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .hero {
    padding: 110px 20px 50px !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
  }
  .hero-copy h1 {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }
  .hero-copy p {
    font-size: 14px !important;
  }
  .hero-copy .actions {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero-copy .actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero-media {
    width: 100% !important;
    margin-top: 25px !important;
  }
  .features,
  .gallery-grid,
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 17px !important;
  }
  .brand-icon {
    font-size: 18px !important;
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .showcase-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .nav nav { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .std-grid { grid-template-columns: 1fr; }
}
