/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #0f172a;
  --darker:  #080f1e;
  --mid:     #1e293b;
  --accent:  #0ea5e9;
  --teal:    #06b6d4;
  --purple:  #8b5cf6;
  --yellow:  #fbbf24;
  --white:   #ffffff;
  --light:   #e2e8f0;
  --muted:   #94a3b8;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,233,.4); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: .7rem 1.7rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  background: transparent; cursor: pointer;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .4rem 1rem; font-size: .85rem; }
.btn-full { width: 100%; text-align: center; }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(8,15,30,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.logo span { color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--light); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: 50px;
}
.btn-nav:hover { opacity: .9; color: #fff !important; }

.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--darker) 0%, #0c1a3a 50%, var(--darker) 100%);
  display: flex; align-items: center;
  padding-top: 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(14,165,233,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 4rem 1.5rem;
}
.badge {
  display: inline-block;
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.3);
  color: var(--teal);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero-text h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.2rem; }
.gradient-text { background: linear-gradient(135deg, var(--accent), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--teal); }
.stat span { font-size: .85rem; color: var(--muted); }

/* Browser Mockup */
.browser-mockup {
  background: var(--mid);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
}
.browser-bar {
  background: #1a2744;
  padding: .6rem 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.url-bar {
  flex: 1; background: rgba(255,255,255,.08);
  border-radius: 4px; padding: .2rem .8rem;
  font-size: .75rem; color: var(--muted); margin-left: .5rem;
}
.browser-body { padding: 1rem; }
.mock-hero-bar { height: 80px; background: linear-gradient(135deg, var(--accent), var(--teal)); border-radius: 8px; margin-bottom: .8rem; opacity: .7; }
.mock-nav { height: 12px; background: rgba(255,255,255,.1); border-radius: 4px; margin-bottom: .8rem; width: 70%; }
.mock-content { display: flex; flex-direction: column; gap: .6rem; }
.mock-block { height: 40px; background: rgba(255,255,255,.06); border-radius: 6px; flex: 1; }
.mock-block.tall { height: 60px; }
.mock-row { display: flex; gap: .6rem; }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* ── SECTIONS ─────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.bg-dark { background: var(--darker); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.tag {
  display: inline-block;
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.3);
  color: var(--teal);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  margin-bottom: .8rem;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .8rem; }
.section-header p { color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ── CARDS (LAYANAN) ──────────────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
}
.card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 12px 40px rgba(14,165,233,.15); }
.card.featured { border-color: var(--accent); background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(6,182,212,.05)); }
.badge-card {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff; padding: .25rem .9rem; border-radius: 50px; font-size: .75rem; font-weight: 700;
  white-space: nowrap;
}
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; }
.card-link { color: var(--teal); font-size: .9rem; font-weight: 600; transition: gap .2s; }
.card-link:hover { color: var(--accent); }

/* ── FEATURES ─────────────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color .3s;
}
.feature:hover { border-color: var(--teal); }
.feat-icon { font-size: 2rem; display: block; margin-bottom: .8rem; }
.feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .9rem; }

/* ── PRICING ──────────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.price-card {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform .3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(6,182,212,.06));
  transform: scale(1.03);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff; padding: .3rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 700;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .8rem; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--teal); margin-bottom: 1.5rem; }
.price span { font-size: 1rem; color: var(--muted); }
.price-card ul { text-align: left; margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
.price-card li { font-size: .9rem; color: var(--light); }

/* ── STEPS ────────────────────────────────────────────────────────────────── */
.steps {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .5rem; justify-content: center;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  width: 150px;
  transition: border-color .3s;
}
.step:hover { border-color: var(--teal); }
.step-num { font-size: .75rem; font-weight: 700; color: var(--teal); margin-bottom: .4rem; }
.step-icon { font-size: 2rem; margin-bottom: .6rem; }
.step h4 { font-size: .85rem; font-weight: 700; margin-bottom: .4rem; }
.step p { font-size: .75rem; color: var(--muted); }
.step-arrow { font-size: 1.5rem; color: var(--teal); padding: 0 .2rem; }

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0c1a3a, #0f2d5a);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid rgba(14,165,233,.2);
}
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .8rem; }
.cta-inner p { color: var(--muted); margin-bottom: 2rem; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { background: var(--darker); padding: 4rem 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand .logo { font-size: 1.3rem; display: block; margin-bottom: .8rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 260px; }
.footer-links h4, .footer-contact h4 { font-size: .95rem; font-weight: 700; margin-bottom: 1rem; color: var(--white); }
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-contact p { color: var(--muted); font-size: .9rem; margin-bottom: .4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.2rem 0; text-align: center; }
.footer-bottom p { color: var(--muted); font-size: .85rem; }

/* ── PAGE HERO ────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--darker), #0c1a3a);
  padding: 6rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin: .8rem 0; }
.page-hero p { color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ── PORTFOLIO ────────────────────────────────────────────────────────────── */
.filter-bar { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.2rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent; color: var(--muted);
  font-size: .85rem; font-weight: 500; cursor: pointer;
  transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.portfolio-card {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.port-img {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.toko-bg    { background: linear-gradient(135deg, #0f3d8c, #0ea5e9); }
.company-bg { background: linear-gradient(135deg, #1a3a1a, #22c55e); }
.landing-bg { background: linear-gradient(135deg, #3d0f8c, #8b5cf6); }
.toko2-bg   { background: linear-gradient(135deg, #8c3d0f, #f97316); }
.company2-bg{ background: linear-gradient(135deg, #3d2a0f, #fbbf24); }
.landing2-bg{ background: linear-gradient(135deg, #0f3d3d, #06b6d4); }
.port-mockup { font-size: 4rem; }
.port-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.portfolio-card:hover .port-overlay { opacity: 1; }
.port-info { padding: 1.2rem; }
.port-tag {
  display: inline-block;
  background: rgba(14,165,233,.15);
  color: var(--teal);
  padding: .2rem .7rem; border-radius: 50px;
  font-size: .75rem; font-weight: 600; margin-bottom: .6rem;
}
.port-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.port-info p { color: var(--muted); font-size: .85rem; }

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: .8rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  transition: border-color .3s;
}
.contact-item:hover { border-color: var(--teal); }
.ci-icon { font-size: 1.5rem; }
.contact-item strong { display: block; font-size: .9rem; font-weight: 700; }
.contact-item span { font-size: .85rem; color: var(--muted); }
.jam-operasional {
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.jam-operasional h4 { font-size: .95rem; font-weight: 700; margin-bottom: .6rem; color: var(--teal); }
.jam-operasional p { font-size: .85rem; color: var(--muted); }

/* ── FORMS ────────────────────────────────────────────────────────────────── */
.contact-form-wrap, .checkout-form-wrap {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form h3, .contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--light); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--mid); }
.form-note { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.form-note a { color: var(--teal); }
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: 1.2rem; font-size: .85rem; color: var(--muted); }
.form-check a { color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success { text-align: center; padding: 3rem 1rem; }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .6rem; }
.form-success p { color: var(--muted); margin-bottom: 1.5rem; }

/* ── CHECKOUT ─────────────────────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: start; }
.order-summary {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: sticky; top: 90px;
}
.order-summary h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; }
.order-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.oi-info { display: flex; align-items: center; gap: .8rem; }
.oi-icon { font-size: 1.5rem; }
.oi-info strong { display: block; font-size: .9rem; }
.oi-info small { color: var(--muted); font-size: .8rem; }
.oi-price { font-weight: 700; color: var(--teal); }
.order-total { margin: 1rem 0; }
.ot-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .9rem; color: var(--muted); }
.ot-row.total { font-size: 1.1rem; font-weight: 800; color: var(--white); border-top: 1px solid rgba(255,255,255,.1); padding-top: .8rem; margin-top: .4rem; }
.discount { color: #4ade80; }
.promo-box { display: flex; gap: .6rem; margin-bottom: 1.5rem; }
.promo-box input {
  flex: 1; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: .6rem .9rem;
  color: var(--white); font-size: .85rem; outline: none;
}
.payment-methods h4 { font-size: .9rem; font-weight: 700; margin-bottom: .8rem; }
.pm-grid { display: flex; flex-direction: column; gap: .5rem; }
.pm-option { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--muted); cursor: pointer; }
.pm-option input { accent-color: var(--accent); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,15,30,.98); padding: 1.5rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
}

/* ── KELOMPOK PAGE ────────────────────────────────────────────────────────── */
.matkul-card {
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(6,182,212,.05));
  border: 1px solid rgba(14,165,233,.25);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1rem;
}
.matkul-info {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.matkul-item { display: flex; flex-direction: column; gap: .3rem; }
.matkul-label { font-size: .75rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .05em; }
.matkul-value { font-size: .95rem; font-weight: 600; color: var(--white); }
.matkul-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.team-card {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(14,165,233,.15);
}
.team-card.ketua {
  background: linear-gradient(135deg, rgba(6,182,212,.1), rgba(14,165,233,.05));
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; color: #fff;
  margin: 0 auto 1rem;
}
.team-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff;
  padding: .25rem .9rem;
  border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  margin-bottom: .8rem;
}
.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.team-nim {
  display: inline-block;
  background: rgba(255,255,255,.07);
  color: var(--muted);
  padding: .2rem .8rem;
  border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  margin-bottom: .8rem;
}
.team-card p { color: var(--muted); font-size: .88rem; margin-bottom: 1.2rem; }
.team-skills { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.team-skills span {
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.2);
  color: var(--teal);
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .75rem; font-weight: 600;
}

.project-about {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.about-text p { color: var(--muted); font-size: .95rem; line-height: 1.7; }
.about-text strong { color: var(--white); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.astat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
}
.astat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--teal); }
.astat span { font-size: .8rem; color: var(--muted); }

@media (max-width: 640px) {
  .matkul-info { flex-direction: column; align-items: flex-start; }
  .matkul-divider { width: 100%; height: 1px; }
  .about-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT AVATAR ───────────────────────────────────────────────────────── */
.contact-item.no-link { cursor: default; }
.contact-item.no-link:hover { border-color: var(--teal); }
.ci-avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: #fff;
}

/* ── PAYMENT PAGE ─────────────────────────────────────────────────────────── */
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

/* Step indicator */
.pay-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 2rem;
}
.pay-step {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  min-width: 70px;
}
.ps-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--muted);
}
.pay-step.active .ps-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.pay-step.done .ps-num   { background: #22c55e; border-color: #22c55e; color: #fff; }
.pay-step span { font-size: .75rem; color: var(--muted); }
.pay-step.active span { color: var(--accent); font-weight: 600; }
.pay-step.done span   { color: #22c55e; }
.pay-step-line {
  flex: 1; height: 2px;
  background: rgba(255,255,255,.1);
  margin-bottom: 1.2rem;
}
.pay-step-line.done { background: #22c55e; }

.pay-section-title {
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem;
}

/* Tabs */
.pay-tabs { display: flex; gap: .6rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pay-tab {
  padding: .55rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent; color: var(--muted);
  font-size: .85rem; font-weight: 500; cursor: pointer;
  transition: all .2s; font-family: inherit;
}
.pay-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Tab content */
.pay-content { display: none; }
.pay-content.active { display: block; }
.pay-desc { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; }

/* Bank cards */
.bank-list { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.5rem; }
.bank-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--mid);
  border: 2px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  cursor: pointer; transition: border-color .2s;
}
.bank-card:hover { border-color: rgba(14,165,233,.4); }
.bank-card.selected { border-color: var(--accent); background: rgba(14,165,233,.08); }
.bank-logo {
  width: 52px; height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.bca     { background: #005BAC; }
.bri     { background: #003D7A; }
.mandiri { background: #003087; }
.bank-info { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.bank-info strong { font-size: .9rem; }
.bank-num  { font-size: 1rem; font-weight: 700; color: var(--teal); letter-spacing: .05em; }
.bank-name { font-size: .78rem; color: var(--muted); }
.bank-check { font-size: 1.2rem; color: var(--muted); transition: color .2s; }
.bank-card.selected .bank-check { color: var(--accent); }

/* Upload */
.upload-bukti { margin-bottom: 1.5rem; }
.upload-label {
  display: flex; align-items: center; gap: .8rem;
  background: rgba(255,255,255,.04);
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  cursor: pointer; transition: border-color .2s;
  font-size: .9rem; color: var(--muted);
}
.upload-label:hover { border-color: var(--accent); color: var(--white); }
.upload-icon { font-size: 1.4rem; }

/* QRIS */
.qris-box { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 1rem 0 1.5rem; }
.qris-frame {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.qr-grid {
  width: 160px; height: 160px;
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 2px;
}
.qr-cell { border-radius: 2px; }
.qris-logo {
  font-size: .9rem; font-weight: 800; color: #e00;
  letter-spacing: .1em;
}
.qris-note { font-size: .82rem; color: var(--muted); text-align: center; max-width: 280px; }

/* E-wallet */
.ewallet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-bottom: 1.2rem; }
.ew-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: var(--mid);
  border: 2px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1rem .5rem;
  cursor: pointer; transition: border-color .2s;
}
.ew-card:hover { border-color: rgba(14,165,233,.4); }
.ew-card.selected { border-color: var(--accent); }
.ew-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: #fff;
}
.ew-card span { font-size: .78rem; color: var(--muted); font-weight: 500; }
.ew-number-box { margin-bottom: 1.2rem; }
.ew-number-box label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--light); }
.ew-number-box input {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: .7rem 1rem;
  color: var(--white); font-size: .9rem; outline: none; font-family: inherit;
}
.ew-number-box input:focus { border-color: var(--accent); }

.pay-btn { margin-top: 1.5rem; font-size: 1rem; padding: .9rem; }
.pay-secure { text-align: center; font-size: .78rem; color: var(--muted); margin-top: .8rem; }

/* Summary */
.pay-summary {
  background: var(--mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: sticky; top: 90px;
}
.pay-summary h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.ps-item {
  display: flex; align-items: center; gap: .8rem;
  padding-bottom: 1rem;
}
.ps-icon { font-size: 1.8rem; }
.ps-detail { flex: 1; }
.ps-detail strong { display: block; font-size: .9rem; }
.ps-detail small { color: var(--muted); font-size: .78rem; }
.ps-price { font-weight: 700; color: var(--teal); font-size: .95rem; }
.ps-divider { height: 1px; background: rgba(255,255,255,.07); margin: .8rem 0; }
.ps-row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--muted); padding: .3rem 0; }
.ps-total { font-size: 1rem; font-weight: 800; color: var(--white); }
.ps-diskon span:last-child { color: #4ade80; }
.green { color: #4ade80; }
.promo-msg { font-size: .8rem; margin-top: .4rem; min-height: 1rem; }
.promo-msg.ok  { color: #4ade80; }
.promo-msg.err { color: #f87171; }

.pay-timer {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(251,191,36,.08);
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 8px;
  padding: .7rem 1rem;
  margin: 1.2rem 0;
  font-size: .85rem; color: var(--muted);
}
.timer-count { font-weight: 800; color: var(--yellow); font-size: 1rem; }

.ps-pemesan { margin-top: .5rem; }
.ps-pemesan h4 { font-size: .85rem; font-weight: 700; color: var(--teal); margin-bottom: .5rem; }
.back-link { display: block; text-align: center; margin-top: 1.2rem; font-size: .82rem; color: var(--muted); transition: color .2s; }
.back-link:hover { color: var(--teal); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-box {
  background: var(--mid);
  border: 1px solid rgba(14,165,233,.3);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 420px; width: 100%;
  text-align: center;
  animation: popIn .3s ease;
}
@keyframes popIn {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.modal-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal-box h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: .6rem; }
.modal-box p  { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.modal-detail {
  background: rgba(255,255,255,.04);
  border-radius: 10px; padding: 1rem;
  text-align: left;
}
.md-row { display: flex; justify-content: space-between; font-size: .85rem; padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.md-row:last-child { border: none; }
.md-row span { color: var(--muted); }

@media (max-width: 900px) {
  .payment-layout { grid-template-columns: 1fr; }
  .pay-summary { position: static; }
  .ewallet-grid { grid-template-columns: repeat(2, 1fr); }
}
