/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Poppins', sans-serif;
    color: #111827;
    background-color: #f8fafc;
}

section {
    padding: 90px 0;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

body {
  color: #374151;
}


/* =========================
   NAVBAR (EXPORT STYLE)
========================= */
.navbar-premium {
    background: transparent;
    padding: 18px 0;
    transition: all .3s ease;
}

.navbar-premium.scrolled {
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #e5e7eb !important;
}

.logo {
    height: 90px;
}

/* =========================
   HERO (EXPORT LOOK)
========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(15,23,42,.85), rgba(15,23,42,.65)),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 3.2rem;
}

.hero p {
    font-size: 1.1rem;
    color: #e5e7eb;
    max-width: 760px;
    margin: 0 auto;
}

/* =========================
   BUTTON (EXPORT STANDARD)
========================= */
.btn-success {
    background-color: #16a34a;
    border-color: #16a34a;
}

.btn-success:hover {
    background-color: #15803d;
    border-color: #15803d;
}

.btn-premium {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

/* =========================
   PRODUCT CARD
========================= */
.product-card {
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
    transition: transform .3s ease;
    background: #ffffff;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* =========================
   TRUST / INFO CARD
========================= */
.trust-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

/* =========================
   DARK SECTION
========================= */
.bg-dark {
    background-color: #1f2937 !important;
}

.bg-dark h2,
.bg-dark p {
    color: #e5e7eb;
}

/* =========================
   LIST
========================= */
.list-group-item {
    border-color: #e5e7eb;
    font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0f172a;
    color: #e5e7eb;
}

/* =========================
   FLOATING WA
========================= */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #16a34a;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }
}
.logo {
    height: 90px;
}

.navbar-premium {
    background: transparent;
    padding: 18px 0;
    transition: all .3s ease;
}

.navbar-premium.scrolled {
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #e5e7eb !important;
}

.nav-link:hover {
    color: #ffffff !important;
}
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-top: 1rem;
    opacity: 0.95;
}
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ABOUT PREMIUM */
.about-premium {
    background: #ffffff;
}

.about-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-trust-list {
    list-style: none;
    padding: 0;
}

.about-trust-list li {
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
}
/* Gender Image */
.gender-image {
    max-width: 520px;
    opacity: 0.95;
}
.order-step {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.order-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.step-number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: #1fa34a;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 15px;
  font-size: 18px;
}

.order-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.order-step.highlight {
  border: 1px solid rgba(31,163,74,0.4);
}
.order-premium{
  padding: 90px 0;
  background: radial-gradient(1100px 500px at 50% -100px, rgba(38,205,124,.14), rgba(0,0,0,0)),
              linear-gradient(180deg, #0f172a 0%, #0b1220 45%, #0b1220 100%);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.badge-soft{
  display:inline-flex;
  align-items:center;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 600;
  letter-spacing: .2px;
}

.section-title{
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0;
  color: #fff;
}

.section-subtitle{
  max-width: 820px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* Step cards */
.step-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.step-card:hover{
  transform: translateY(-4px);
  border-color: rgba(38,205,124,.30);
  background: rgba(255,255,255,.08);
}
.step-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.step-number{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: #0b1220;
  background: linear-gradient(135deg, #26cd7c, #1ea061);
}
.step-title{
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.step-desc{
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

/* Policy + CTA */
.policy-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.policy-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.policy-list{
  list-style:none;
  padding:0;
  margin:0;
}
.policy-list li{
  display:flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  color: rgba(255,255,255,.80);
  line-height: 1.65;
}
.policy-list li:last-child{ border-bottom: 0; }
.tick{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(38,205,124,.18);
  border: 1px solid rgba(38,205,124,.35);
  color:#8df0be;
  font-weight: 900;
  flex: 0 0 22px;
  margin-top: 2px;
}
.note-box{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(38,205,124,.25);
  background: rgba(38,205,124,.10);
  color: rgba(255,255,255,.86);
}

/* CTA card */
.cta-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  position: relative;
}
.cta-badge{
  position:absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(38,205,124,.14);
  border: 1px solid rgba(38,205,124,.25);
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.cta-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.cta-desc{
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  margin-bottom: 18px;
}

.btn-premium{
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 800 !important;
  letter-spacing: .2px;
  box-shadow: 0 16px 30px rgba(0,0,0,.20);
}

.cta-mini{
  font-size: 13px;
  color: rgba(255,255,255,.70);
}
.cta-mini a{ color: rgba(255,255,255,.90); text-decoration: underline; }

.trust-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-item{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.order-process-premium {
  background: radial-gradient(ellipse at top, #0f2537, #0b1724);
  padding: 90px 0;
  color: #e6eef5;
}

.badge-premium {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: .5px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #b8c6d4;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: .3s;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-card.highlight {
  border: 1px solid rgba(46,204,113,.5);
}

.step-number {
  width: 36px;
  height: 36px;
  background: #2ecc71;
  color: #0b1724;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.policy-box {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
}

.policy-list {
  padding-left: 18px;
}

.policy-list li {
  margin-bottom: 12px;
  color: #cfd9e2;
}

.policy-note {
  margin-top: 20px;
  padding: 14px;
  background: rgba(46,204,113,0.1);
  border-left: 4px solid #2ecc71;
  border-radius: 6px;
  font-size: 14px;
}

.cta-box {
  background: linear-gradient(180deg, #1b3a4b, #0f2537);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  position: relative;
}

.cta-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #2ecc71;
  color: #0b1724;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.btn-whatsapp-premium {
  background: #2ecc71;
  color: #0b1724;
  font-weight: 600;
  border-radius: 40px;
  padding: 14px 28px;
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
}

.btn-whatsapp-premium:hover {
  background: #27ae60;
  color: #fff;
}

.cta-features {
  margin-top: 16px;
  font-size: 13px;
  color: #b8c6d4;
}

.cta-features span {
  display: inline-block;
  margin-right: 10px;
}
.policy-box {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 34px;
  height: 100%;
}

.policy-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.policy-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #9fb3c8;
  margin-left: 6px;
}

.policy-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list-clean li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  color: #d6e1eb;
}

.policy-list-clean li:last-child {
  border-bottom: none;
}

.policy-list-clean .icon {
  font-size: 20px;
  line-height: 1.4;
}

.inner-list {
  margin-top: 8px;
  padding-left: 16px;
}

.inner-list li {
  list-style: disc;
  font-size: 14px;
  color: #c6d3de;
}

.policy-warning {
  margin-top: 22px;
  padding: 16px 18px;
  background: linear-gradient(
    90deg,
    rgba(46,204,113,0.15),
    rgba(46,204,113,0.05)
  );
  border-left: 4px solid #2ecc71;
  border-radius: 8px;
  font-size: 14.5px;
  color: #e9f7ef;
}
/* ===== TEXT VISIBILITY FIX ===== */
.section-dark,
.section-dark * {
  opacity: 1 !important;
}

/* Titles */
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
  font-weight: 700;
}

/* Subtitles */
.section-dark .subtitle,
.section-dark .section-subtitle {
  color: #eaf2f8;
  font-weight: 400;
}

/* Body text */
.section-dark p,
.section-dark li {
  color: #dce6ee;
  font-weight: 400;
}

/* Muted text (still readable) */
.section-dark .text-muted {
  color: #b9c7d6 !important;
}

/* Highlight / important text */
.text-highlight,
.policy-warning strong {
  color: #2ecc71;
  font-weight: 600;
}
.order-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.order-step-card h5 {
  color: #ffffff;
  font-weight: 600;
}

.order-step-card p {
  color: #dce6ee;
  font-size: 14.5px;
}
.policy-box {
  background: rgba(255,255,255,0.05);
}

.policy-box strong {
  color: #ffffff;
}

.policy-list-clean li {
  color: #dce6ee;
}

.policy-warning {
  color: #eafff3;
}
.section-dark {
  background: linear-gradient(
    180deg,
    #0e1c2a 0%,
    #0b1621 100%
  );
}
/* ===============================
   FORCE TEXT CONTRAST (FINAL FIX)
================================ */

/* Semua teks di section gelap */
.section-dark {
  color: #e6eef5;
}

/* Heading */
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: #ffffff !important;
  font-weight: 700;
}

/* Paragraph & list */
.section-dark p,
.section-dark li {
  color: #dce6ee !important;
  opacity: 1 !important;
}

/* Subtitle */
.section-dark .section-subtitle {
  color: #cfe0ee !important;
}

/* Step card text */
.section-dark .step-card p {
  color: #dbeafe !important;
}

/* Policy text */
.section-dark .policy-box,
.section-dark .policy-list-clean li {
  color: #e3edf6 !important;
}

/* Inner list */
.section-dark .inner-list li {
  color: #cfe0ee !important;
}

/* CTA */
.section-dark .cta-box p {
  color: #e8f2fb !important;
}

/* Strong / highlight */
.section-dark strong {
  color: #ffffff !important;
}

/* Warning box */
.section-dark .policy-warning {
  color: #f0fff6 !important;
}
.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.step-card {
  background: rgba(255,255,255,0.05);
}

.step-card p {
  color: #374151;   /* ← INI PENYEBAB UTAMA */
}
/* ===============================
   HARD OVERRIDE – FINAL FIX
================================ */

/* STEP CARD TEXT */
.order-process-premium .step-card p {
  color: #e6f1fb !important;
}

/* STEP TITLE */
.order-process-premium .step-card h5 {
  color: #ffffff !important;
}

/* POLICY TEXT */
.order-process-premium .policy-box,
.order-process-premium .policy-box p,
.order-process-premium .policy-list-clean li {
  color: #e8f2fb !important;
}

/* INNER LIST */
.order-process-premium .inner-list li {
  color: #cfe3f4 !important;
}

/* CTA TEXT */
.order-process-premium .cta-box p {
  color: #eaf4ff !important;
}

/* SUBTITLE */
.order-process-premium .section-subtitle {
  color: #d6e6f5 !important;
}

/* REMOVE DARK GLOBAL P COLOR */
.order-process-premium p {
  color: #e6f1fb !important;
}
.export-trust-note {
  background: linear-gradient(180deg, #0b1621, #0e1c2a);
  padding: 80px 0;
}

.export-trust-note .trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.export-trust-note h3 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.trust-list {
  list-style: disc;
  padding-left: 20px;
}

.trust-list li {
  color: #dce6ee;
  margin-bottom: 12px;
  line-height: 1.7;
}

.trust-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #9fb3c8;
  font-style: italic;
}
.export-trust-note {
  background: linear-gradient(180deg, #0b1621, #0e1c2a);
  padding: 80px 0;
}

.export-trust-note .trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.export-trust-note h3 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.trust-list {
  list-style: disc;
  padding-left: 20px;
}

.trust-list li {
  color: #dce6ee;
  margin-bottom: 12px;
  line-height: 1.7;
}

.trust-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #9fb3c8;
  font-style: italic;
}
/* ================================
   ANIMATED BACKGROUND – ORDER
================================ */
.order-process-premium {
  position: relative;
  overflow: hidden;
}

/* animated layer */
.order-bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      600px 300px at 20% 10%,
      rgba(46,204,113,0.12),
      transparent 60%
    ),
    radial-gradient(
      500px 260px at 80% 30%,
      rgba(46,204,113,0.10),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      #0e1c2a 0%,
      #0b1621 100%
    );
  animation: bgFloat 18s ease-in-out infinite alternate;
}

/* content always on top */
.order-process-premium .container {
  position: relative;
  z-index: 2;
}

/* animation */
@keyframes bgFloat {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      center;
  }
  100% {
    background-position:
      20% 10%,
      80% 20%,
      center;
  }
}
/* =====================================
   ORDER PROCESS – ANIMATED GRID BACKGROUND
===================================== */

.order-process-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #0e1c2a 0%,
    #0b1621 100%
  );
  color: #eaf2f8;
}

/* Grid Layer */
.order-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  opacity: 0.35;
  animation: gridMove 30s linear infinite;
}

/* Make sure content is on top */
.order-process-premium .container {
  position: relative;
  z-index: 2;
}

/* Animation */
@keyframes gridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 420px 420px, 420px 420px;
  }
}
.order-bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 220px at 15% 10%,
      rgba(46,204,113,0.10),
      transparent 60%
    ),
    radial-gradient(
      600px 260px at 85% 30%,
      rgba(46,204,113,0.08),
      transparent 65%
    );
}
/* =====================================
   FINAL EXPORT BACKGROUND SYSTEM
===================================== */

.order-process-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
  color: #eaf2f8;
}

/* === GRID BACKGROUND === */
.order-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
  animation: gridMove 32s linear infinite;
}

/* === FLOW LINES (ORDER → CARGO FEEL) === */
.order-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(46,204,113,0.10), transparent 60%),
    radial-gradient(700px 300px at 80% 30%, rgba(46,204,113,0.08), transparent 65%);
  animation: glowPulse 16s ease-in-out infinite alternate;
}

/* Ensure content on top */
.order-process-premium .container {
  position: relative;
  z-index: 3;
}

/* === STEP CARD === */
.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.step-card h5 {
  color: #ffffff;
  font-weight: 700;
}

.step-card p {
  color: #e3edf6;
}

/* === STEP NUMBER === */
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #26cd7c, #1ea061);
  color: #0b1220;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* === HIGHLIGHT PAYMENT STEP === */
.highlight-cutoff {
  border: 1.5px solid rgba(46,204,113,.65);
  box-shadow: 0 0 0 0 rgba(46,204,113,.45);
  animation: cutoffPulse 2.8s ease-in-out infinite;
}

/* === ANIMATIONS === */
@keyframes gridMove {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 440px 440px, 440px 440px; }
}

@keyframes glowPulse {
  from { opacity: .65; }
  to   { opacity: 1; }
}

@keyframes cutoffPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.order-process-premium {
  position: relative;
  overflow: hidden; /* WAJIB */
  isolation: isolate; /* SUPER PENTING */
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
  padding: 90px 0;
}
.order-bg-grid,
.order-bg-lines {
  pointer-events: none;
  max-height: 100%;
}
.order-process-premium .container {
  position: relative;
  z-index: 2;
}
.order-process-premium h2,
.order-process-premium h3,
.order-process-premium h4,
.order-process-premium h5 {
  color: #ffffff !important;
}

.order-process-premium p,
.order-process-premium li {
  color: #e6eef5 !important;
}

.order-process-premium .section-subtitle {
  color: #cfe1f0 !important;
}
/* ================= ORDER PROCESS SAFE ================= */
.order-process-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 0;
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
}

.order-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 50% -100px, rgba(38,205,124,.15), transparent),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  z-index: 0;
}

.order-process-premium .container {
  position: relative;
  z-index: 1;
}

/* Titles */
.order-process-premium h2,
.order-process-premium h4,
.order-process-premium h5 {
  color: #ffffff;
}

.section-subtitle {
  color: #cfe1f0;
}

/* Step cards */
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #2ecc71;
  color: #0b1621;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  color: #e5eef6;
  line-height: 1.65;
}

.step-highlight {
  border-color: rgba(46,204,113,.5);
}

/* Policy */
.policy-card {
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 28px;
}

.policy-title {
  font-weight: 800;
}

.policy-subtitle {
  font-size: 14px;
  color: #a8c0d6;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  display: flex;
  gap: 10px;
  color: #e6eef5;
  padding: 10px 0;
}

.tick {
  color: #2ecc71;
  font-weight: 900;
}

.policy-warning {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(46,204,113,.15);
  border-left: 4px solid #2ecc71;
  border-radius: 10px;
  color: #eafff3;
}

/* CTA */
.cta-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: 22px;
  padding: 28px;
  position: relative;
}

.cta-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2ecc71;
  color: #0b1621;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.cta-desc {
  color: #dce6ee;
}
/* ===== POLICY CLEAN LAYOUT ===== */
.policy-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-grid li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.policy-grid li:last-child {
  border-bottom: none;
}

.policy-icon {
  font-size: 22px;
  line-height: 1.2;
}

.policy-content strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

.policy-content p {
  margin: 0;
  color: #dce6ee;
  line-height: 1.7;
  max-width: 720px;
}

.policy-sublist {
  margin-top: 8px;
  padding-left: 18px;
}

.policy-sublist li {
  list-style: disc;
  color: #cfe1f0;
  font-size: 14px;
  margin-bottom: 4px;
}

.policy-warning {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid #2ecc71;
  background: rgba(46,204,113,.15);
  border-radius: 10px;
  color: #eafff3;
  line-height: 1.7;
}
/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    top: 50%;
    transform: translateY(-50%);
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    margin-top: 1rem;
    color: #e5e7eb;
}

/* ================= NAVIGATION ================= */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: all .25s ease;
}

.hero-nav:hover {
    background: rgba(0,0,0,0.55);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Mobile */
@media (max-width: 768px) {
    .hero-nav {
        width: 42px;
        height: 42px;
        font-size: 26px;
    }
}
/* ================= HERO EXPORTER ================= */
.hero-slider.exporter {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08); /* Cinematic zoom */
    z-index: 1;
}

/* Overlay */
.hero-slider.exporter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    max-width: 920px;
    margin: auto;
    color: #fff;
}

/* Text animation */
.fade-text {
    animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    font-size: 30px;
    z-index: 4;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.hero-prev { left: 26px; }
.hero-next { right: 26px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
}

.hero-dot.active {
    background: #2ecc71;
}
/* ================= TRUST & CERTIFICATION ================= */
.trust-certification {
  padding: 90px 0;
  background: linear-gradient(180deg, #0b1621 0%, #0e1c2a 100%);
  color: #e6eef5;
}

.trust-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 26px 22px;
  height: 100%;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}

.trust-box:hover {
  transform: translateY(-6px);
  border-color: rgba(46,204,113,.4);
}

.trust-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.trust-box h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-box p {
  color: #dce6ee;
  font-size: 14.5px;
  line-height: 1.65;
}

/* Compliance */
.compliance-box {
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.compliance-title {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compliance-list li {
  color: #e6eef5;
  padding: 8px 0;
  line-height: 1.65;
}

.compliance-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(46,204,113,.12);
  border-left: 4px solid #2ecc71;
  border-radius: 10px;
  color: #eafff3;
  font-size: 14px;
}
.navbar-premium {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-premium.scrolled {
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(14px);
}
.nav-trust {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-right: 14px;
}
.lang-switch {
  font-size: 13px;
  font-weight: 600;
  opacity: .85;
}
.lang-switch:hover {
  opacity: 1;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
  border-radius: 999px;
  font-weight: 700;
}
/* ================= NAVBAR EXPORTER ================= */

.navbar-premium {
  padding: 16px 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all .35s ease;
  z-index: 999;
}

.navbar-premium.scrolled {
  background: rgba(15,23,42,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.logo {
  height: 50px;
}

/* MENU */
.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #111827 !important;
  margin-left: 16px;
}

.navbar-premium.scrolled .nav-link {
  color: #e5e7eb !important;
}

.nav-link:hover {
  opacity: .9;
}

/* TRUST MICRO TEXT */
.nav-trust {
  font-size: 12px;
  font-weight: 500;
  color: rgba(17,24,39,.65);
  margin: 0 14px;
  white-space: nowrap;
}

.navbar-premium.scrolled .nav-trust {
  color: rgba(229,231,235,.7);
}

/* LANGUAGE */
.lang-switch {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  opacity: .85;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 12px 30px rgba(34,197,94,.35);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
}
.market-flag {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.buyer-notice {
  padding: 80px 0;
  background: linear-gradient(180deg,#0f172a,#0b1220);
}

.notice-box {
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 40px;
  color: #e5e7eb;
}

.notice-box h3 {
  font-weight: 800;
  margin-bottom: 20px;
}

.notice-box ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.notice-footer {
  margin-top: 20px;
  font-size: 14px;
  opacity: .85;
}
/* ================= EXPORT ABOUT + MARKETS ================= */
.export-about-markets{
  background:#f8fafc;
  padding:90px 0;
}

.export-about-wrap{
  padding-bottom: 10px;
}

.export-photo-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  background: #fff;
}

.export-photo{
  width:100%;
  height:auto;
  display:block;
  transform: scale(1.01);
  transition: transform .6s ease;
}

.export-photo-card:hover .export-photo{
  transform: scale(1.06);
}

.export-photo-badge{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:.2px;
  backdrop-filter: blur(8px);
}

.export-about-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.export-title{
  font-weight:800;
  letter-spacing:-.6px;
  margin-bottom:10px;
  color:#0f172a;
}

.export-subtitle{
  color:#334155;
  line-height:1.7;
  margin:0 0 14px 0;
}

.export-check{
  list-style:none;
  padding:0;
  margin:0;
}

.export-check li{
  padding:7px 0;
  color:#0f172a;
  font-weight:500;
}

.export-section-title{
  font-weight:800;
  letter-spacing:-.4px;
  color:#0f172a;
}

.export-section-sub{
  color:#64748b;
  margin:6px 0 0;
}

/* Market Cards */
.market-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:22px 20px;
  text-align:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  transition: transform .25s ease;
}

.market-card:hover{
  transform: translateY(-4px);
}

.market-tag{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background: rgba(22,163,74,.10);
  color:#15803d;
  font-weight:700;
  font-size:12px;
  margin-bottom:10px;
}

.market-card h4{
  font-weight:800;
  margin:0 0 8px;
  color:#0f172a;
}

.market-card p{
  margin:0;
  color:#475569;
}

/* Market Pills */
.market-pill{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:14px 10px;
  text-align:center;
  font-weight:700;
  color:#0f172a;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}
/* ================= EXPORTER PRO UPGRADE ================= */

.exporter-pro{
  background:#f8fafc;
}

/* Eyebrow */
.export-eyebrow{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background: rgba(22,163,74,.12);
  color:#15803d;
  font-size:12px;
  font-weight:700;
  margin-bottom:10px;
}

/* Trust badges */
.export-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.export-badges span{
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:#ecfdf5;
  color:#065f46;
  border:1px solid #bbf7d0;
}

/* Stats */
.export-stats{
  margin-top:40px;
}

.export-stat{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:18px 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}

.export-stat strong{
  display:block;
  font-weight:800;
  color:#0f172a;
  margin-bottom:4px;
}

.export-stat span{
  font-size:14px;
  color:#475569;
}
section[id] {
  scroll-margin-top: 100px;
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Poppins', sans-serif;
    color: #111827;
    background-color: #f8fafc;
}

section {
    padding: 90px 0;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

body {
  color: #374151;
}


/* =========================
   NAVBAR (EXPORT STYLE)
========================= */
.navbar-premium {
    background: transparent;
    padding: 18px 0;
    transition: all .3s ease;
}

.navbar-premium.scrolled {
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #e5e7eb !important;
}

.logo {
    height: 90px;
}

/* =========================
   HERO (EXPORT LOOK)
========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(15,23,42,.85), rgba(15,23,42,.65)),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 3.2rem;
}

.hero p {
    font-size: 1.1rem;
    color: #e5e7eb;
    max-width: 760px;
    margin: 0 auto;
}

/* =========================
   BUTTON (EXPORT STANDARD)
========================= */
.btn-success {
    background-color: #16a34a;
    border-color: #16a34a;
}

.btn-success:hover {
    background-color: #15803d;
    border-color: #15803d;
}

.btn-premium {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

/* =========================
   PRODUCT CARD
========================= */
.product-card {
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
    transition: transform .3s ease;
    background: #ffffff;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* =========================
   TRUST / INFO CARD
========================= */
.trust-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

/* =========================
   DARK SECTION
========================= */
.bg-dark {
    background-color: #1f2937 !important;
}

.bg-dark h2,
.bg-dark p {
    color: #e5e7eb;
}

/* =========================
   LIST
========================= */
.list-group-item {
    border-color: #e5e7eb;
    font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0f172a;
    color: #e5e7eb;
}

/* =========================
   FLOATING WA
========================= */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #16a34a;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }
}
.logo {
    height: 90px;
}

.navbar-premium {
    background: transparent;
    padding: 18px 0;
    transition: all .3s ease;
}

.navbar-premium.scrolled {
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #e5e7eb !important;
}

.nav-link:hover {
    color: #ffffff !important;
}
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-top: 1rem;
    opacity: 0.95;
}
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ABOUT PREMIUM */
.about-premium {
    background: #ffffff;
}

.about-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-trust-list {
    list-style: none;
    padding: 0;
}

.about-trust-list li {
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
}
/* Gender Image */
.gender-image {
    max-width: 520px;
    opacity: 0.95;
}
.order-step {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.order-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.step-number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: #1fa34a;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 15px;
  font-size: 18px;
}

.order-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.order-step.highlight {
  border: 1px solid rgba(31,163,74,0.4);
}
.order-premium{
  padding: 90px 0;
  background: radial-gradient(1100px 500px at 50% -100px, rgba(38,205,124,.14), rgba(0,0,0,0)),
              linear-gradient(180deg, #0f172a 0%, #0b1220 45%, #0b1220 100%);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.badge-soft{
  display:inline-flex;
  align-items:center;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 600;
  letter-spacing: .2px;
}

.section-title{
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0;
  color: #fff;
}

.section-subtitle{
  max-width: 820px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* Step cards */
.step-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.step-card:hover{
  transform: translateY(-4px);
  border-color: rgba(38,205,124,.30);
  background: rgba(255,255,255,.08);
}
.step-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.step-number{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: #0b1220;
  background: linear-gradient(135deg, #26cd7c, #1ea061);
}
.step-title{
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.step-desc{
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

/* Policy + CTA */
.policy-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.policy-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.policy-list{
  list-style:none;
  padding:0;
  margin:0;
}
.policy-list li{
  display:flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  color: rgba(255,255,255,.80);
  line-height: 1.65;
}
.policy-list li:last-child{ border-bottom: 0; }
.tick{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(38,205,124,.18);
  border: 1px solid rgba(38,205,124,.35);
  color:#8df0be;
  font-weight: 900;
  flex: 0 0 22px;
  margin-top: 2px;
}
.note-box{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(38,205,124,.25);
  background: rgba(38,205,124,.10);
  color: rgba(255,255,255,.86);
}

/* CTA card */
.cta-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  position: relative;
}
.cta-badge{
  position:absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(38,205,124,.14);
  border: 1px solid rgba(38,205,124,.25);
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.cta-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.cta-desc{
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  margin-bottom: 18px;
}

.btn-premium{
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 800 !important;
  letter-spacing: .2px;
  box-shadow: 0 16px 30px rgba(0,0,0,.20);
}

.cta-mini{
  font-size: 13px;
  color: rgba(255,255,255,.70);
}
.cta-mini a{ color: rgba(255,255,255,.90); text-decoration: underline; }

.trust-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-item{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.order-process-premium {
  background: radial-gradient(ellipse at top, #0f2537, #0b1724);
  padding: 90px 0;
  color: #e6eef5;
}

.badge-premium {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: .5px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #b8c6d4;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: .3s;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-card.highlight {
  border: 1px solid rgba(46,204,113,.5);
}

.step-number {
  width: 36px;
  height: 36px;
  background: #2ecc71;
  color: #0b1724;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.policy-box {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
}

.policy-list {
  padding-left: 18px;
}

.policy-list li {
  margin-bottom: 12px;
  color: #cfd9e2;
}

.policy-note {
  margin-top: 20px;
  padding: 14px;
  background: rgba(46,204,113,0.1);
  border-left: 4px solid #2ecc71;
  border-radius: 6px;
  font-size: 14px;
}

.cta-box {
  background: linear-gradient(180deg, #1b3a4b, #0f2537);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  position: relative;
}

.cta-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #2ecc71;
  color: #0b1724;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.btn-whatsapp-premium {
  background: #2ecc71;
  color: #0b1724;
  font-weight: 600;
  border-radius: 40px;
  padding: 14px 28px;
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
}

.btn-whatsapp-premium:hover {
  background: #27ae60;
  color: #fff;
}

.cta-features {
  margin-top: 16px;
  font-size: 13px;
  color: #b8c6d4;
}

.cta-features span {
  display: inline-block;
  margin-right: 10px;
}
.policy-box {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 34px;
  height: 100%;
}

.policy-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.policy-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #9fb3c8;
  margin-left: 6px;
}

.policy-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list-clean li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  color: #d6e1eb;
}

.policy-list-clean li:last-child {
  border-bottom: none;
}

.policy-list-clean .icon {
  font-size: 20px;
  line-height: 1.4;
}

.inner-list {
  margin-top: 8px;
  padding-left: 16px;
}

.inner-list li {
  list-style: disc;
  font-size: 14px;
  color: #c6d3de;
}

.policy-warning {
  margin-top: 22px;
  padding: 16px 18px;
  background: linear-gradient(
    90deg,
    rgba(46,204,113,0.15),
    rgba(46,204,113,0.05)
  );
  border-left: 4px solid #2ecc71;
  border-radius: 8px;
  font-size: 14.5px;
  color: #e9f7ef;
}
/* ===== TEXT VISIBILITY FIX ===== */
.section-dark,
.section-dark * {
  opacity: 1 !important;
}

/* Titles */
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
  font-weight: 700;
}

/* Subtitles */
.section-dark .subtitle,
.section-dark .section-subtitle {
  color: #eaf2f8;
  font-weight: 400;
}

/* Body text */
.section-dark p,
.section-dark li {
  color: #dce6ee;
  font-weight: 400;
}

/* Muted text (still readable) */
.section-dark .text-muted {
  color: #b9c7d6 !important;
}

/* Highlight / important text */
.text-highlight,
.policy-warning strong {
  color: #2ecc71;
  font-weight: 600;
}
.order-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.order-step-card h5 {
  color: #ffffff;
  font-weight: 600;
}

.order-step-card p {
  color: #dce6ee;
  font-size: 14.5px;
}
.policy-box {
  background: rgba(255,255,255,0.05);
}

.policy-box strong {
  color: #ffffff;
}

.policy-list-clean li {
  color: #dce6ee;
}

.policy-warning {
  color: #eafff3;
}
.section-dark {
  background: linear-gradient(
    180deg,
    #0e1c2a 0%,
    #0b1621 100%
  );
}
/* ===============================
   FORCE TEXT CONTRAST (FINAL FIX)
================================ */

/* Semua teks di section gelap */
.section-dark {
  color: #e6eef5;
}

/* Heading */
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: #ffffff !important;
  font-weight: 700;
}

/* Paragraph & list */
.section-dark p,
.section-dark li {
  color: #dce6ee !important;
  opacity: 1 !important;
}

/* Subtitle */
.section-dark .section-subtitle {
  color: #cfe0ee !important;
}

/* Step card text */
.section-dark .step-card p {
  color: #dbeafe !important;
}

/* Policy text */
.section-dark .policy-box,
.section-dark .policy-list-clean li {
  color: #e3edf6 !important;
}

/* Inner list */
.section-dark .inner-list li {
  color: #cfe0ee !important;
}

/* CTA */
.section-dark .cta-box p {
  color: #e8f2fb !important;
}

/* Strong / highlight */
.section-dark strong {
  color: #ffffff !important;
}

/* Warning box */
.section-dark .policy-warning {
  color: #f0fff6 !important;
}
.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.step-card {
  background: rgba(255,255,255,0.05);
}

.step-card p {
  color: #374151;   /* ← INI PENYEBAB UTAMA */
}
/* ===============================
   HARD OVERRIDE – FINAL FIX
================================ */

/* STEP CARD TEXT */
.order-process-premium .step-card p {
  color: #e6f1fb !important;
}

/* STEP TITLE */
.order-process-premium .step-card h5 {
  color: #ffffff !important;
}

/* POLICY TEXT */
.order-process-premium .policy-box,
.order-process-premium .policy-box p,
.order-process-premium .policy-list-clean li {
  color: #e8f2fb !important;
}

/* INNER LIST */
.order-process-premium .inner-list li {
  color: #cfe3f4 !important;
}

/* CTA TEXT */
.order-process-premium .cta-box p {
  color: #eaf4ff !important;
}

/* SUBTITLE */
.order-process-premium .section-subtitle {
  color: #d6e6f5 !important;
}

/* REMOVE DARK GLOBAL P COLOR */
.order-process-premium p {
  color: #e6f1fb !important;
}
.export-trust-note {
  background: linear-gradient(180deg, #0b1621, #0e1c2a);
  padding: 80px 0;
}

.export-trust-note .trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.export-trust-note h3 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.trust-list {
  list-style: disc;
  padding-left: 20px;
}

.trust-list li {
  color: #dce6ee;
  margin-bottom: 12px;
  line-height: 1.7;
}

.trust-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #9fb3c8;
  font-style: italic;
}
.export-trust-note {
  background: linear-gradient(180deg, #0b1621, #0e1c2a);
  padding: 80px 0;
}

.export-trust-note .trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.export-trust-note h3 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.trust-list {
  list-style: disc;
  padding-left: 20px;
}

.trust-list li {
  color: #dce6ee;
  margin-bottom: 12px;
  line-height: 1.7;
}

.trust-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #9fb3c8;
  font-style: italic;
}
/* ================================
   ANIMATED BACKGROUND – ORDER
================================ */
.order-process-premium {
  position: relative;
  overflow: hidden;
}

/* animated layer */
.order-bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      600px 300px at 20% 10%,
      rgba(46,204,113,0.12),
      transparent 60%
    ),
    radial-gradient(
      500px 260px at 80% 30%,
      rgba(46,204,113,0.10),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      #0e1c2a 0%,
      #0b1621 100%
    );
  animation: bgFloat 18s ease-in-out infinite alternate;
}

/* content always on top */
.order-process-premium .container {
  position: relative;
  z-index: 2;
}

/* animation */
@keyframes bgFloat {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      center;
  }
  100% {
    background-position:
      20% 10%,
      80% 20%,
      center;
  }
}
/* =====================================
   ORDER PROCESS – ANIMATED GRID BACKGROUND
===================================== */

.order-process-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #0e1c2a 0%,
    #0b1621 100%
  );
  color: #eaf2f8;
}

/* Grid Layer */
.order-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  opacity: 0.35;
  animation: gridMove 30s linear infinite;
}

/* Make sure content is on top */
.order-process-premium .container {
  position: relative;
  z-index: 2;
}

/* Animation */
@keyframes gridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 420px 420px, 420px 420px;
  }
}
.order-bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 220px at 15% 10%,
      rgba(46,204,113,0.10),
      transparent 60%
    ),
    radial-gradient(
      600px 260px at 85% 30%,
      rgba(46,204,113,0.08),
      transparent 65%
    );
}
/* =====================================
   FINAL EXPORT BACKGROUND SYSTEM
===================================== */

.order-process-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
  color: #eaf2f8;
}

/* === GRID BACKGROUND === */
.order-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
  animation: gridMove 32s linear infinite;
}

/* === FLOW LINES (ORDER → CARGO FEEL) === */
.order-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(46,204,113,0.10), transparent 60%),
    radial-gradient(700px 300px at 80% 30%, rgba(46,204,113,0.08), transparent 65%);
  animation: glowPulse 16s ease-in-out infinite alternate;
}

/* Ensure content on top */
.order-process-premium .container {
  position: relative;
  z-index: 3;
}

/* === STEP CARD === */
.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.step-card h5 {
  color: #ffffff;
  font-weight: 700;
}

.step-card p {
  color: #e3edf6;
}

/* === STEP NUMBER === */
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #26cd7c, #1ea061);
  color: #0b1220;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* === HIGHLIGHT PAYMENT STEP === */
.highlight-cutoff {
  border: 1.5px solid rgba(46,204,113,.65);
  box-shadow: 0 0 0 0 rgba(46,204,113,.45);
  animation: cutoffPulse 2.8s ease-in-out infinite;
}

/* === ANIMATIONS === */
@keyframes gridMove {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 440px 440px, 440px 440px; }
}

@keyframes glowPulse {
  from { opacity: .65; }
  to   { opacity: 1; }
}

@keyframes cutoffPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.order-process-premium {
  position: relative;
  overflow: hidden; /* WAJIB */
  isolation: isolate; /* SUPER PENTING */
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
  padding: 90px 0;
}
.order-bg-grid,
.order-bg-lines {
  pointer-events: none;
  max-height: 100%;
}
.order-process-premium .container {
  position: relative;
  z-index: 2;
}
.order-process-premium h2,
.order-process-premium h3,
.order-process-premium h4,
.order-process-premium h5 {
  color: #ffffff !important;
}

.order-process-premium p,
.order-process-premium li {
  color: #e6eef5 !important;
}

.order-process-premium .section-subtitle {
  color: #cfe1f0 !important;
}
/* ================= ORDER PROCESS SAFE ================= */
.order-process-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 0;
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
}

.order-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 50% -100px, rgba(38,205,124,.15), transparent),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  z-index: 0;
}

.order-process-premium .container {
  position: relative;
  z-index: 1;
}

/* Titles */
.order-process-premium h2,
.order-process-premium h4,
.order-process-premium h5 {
  color: #ffffff;
}

.section-subtitle {
  color: #cfe1f0;
}

/* Step cards */
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #2ecc71;
  color: #0b1621;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  color: #e5eef6;
  line-height: 1.65;
}

.step-highlight {
  border-color: rgba(46,204,113,.5);
}

/* Policy */
.policy-card {
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 28px;
}

.policy-title {
  font-weight: 800;
}

.policy-subtitle {
  font-size: 14px;
  color: #a8c0d6;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  display: flex;
  gap: 10px;
  color: #e6eef5;
  padding: 10px 0;
}

.tick {
  color: #2ecc71;
  font-weight: 900;
}

.policy-warning {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(46,204,113,.15);
  border-left: 4px solid #2ecc71;
  border-radius: 10px;
  color: #eafff3;
}

/* CTA */
.cta-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: 22px;
  padding: 28px;
  position: relative;
}

.cta-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2ecc71;
  color: #0b1621;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.cta-desc {
  color: #dce6ee;
}
/* ===== POLICY CLEAN LAYOUT ===== */
.policy-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-grid li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.policy-grid li:last-child {
  border-bottom: none;
}

.policy-icon {
  font-size: 22px;
  line-height: 1.2;
}

.policy-content strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

.policy-content p {
  margin: 0;
  color: #dce6ee;
  line-height: 1.7;
  max-width: 720px;
}

.policy-sublist {
  margin-top: 8px;
  padding-left: 18px;
}

.policy-sublist li {
  list-style: disc;
  color: #cfe1f0;
  font-size: 14px;
  margin-bottom: 4px;
}

.policy-warning {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid #2ecc71;
  background: rgba(46,204,113,.15);
  border-radius: 10px;
  color: #eafff3;
  line-height: 1.7;
}
/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    top: 50%;
    transform: translateY(-50%);
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    margin-top: 1rem;
    color: #e5e7eb;
}

/* ================= NAVIGATION ================= */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: all .25s ease;
}

.hero-nav:hover {
    background: rgba(0,0,0,0.55);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Mobile */
@media (max-width: 768px) {
    .hero-nav {
        width: 42px;
        height: 42px;
        font-size: 26px;
    }
}
/* ================= HERO EXPORTER ================= */
.hero-slider.exporter {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08); /* Cinematic zoom */
    z-index: 1;
}

/* Overlay */
.hero-slider.exporter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    max-width: 920px;
    margin: auto;
    color: #fff;
}

/* Text animation */
.fade-text {
    animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    font-size: 30px;
    z-index: 4;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.hero-prev { left: 26px; }
.hero-next { right: 26px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
}

.hero-dot.active {
    background: #2ecc71;
}
/* ================= TRUST & CERTIFICATION ================= */
.trust-certification {
  padding: 90px 0;
  background: linear-gradient(180deg, #0b1621 0%, #0e1c2a 100%);
  color: #e6eef5;
}

.trust-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 26px 22px;
  height: 100%;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}

.trust-box:hover {
  transform: translateY(-6px);
  border-color: rgba(46,204,113,.4);
}

.trust-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.trust-box h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-box p {
  color: #dce6ee;
  font-size: 14.5px;
  line-height: 1.65;
}

/* Compliance */
.compliance-box {
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.compliance-title {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compliance-list li {
  color: #e6eef5;
  padding: 8px 0;
  line-height: 1.65;
}

.compliance-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(46,204,113,.12);
  border-left: 4px solid #2ecc71;
  border-radius: 10px;
  color: #eafff3;
  font-size: 14px;
}
.navbar-premium {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-premium.scrolled {
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(14px);
}
.nav-trust {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-right: 14px;
}
.lang-switch {
  font-size: 13px;
  font-weight: 600;
  opacity: .85;
}
.lang-switch:hover {
  opacity: 1;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
  border-radius: 999px;
  font-weight: 700;
}
/* ================= NAVBAR EXPORTER ================= */

.navbar-premium {
  padding: 16px 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all .35s ease;
  z-index: 999;
}

.navbar-premium.scrolled {
  background: rgba(15,23,42,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.logo {
  height: 50px;
}

/* MENU */
.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #111827 !important;
  margin-left: 16px;
}

.navbar-premium.scrolled .nav-link {
  color: #e5e7eb !important;
}

.nav-link:hover {
  opacity: .9;
}

/* TRUST MICRO TEXT */
.nav-trust {
  font-size: 12px;
  font-weight: 500;
  color: rgba(17,24,39,.65);
  margin: 0 14px;
  white-space: nowrap;
}

.navbar-premium.scrolled .nav-trust {
  color: rgba(229,231,235,.7);
}

/* LANGUAGE */
.lang-switch {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  opacity: .85;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 12px 30px rgba(34,197,94,.35);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
}
.market-flag {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.buyer-notice {
  padding: 80px 0;
  background: linear-gradient(180deg,#0f172a,#0b1220);
}

.notice-box {
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 40px;
  color: #e5e7eb;
}

.notice-box h3 {
  font-weight: 800;
  margin-bottom: 20px;
}

.notice-box ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.notice-footer {
  margin-top: 20px;
  font-size: 14px;
  opacity: .85;
}
/* ================= EXPORT ABOUT + MARKETS ================= */
.export-about-markets{
  background:#f8fafc;
  padding:90px 0;
}

.export-about-wrap{
  padding-bottom: 10px;
}

.export-photo-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  background: #fff;
}

.export-photo{
  width:100%;
  height:auto;
  display:block;
  transform: scale(1.01);
  transition: transform .6s ease;
}

.export-photo-card:hover .export-photo{
  transform: scale(1.06);
}

.export-photo-badge{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:.2px;
  backdrop-filter: blur(8px);
}

.export-about-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.export-title{
  font-weight:800;
  letter-spacing:-.6px;
  margin-bottom:10px;
  color:#0f172a;
}

.export-subtitle{
  color:#334155;
  line-height:1.7;
  margin:0 0 14px 0;
}

.export-check{
  list-style:none;
  padding:0;
  margin:0;
}

.export-check li{
  padding:7px 0;
  color:#0f172a;
  font-weight:500;
}

.export-section-title{
  font-weight:800;
  letter-spacing:-.4px;
  color:#0f172a;
}

.export-section-sub{
  color:#64748b;
  margin:6px 0 0;
}

/* Market Cards */
.market-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:22px 20px;
  text-align:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  transition: transform .25s ease;
}

.market-card:hover{
  transform: translateY(-4px);
}

.market-tag{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background: rgba(22,163,74,.10);
  color:#15803d;
  font-weight:700;
  font-size:12px;
  margin-bottom:10px;
}

.market-card h4{
  font-weight:800;
  margin:0 0 8px;
  color:#0f172a;
}

.market-card p{
  margin:0;
  color:#475569;
}

/* Market Pills */
.market-pill{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:14px 10px;
  text-align:center;
  font-weight:700;
  color:#0f172a;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}
/* ================= EXPORTER PRO UPGRADE ================= */

.exporter-pro{
  background:#f8fafc;
}

/* Eyebrow */
.export-eyebrow{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background: rgba(22,163,74,.12);
  color:#15803d;
  font-size:12px;
  font-weight:700;
  margin-bottom:10px;
}

/* Trust badges */
.export-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.export-badges span{
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:#ecfdf5;
  color:#065f46;
  border:1px solid #bbf7d0;
}

/* Stats */
.export-stats{
  margin-top:40px;
}

.export-stat{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:18px 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}

.export-stat strong{
  display:block;
  font-weight:800;
  color:#0f172a;
  margin-bottom:4px;
}

.export-stat span{
  font-size:14px;
  color:#475569;
}
section[id] {
  scroll-margin-top: 100px;
}
/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

  body {
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

}
@media (max-width: 768px) {

  .navbar-premium {
    padding: 10px 0;
  }

  .navbar-brand img.logo {
    height: 36px;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 15px;
  }

  .nav-trust {
    display: none !important;
  }

}
@media (max-width: 768px) {

  .hero-slider {
    min-height: 70vh;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

}
@media (max-width: 768px) {

  .trust-box,
  .step-card,
  .market-card,
  .policy-card,
  .cta-card {
    padding: 18px;
  }

  .trust-box h5,
  .step-title {
    font-size: 16px;
  }

  .trust-box p,
  .step-desc {
    font-size: 14px;
  }

}
@media (max-width: 768px) {

  .row > [class*="col-"] {
    margin-bottom: 16px;
  }

  .export-stats .export-stat {
    padding: 12px;
    font-size: 14px;
  }

}
@media (max-width: 768px) {

  img {
    max-width: 100%;
    height: auto;
  }

  iframe {
    max-width: 100%;
  }

}
@media (max-width: 768px) {

  .btn,
  .btn-premium,
  .btn-whatsapp {
    padding: 12px 18px;
    font-size: 15px;
  }

}
@media (max-width: 768px) {

  footer {
    text-align: center;
  }

  footer .col-md-4 {
    margin-bottom: 24px;
  }

}
.hero-slide {
  will-change: opacity;
}

img {
  image-rendering: auto;
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Poppins', sans-serif;
    color: #111827;
    background-color: #f8fafc;
}

section {
    padding: 90px 0;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

body {
  color: #374151;
}


/* =========================
   NAVBAR (EXPORT STYLE)
========================= */
.navbar-premium {
    background: transparent;
    padding: 18px 0;
    transition: all .3s ease;
}

.navbar-premium.scrolled {
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #e5e7eb !important;
}

.logo {
    height: 90px;
}

/* =========================
   HERO (EXPORT LOOK)
========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(15,23,42,.85), rgba(15,23,42,.65)),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 3.2rem;
}

.hero p {
    font-size: 1.1rem;
    color: #e5e7eb;
    max-width: 760px;
    margin: 0 auto;
}

/* =========================
   BUTTON (EXPORT STANDARD)
========================= */
.btn-success {
    background-color: #16a34a;
    border-color: #16a34a;
}

.btn-success:hover {
    background-color: #15803d;
    border-color: #15803d;
}

.btn-premium {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

/* =========================
   PRODUCT CARD
========================= */
.product-card {
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
    transition: transform .3s ease;
    background: #ffffff;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* =========================
   TRUST / INFO CARD
========================= */
.trust-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

/* =========================
   DARK SECTION
========================= */
.bg-dark {
    background-color: #1f2937 !important;
}

.bg-dark h2,
.bg-dark p {
    color: #e5e7eb;
}

/* =========================
   LIST
========================= */
.list-group-item {
    border-color: #e5e7eb;
    font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0f172a;
    color: #e5e7eb;
}

/* =========================
   FLOATING WA
========================= */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #16a34a;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }
}
.logo {
    height: 90px;
}

.navbar-premium {
    background: transparent;
    padding: 18px 0;
    transition: all .3s ease;
}

.navbar-premium.scrolled {
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #e5e7eb !important;
}

.nav-link:hover {
    color: #ffffff !important;
}
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-top: 1rem;
    opacity: 0.95;
}
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ABOUT PREMIUM */
.about-premium {
    background: #ffffff;
}

.about-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-trust-list {
    list-style: none;
    padding: 0;
}

.about-trust-list li {
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
}
/* Gender Image */
.gender-image {
    max-width: 520px;
    opacity: 0.95;
}
.order-step {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.order-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.step-number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: #1fa34a;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 15px;
  font-size: 18px;
}

.order-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.order-step.highlight {
  border: 1px solid rgba(31,163,74,0.4);
}
.order-premium{
  padding: 90px 0;
  background: radial-gradient(1100px 500px at 50% -100px, rgba(38,205,124,.14), rgba(0,0,0,0)),
              linear-gradient(180deg, #0f172a 0%, #0b1220 45%, #0b1220 100%);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.badge-soft{
  display:inline-flex;
  align-items:center;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 600;
  letter-spacing: .2px;
}

.section-title{
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0;
  color: #fff;
}

.section-subtitle{
  max-width: 820px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* Step cards */
.step-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.step-card:hover{
  transform: translateY(-4px);
  border-color: rgba(38,205,124,.30);
  background: rgba(255,255,255,.08);
}
.step-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.step-number{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: #0b1220;
  background: linear-gradient(135deg, #26cd7c, #1ea061);
}
.step-title{
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.step-desc{
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

/* Policy + CTA */
.policy-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.policy-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.policy-list{
  list-style:none;
  padding:0;
  margin:0;
}
.policy-list li{
  display:flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  color: rgba(255,255,255,.80);
  line-height: 1.65;
}
.policy-list li:last-child{ border-bottom: 0; }
.tick{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(38,205,124,.18);
  border: 1px solid rgba(38,205,124,.35);
  color:#8df0be;
  font-weight: 900;
  flex: 0 0 22px;
  margin-top: 2px;
}
.note-box{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(38,205,124,.25);
  background: rgba(38,205,124,.10);
  color: rgba(255,255,255,.86);
}

/* CTA card */
.cta-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  position: relative;
}
.cta-badge{
  position:absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(38,205,124,.14);
  border: 1px solid rgba(38,205,124,.25);
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.cta-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.cta-desc{
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  margin-bottom: 18px;
}

.btn-premium{
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 800 !important;
  letter-spacing: .2px;
  box-shadow: 0 16px 30px rgba(0,0,0,.20);
}

.cta-mini{
  font-size: 13px;
  color: rgba(255,255,255,.70);
}
.cta-mini a{ color: rgba(255,255,255,.90); text-decoration: underline; }

.trust-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-item{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.order-process-premium {
  background: radial-gradient(ellipse at top, #0f2537, #0b1724);
  padding: 90px 0;
  color: #e6eef5;
}

.badge-premium {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: .5px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #b8c6d4;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: .3s;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-card.highlight {
  border: 1px solid rgba(46,204,113,.5);
}

.step-number {
  width: 36px;
  height: 36px;
  background: #2ecc71;
  color: #0b1724;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.policy-box {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
}

.policy-list {
  padding-left: 18px;
}

.policy-list li {
  margin-bottom: 12px;
  color: #cfd9e2;
}

.policy-note {
  margin-top: 20px;
  padding: 14px;
  background: rgba(46,204,113,0.1);
  border-left: 4px solid #2ecc71;
  border-radius: 6px;
  font-size: 14px;
}

.cta-box {
  background: linear-gradient(180deg, #1b3a4b, #0f2537);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  position: relative;
}

.cta-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #2ecc71;
  color: #0b1724;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.btn-whatsapp-premium {
  background: #2ecc71;
  color: #0b1724;
  font-weight: 600;
  border-radius: 40px;
  padding: 14px 28px;
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
}

.btn-whatsapp-premium:hover {
  background: #27ae60;
  color: #fff;
}

.cta-features {
  margin-top: 16px;
  font-size: 13px;
  color: #b8c6d4;
}

.cta-features span {
  display: inline-block;
  margin-right: 10px;
}
.policy-box {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 34px;
  height: 100%;
}

.policy-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.policy-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #9fb3c8;
  margin-left: 6px;
}

.policy-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list-clean li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  color: #d6e1eb;
}

.policy-list-clean li:last-child {
  border-bottom: none;
}

.policy-list-clean .icon {
  font-size: 20px;
  line-height: 1.4;
}

.inner-list {
  margin-top: 8px;
  padding-left: 16px;
}

.inner-list li {
  list-style: disc;
  font-size: 14px;
  color: #c6d3de;
}

.policy-warning {
  margin-top: 22px;
  padding: 16px 18px;
  background: linear-gradient(
    90deg,
    rgba(46,204,113,0.15),
    rgba(46,204,113,0.05)
  );
  border-left: 4px solid #2ecc71;
  border-radius: 8px;
  font-size: 14.5px;
  color: #e9f7ef;
}
/* ===== TEXT VISIBILITY FIX ===== */
.section-dark,
.section-dark * {
  opacity: 1 !important;
}

/* Titles */
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
  font-weight: 700;
}

/* Subtitles */
.section-dark .subtitle,
.section-dark .section-subtitle {
  color: #eaf2f8;
  font-weight: 400;
}

/* Body text */
.section-dark p,
.section-dark li {
  color: #dce6ee;
  font-weight: 400;
}

/* Muted text (still readable) */
.section-dark .text-muted {
  color: #b9c7d6 !important;
}

/* Highlight / important text */
.text-highlight,
.policy-warning strong {
  color: #2ecc71;
  font-weight: 600;
}
.order-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.order-step-card h5 {
  color: #ffffff;
  font-weight: 600;
}

.order-step-card p {
  color: #dce6ee;
  font-size: 14.5px;
}
.policy-box {
  background: rgba(255,255,255,0.05);
}

.policy-box strong {
  color: #ffffff;
}

.policy-list-clean li {
  color: #dce6ee;
}

.policy-warning {
  color: #eafff3;
}
.section-dark {
  background: linear-gradient(
    180deg,
    #0e1c2a 0%,
    #0b1621 100%
  );
}
/* ===============================
   FORCE TEXT CONTRAST (FINAL FIX)
================================ */

/* Semua teks di section gelap */
.section-dark {
  color: #e6eef5;
}

/* Heading */
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: #ffffff !important;
  font-weight: 700;
}

/* Paragraph & list */
.section-dark p,
.section-dark li {
  color: #dce6ee !important;
  opacity: 1 !important;
}

/* Subtitle */
.section-dark .section-subtitle {
  color: #cfe0ee !important;
}

/* Step card text */
.section-dark .step-card p {
  color: #dbeafe !important;
}

/* Policy text */
.section-dark .policy-box,
.section-dark .policy-list-clean li {
  color: #e3edf6 !important;
}

/* Inner list */
.section-dark .inner-list li {
  color: #cfe0ee !important;
}

/* CTA */
.section-dark .cta-box p {
  color: #e8f2fb !important;
}

/* Strong / highlight */
.section-dark strong {
  color: #ffffff !important;
}

/* Warning box */
.section-dark .policy-warning {
  color: #f0fff6 !important;
}
.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.step-card {
  background: rgba(255,255,255,0.05);
}

.step-card p {
  color: #374151;   /* ← INI PENYEBAB UTAMA */
}
/* ===============================
   HARD OVERRIDE – FINAL FIX
================================ */

/* STEP CARD TEXT */
.order-process-premium .step-card p {
  color: #e6f1fb !important;
}

/* STEP TITLE */
.order-process-premium .step-card h5 {
  color: #ffffff !important;
}

/* POLICY TEXT */
.order-process-premium .policy-box,
.order-process-premium .policy-box p,
.order-process-premium .policy-list-clean li {
  color: #e8f2fb !important;
}

/* INNER LIST */
.order-process-premium .inner-list li {
  color: #cfe3f4 !important;
}

/* CTA TEXT */
.order-process-premium .cta-box p {
  color: #eaf4ff !important;
}

/* SUBTITLE */
.order-process-premium .section-subtitle {
  color: #d6e6f5 !important;
}

/* REMOVE DARK GLOBAL P COLOR */
.order-process-premium p {
  color: #e6f1fb !important;
}
.export-trust-note {
  background: linear-gradient(180deg, #0b1621, #0e1c2a);
  padding: 80px 0;
}

.export-trust-note .trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.export-trust-note h3 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.trust-list {
  list-style: disc;
  padding-left: 20px;
}

.trust-list li {
  color: #dce6ee;
  margin-bottom: 12px;
  line-height: 1.7;
}

.trust-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #9fb3c8;
  font-style: italic;
}
.export-trust-note {
  background: linear-gradient(180deg, #0b1621, #0e1c2a);
  padding: 80px 0;
}

.export-trust-note .trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.export-trust-note h3 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.trust-list {
  list-style: disc;
  padding-left: 20px;
}

.trust-list li {
  color: #dce6ee;
  margin-bottom: 12px;
  line-height: 1.7;
}

.trust-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #9fb3c8;
  font-style: italic;
}
/* ================================
   ANIMATED BACKGROUND – ORDER
================================ */
.order-process-premium {
  position: relative;
  overflow: hidden;
}

/* animated layer */
.order-bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      600px 300px at 20% 10%,
      rgba(46,204,113,0.12),
      transparent 60%
    ),
    radial-gradient(
      500px 260px at 80% 30%,
      rgba(46,204,113,0.10),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      #0e1c2a 0%,
      #0b1621 100%
    );
  animation: bgFloat 18s ease-in-out infinite alternate;
}

/* content always on top */
.order-process-premium .container {
  position: relative;
  z-index: 2;
}

/* animation */
@keyframes bgFloat {
  0% {
    background-position:
      0% 0%,
      100% 0%,
      center;
  }
  100% {
    background-position:
      20% 10%,
      80% 20%,
      center;
  }
}
/* =====================================
   ORDER PROCESS – ANIMATED GRID BACKGROUND
===================================== */

.order-process-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #0e1c2a 0%,
    #0b1621 100%
  );
  color: #eaf2f8;
}

/* Grid Layer */
.order-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  opacity: 0.35;
  animation: gridMove 30s linear infinite;
}

/* Make sure content is on top */
.order-process-premium .container {
  position: relative;
  z-index: 2;
}

/* Animation */
@keyframes gridMove {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 420px 420px, 420px 420px;
  }
}
.order-bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 220px at 15% 10%,
      rgba(46,204,113,0.10),
      transparent 60%
    ),
    radial-gradient(
      600px 260px at 85% 30%,
      rgba(46,204,113,0.08),
      transparent 65%
    );
}
/* =====================================
   FINAL EXPORT BACKGROUND SYSTEM
===================================== */

.order-process-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
  color: #eaf2f8;
}

/* === GRID BACKGROUND === */
.order-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
  animation: gridMove 32s linear infinite;
}

/* === FLOW LINES (ORDER → CARGO FEEL) === */
.order-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(46,204,113,0.10), transparent 60%),
    radial-gradient(700px 300px at 80% 30%, rgba(46,204,113,0.08), transparent 65%);
  animation: glowPulse 16s ease-in-out infinite alternate;
}

/* Ensure content on top */
.order-process-premium .container {
  position: relative;
  z-index: 3;
}

/* === STEP CARD === */
.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.step-card h5 {
  color: #ffffff;
  font-weight: 700;
}

.step-card p {
  color: #e3edf6;
}

/* === STEP NUMBER === */
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #26cd7c, #1ea061);
  color: #0b1220;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* === HIGHLIGHT PAYMENT STEP === */
.highlight-cutoff {
  border: 1.5px solid rgba(46,204,113,.65);
  box-shadow: 0 0 0 0 rgba(46,204,113,.45);
  animation: cutoffPulse 2.8s ease-in-out infinite;
}

/* === ANIMATIONS === */
@keyframes gridMove {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 440px 440px, 440px 440px; }
}

@keyframes glowPulse {
  from { opacity: .65; }
  to   { opacity: 1; }
}

@keyframes cutoffPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.order-process-premium {
  position: relative;
  overflow: hidden; /* WAJIB */
  isolation: isolate; /* SUPER PENTING */
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
  padding: 90px 0;
}
.order-bg-grid,
.order-bg-lines {
  pointer-events: none;
  max-height: 100%;
}
.order-process-premium .container {
  position: relative;
  z-index: 2;
}
.order-process-premium h2,
.order-process-premium h3,
.order-process-premium h4,
.order-process-premium h5 {
  color: #ffffff !important;
}

.order-process-premium p,
.order-process-premium li {
  color: #e6eef5 !important;
}

.order-process-premium .section-subtitle {
  color: #cfe1f0 !important;
}
/* ================= ORDER PROCESS SAFE ================= */
.order-process-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 0;
  background: linear-gradient(180deg, #0e1c2a 0%, #0b1621 100%);
}

.order-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 50% -100px, rgba(38,205,124,.15), transparent),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent);
  z-index: 0;
}

.order-process-premium .container {
  position: relative;
  z-index: 1;
}

/* Titles */
.order-process-premium h2,
.order-process-premium h4,
.order-process-premium h5 {
  color: #ffffff;
}

.section-subtitle {
  color: #cfe1f0;
}

/* Step cards */
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #2ecc71;
  color: #0b1621;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.step-desc {
  color: #e5eef6;
  line-height: 1.65;
}

.step-highlight {
  border-color: rgba(46,204,113,.5);
}

/* Policy */
.policy-card {
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 28px;
}

.policy-title {
  font-weight: 800;
}

.policy-subtitle {
  font-size: 14px;
  color: #a8c0d6;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  display: flex;
  gap: 10px;
  color: #e6eef5;
  padding: 10px 0;
}

.tick {
  color: #2ecc71;
  font-weight: 900;
}

.policy-warning {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(46,204,113,.15);
  border-left: 4px solid #2ecc71;
  border-radius: 10px;
  color: #eafff3;
}

/* CTA */
.cta-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: 22px;
  padding: 28px;
  position: relative;
}

.cta-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2ecc71;
  color: #0b1621;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.cta-desc {
  color: #dce6ee;
}
/* ===== POLICY CLEAN LAYOUT ===== */
.policy-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-grid li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.policy-grid li:last-child {
  border-bottom: none;
}

.policy-icon {
  font-size: 22px;
  line-height: 1.2;
}

.policy-content strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

.policy-content p {
  margin: 0;
  color: #dce6ee;
  line-height: 1.7;
  max-width: 720px;
}

.policy-sublist {
  margin-top: 8px;
  padding-left: 18px;
}

.policy-sublist li {
  list-style: disc;
  color: #cfe1f0;
  font-size: 14px;
  margin-bottom: 4px;
}

.policy-warning {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid #2ecc71;
  background: rgba(46,204,113,.15);
  border-radius: 10px;
  color: #eafff3;
  line-height: 1.7;
}
/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    top: 50%;
    transform: translateY(-50%);
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    margin-top: 1rem;
    color: #e5e7eb;
}

/* ================= NAVIGATION ================= */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: all .25s ease;
}

.hero-nav:hover {
    background: rgba(0,0,0,0.55);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Mobile */
@media (max-width: 768px) {
    .hero-nav {
        width: 42px;
        height: 42px;
        font-size: 26px;
    }
}
/* ================= HERO EXPORTER ================= */
.hero-slider.exporter {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08); /* Cinematic zoom */
    z-index: 1;
}

/* Overlay */
.hero-slider.exporter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    max-width: 920px;
    margin: auto;
    color: #fff;
}

/* Text animation */
.fade-text {
    animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    font-size: 30px;
    z-index: 4;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.hero-prev { left: 26px; }
.hero-next { right: 26px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
}

.hero-dot.active {
    background: #2ecc71;
}
/* ================= TRUST & CERTIFICATION ================= */
.trust-certification {
  padding: 90px 0;
  background: linear-gradient(180deg, #0b1621 0%, #0e1c2a 100%);
  color: #e6eef5;
}

.trust-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 26px 22px;
  height: 100%;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}

.trust-box:hover {
  transform: translateY(-6px);
  border-color: rgba(46,204,113,.4);
}

.trust-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.trust-box h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-box p {
  color: #dce6ee;
  font-size: 14.5px;
  line-height: 1.65;
}

/* Compliance */
.compliance-box {
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.compliance-title {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compliance-list li {
  color: #e6eef5;
  padding: 8px 0;
  line-height: 1.65;
}

.compliance-note {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(46,204,113,.12);
  border-left: 4px solid #2ecc71;
  border-radius: 10px;
  color: #eafff3;
  font-size: 14px;
}
.navbar-premium {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-premium.scrolled {
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(14px);
}
.nav-trust {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-right: 14px;
}
.lang-switch {
  font-size: 13px;
  font-weight: 600;
  opacity: .85;
}
.lang-switch:hover {
  opacity: 1;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
  border-radius: 999px;
  font-weight: 700;
}
/* ================= NAVBAR EXPORTER ================= */

.navbar-premium {
  padding: 16px 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all .35s ease;
  z-index: 999;
}

.navbar-premium.scrolled {
  background: rgba(15,23,42,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.logo {
  height: 50px;
}

/* MENU */
.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #111827 !important;
  margin-left: 16px;
}

.navbar-premium.scrolled .nav-link {
  color: #e5e7eb !important;
}

.nav-link:hover {
  opacity: .9;
}

/* TRUST MICRO TEXT */
.nav-trust {
  font-size: 12px;
  font-weight: 500;
  color: rgba(17,24,39,.65);
  margin: 0 14px;
  white-space: nowrap;
}

.navbar-premium.scrolled .nav-trust {
  color: rgba(229,231,235,.7);
}

/* LANGUAGE */
.lang-switch {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  opacity: .85;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 12px 30px rgba(34,197,94,.35);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
}
.market-flag {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.buyer-notice {
  padding: 80px 0;
  background: linear-gradient(180deg,#0f172a,#0b1220);
}

.notice-box {
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 40px;
  color: #e5e7eb;
}

.notice-box h3 {
  font-weight: 800;
  margin-bottom: 20px;
}

.notice-box ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.notice-footer {
  margin-top: 20px;
  font-size: 14px;
  opacity: .85;
}
/* ================= EXPORT ABOUT + MARKETS ================= */
.export-about-markets{
  background:#f8fafc;
  padding:90px 0;
}

.export-about-wrap{
  padding-bottom: 10px;
}

.export-photo-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  background: #fff;
}

.export-photo{
  width:100%;
  height:auto;
  display:block;
  transform: scale(1.01);
  transition: transform .6s ease;
}

.export-photo-card:hover .export-photo{
  transform: scale(1.06);
}

.export-photo-badge{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(15,23,42,.78);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:.2px;
  backdrop-filter: blur(8px);
}

.export-about-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:28px;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.export-title{
  font-weight:800;
  letter-spacing:-.6px;
  margin-bottom:10px;
  color:#0f172a;
}

.export-subtitle{
  color:#334155;
  line-height:1.7;
  margin:0 0 14px 0;
}

.export-check{
  list-style:none;
  padding:0;
  margin:0;
}

.export-check li{
  padding:7px 0;
  color:#0f172a;
  font-weight:500;
}

.export-section-title{
  font-weight:800;
  letter-spacing:-.4px;
  color:#0f172a;
}

.export-section-sub{
  color:#64748b;
  margin:6px 0 0;
}

/* Market Cards */
.market-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:22px 20px;
  text-align:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  transition: transform .25s ease;
}

.market-card:hover{
  transform: translateY(-4px);
}

.market-tag{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background: rgba(22,163,74,.10);
  color:#15803d;
  font-weight:700;
  font-size:12px;
  margin-bottom:10px;
}

.market-card h4{
  font-weight:800;
  margin:0 0 8px;
  color:#0f172a;
}

.market-card p{
  margin:0;
  color:#475569;
}

/* Market Pills */
.market-pill{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:14px 10px;
  text-align:center;
  font-weight:700;
  color:#0f172a;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}
/* ================= EXPORTER PRO UPGRADE ================= */

.exporter-pro{
  background:#f8fafc;
}

/* Eyebrow */
.export-eyebrow{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background: rgba(22,163,74,.12);
  color:#15803d;
  font-size:12px;
  font-weight:700;
  margin-bottom:10px;
}

/* Trust badges */
.export-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.export-badges span{
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:#ecfdf5;
  color:#065f46;
  border:1px solid #bbf7d0;
}

/* Stats */
.export-stats{
  margin-top:40px;
}

.export-stat{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:18px 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}

.export-stat strong{
  display:block;
  font-weight:800;
  color:#0f172a;
  margin-bottom:4px;
}

.export-stat span{
  font-size:14px;
  color:#475569;
}
section[id] {
  scroll-margin-top: 100px;
}
/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

  body {
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

}
@media (max-width: 768px) {

  .navbar-premium {
    padding: 10px 0;
  }

  .navbar-brand img.logo {
    height: 36px;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 15px;
  }

  .nav-trust {
    display: none !important;
  }

}
@media (max-width: 768px) {

  .hero-slider {
    min-height: 70vh;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

}
@media (max-width: 768px) {

  .trust-box,
  .step-card,
  .market-card,
  .policy-card,
  .cta-card {
    padding: 18px;
  }

  .trust-box h5,
  .step-title {
    font-size: 16px;
  }

  .trust-box p,
  .step-desc {
    font-size: 14px;
  }

}
@media (max-width: 768px) {

  .row > [class*="col-"] {
    margin-bottom: 16px;
  }

  .export-stats .export-stat {
    padding: 12px;
    font-size: 14px;
  }

}
@media (max-width: 768px) {

  img {
    max-width: 100%;
    height: auto;
  }

  iframe {
    max-width: 100%;
  }

}
@media (max-width: 768px) {

  .btn,
  .btn-premium,
  .btn-whatsapp {
    padding: 12px 18px;
    font-size: 15px;
  }

}
@media (max-width: 768px) {

  footer {
    text-align: center;
  }

  footer .col-md-4 {
    margin-bottom: 24px;
  }

}
.hero-slide {
  will-change: opacity;
}

img {
  image-rendering: auto;
}
/* ================= HERO MOBILE FIX ================= */
@media (max-width: 768px) {

  .hero-content {
    padding: 0 20px;
    z-index: 5;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  /* Dorong tombol slider ke samping & tengah */
  .hero-nav {
    top: 55%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    font-size: 20px;
    opacity: 0.85;
  }

  .hero-prev {
    left: 6px;
  }

  .hero-next {
    right: 6px;
  }

}
