/* ============================================
   ODZRESHOP — Landing Page
   ============================================ */
.landing {
  width: 1240px;
  background: linear-gradient(180deg, #FBF9FF 0%, #F4F0FE 60%, #EDE7FC 100%);
  font-family: var(--font);
  color: var(--ink);
}

/* ---------- Navbar ---------- */
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196,181,253,.35);
  position: sticky; top: 0; z-index: 10;
}
.landing-nav-links { display: flex; gap: 34px; }
.landing-nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--text-body);
  transition: color .15s ease;
}
.landing-nav-links a:hover, .landing-nav-links a.active { color: var(--purple-700); }

/* ---------- Hero ---------- */
.landing-hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 30px;
  align-items: center;
  padding: 56px 48px 40px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600;
  color: var(--purple-700);
  background: var(--purple-100);
  border: 1px solid var(--purple-200);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.015em;
  color: var(--purple-950);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(92deg, var(--purple-600), var(--purple-400) 55%, #3B82F6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; }
.hero-meta {
  display: flex; gap: 26px; margin-top: 30px;
  font-size: 12.5px; color: var(--text-soft); font-weight: 600;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta .ic { color: var(--green); }

/* --- Hero API diagram --- */
.hero-art { position: relative; height: 430px; }
.api-hub {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 128px; height: 128px;
  border-radius: 30px;
  background: linear-gradient(140deg, var(--purple-600), var(--purple-800));
  box-shadow: 0 18px 44px rgba(76,29,149,.42);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  color: #fff; z-index: 2;
}
.api-hub b { font-size: 15px; letter-spacing: .06em; }
.api-node {
  position: absolute;
  width: 92px; height: 92px;
  border-radius: 24px;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: 0 12px 30px rgba(46,16,101,.14);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; color: var(--ink);
  z-index: 2;
}
.api-node small { font-size: 9.5px; font-weight: 600; color: var(--text-soft); }
.node-gopay  { top: 8px;   left: 18px; }
.node-shopee { top: 8px;   right: 18px; }
.node-term   { bottom: 4px; left: 50%; transform: translateX(-50%); }
.node-gopay .glyph  { color: #00AED6; }
.node-shopee .glyph { color: var(--orange); }
.node-term .glyph   { color: var(--purple-700); }
.glyph { width: 34px; height: 34px; }
.hero-art svg.wires { position: absolute; inset: 0; z-index: 1; }

/* ---------- Section shells ---------- */
.landing-section { padding: 44px 48px; }
.section-title {
  font-size: 24px; font-weight: 800; color: var(--purple-950);
  letter-spacing: -.01em;
}
.section-sub { margin-top: 8px; font-size: 14.5px; color: var(--text-soft); }
.section-head { text-align: center; margin-bottom: 30px; }

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-ic {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-100);
  color: var(--purple-700);
  margin-bottom: 15px;
}
.feature-card h3 { font-size: 15.5px; font-weight: 700; color: var(--purple-950); }
.feature-card p { margin-top: 7px; font-size: 12.5px; line-height: 1.6; color: var(--text-soft); }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.service-gopay::before  { background: linear-gradient(90deg, #00AED6, #00C3E8); }
.service-shopee::before { background: linear-gradient(90deg, #F26522, #FF7A3D); }
.service-top { display: flex; align-items: center; gap: 18px; }
.service-logo {
  width: 78px; height: 78px; flex: none;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.service-logo.gopay  { background: #EAF9FD; }
.service-logo.shopee { background: #FEF0E8; }
.service-logo .glyph { width: 52px; height: 52px; }
.service-card h3 { font-size: 20px; font-weight: 800; color: var(--purple-950); }
.service-card .service-desc { font-size: 14px; color: var(--text-body); }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag {
  font-size: 11.5px; font-weight: 600;
  background: var(--purple-50);
  color: var(--purple-700);
  border: 1px solid var(--purple-100);
  padding: 4px 11px; border-radius: 999px;
}

/* ---------- Testimonial / footer ---------- */
.landing-testi {
  padding: 40px 48px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: #FBBF24; font-size: 13px; letter-spacing: 2px; }
.testi-quote {
  margin-top: 10px;
  font-size: 12.8px;
  line-height: 1.65;
  color: var(--text-body);
}
.testi-user { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-800));
  flex: none;
}
.testi-user b { display: block; font-size: 13px; color: var(--purple-950); }
.testi-user small { font-size: 11px; color: var(--text-soft); }

.landing-footer {
  margin-top: 34px;
  border-top: 1px solid rgba(196,181,253,.45);
  padding: 26px 48px 30px;
  background: rgba(255,255,255,.55);
}
.footer-logos {
  display: flex; align-items: center; justify-content: center; gap: 44px;
  opacity: .85;
}
.partner-logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 700; color: var(--text-body);
}
.partner-logo .ic { color: var(--ink); }
.pagination-dots {
  display: flex; justify-content: center; gap: 7px; margin-top: 22px;
}
.pagination-dots i {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--purple-200);
}
.pagination-dots i.on { background: var(--purple-700); width: 22px; }
