:root {
  --blue: #00b7ff;
  --blue: #0000FF;
  --blue-dark: #0000CC;
  --blue-light: #3333FF;
  --blue-pale: #EEF0FF;
  --blue-mid: #EEF0FF;
  --white: #FFFFFF;
  --off-white: #F7F8FF;
  --black: #07070F;
  --ink: #1A1A2E;
  --muted: #6B6B8A;
  --border: #E2E3F0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex; align-items: center; gap: .75rem; text-decoration: none;
}

.brand-logo {
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; color: #fff; letter-spacing: -1px; flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 2px; color: var(--ink); line-height: 1;
}
.brand-name span { color: var(--blue); }

.navbar-toggler { border: 1px solid var(--border); }

.nav-link {
  font-family: var(--font-body);
  font-weight: 500; font-size: .88rem; letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted) !important;
  padding: .5rem 1rem !important;
  transition: color .2s;
}
.nav-link:hover { color: var(--ink) !important; }

.btn-nav {
  background: var(--blue) !important;
  color: #fff !important; border-radius: 8px;
  padding: .5rem 1.4rem !important; font-weight: 600 !important;
  transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 6rem 0 4rem;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 40%, rgba(0,0,255,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(0,0,255,0.05) 0%, transparent 60%);
}

.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,255,0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.hero-tag {
  display: inline-block;
  background: var(--blue-pale); border: 1px solid var(--blue-mid);
  color: var(--blue); font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem; animation: fadeUp .8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .95; color: var(--ink);
  animation: fadeUp .8s .15s ease both;
}

.hero-title .highlight {
  color: var(--blue); position: relative; display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 5px; background: var(--blue); border-radius: 3px; opacity: .2;
}

.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
  max-width: 480px; margin-top: 1.5rem;
  animation: fadeUp .8s .3s ease both;
}

.hero-actions {
  margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}

.btn-primary-ck {
  background: var(--blue); color: #fff; border: none;
  border-radius: 10px; padding: .9rem 2rem;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(0,0,255,0.25);
}
.btn-primary-ck:hover {
  background: var(--blue-light); transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,0,255,0.35); color: #fff;
}

.btn-outline-ck {
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: .9rem 2rem; font-weight: 600; font-size: 1rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline-ck:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* Hero card */
.hero-visual { animation: fadeUp .8s .3s ease both; }

.hero-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 24px; padding: 2.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,255,0.08), 0 4px 16px rgba(0,0,0,0.05);
  position: relative;
}
.hero-card::before {
  content: ''; position: absolute;
  top: -1px; left: 40px; right: 40px;
  height: 3px; background: var(--blue); border-radius: 0 0 3px 3px;
}

.hero-logo-big {
  width: 110px; height: 110px; background: var(--blue);
  border-radius: 22px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3rem; color: #fff; letter-spacing: -3px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 16px 48px rgba(0,0,255,0.35);
}

.stats-row {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1rem; border-top: 1px solid var(--border); padding-top: 1.25rem;
}

.stat-item { text-align: center; flex: 1; min-width: 70px; }

.stat-num {
  font-family: var(--font-display); font-size: 2rem; color: var(--blue); line-height: 1;
}

.stat-label {
  font-size: .68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: .2rem;
}

.float-badge {
  position: absolute; background: var(--white);
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: .5rem 1rem; font-size: .75rem; font-weight: 600;
  color: var(--ink); display: flex; align-items: center; gap: .4rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: float 3s ease-in-out infinite;
}
.float-badge i { color: var(--blue); }
.float-badge-1 { top: -16px; left: -16px; animation-delay: 0s; }
.float-badge-2 { bottom: 24px; right: -16px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── MARQUEE ── */
.marquee-section { background: var(--blue); padding: 1rem 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 22s linear infinite; white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 3px; display: flex; align-items: center; gap: 1rem;
  flex-shrink: 0; color: #fff;
}
.marquee-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS COMMON ── */
section { padding: 6rem 0; }

.section-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--ink);
}

.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 500px; }

/* ── SERVICES ── */
.services-section { background: var(--off-white); }

.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 2rem; height: 100%;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service-card:hover {
  border-color: var(--blue); transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,255,0.1);
}

.service-icon {
  width: 52px; height: 52px; background: var(--blue-pale);
  border: 1.5px solid var(--blue-mid); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--blue); margin-bottom: 1.25rem;
  transition: background .3s, color .3s;
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; border-color: var(--blue); }

.service-title {
  font-family: var(--font-display); font-size: 1.35rem;
  letter-spacing: 1px; color: var(--ink); margin-bottom: .5rem;
}

.service-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── WHY US ── */
.why-section { background: var(--white); }

.why-item { display: flex; gap: 1.25rem; margin-bottom: 2rem; align-items: flex-start; }

.why-num {
  font-family: var(--font-display); font-size: 2.2rem;
  color: var(--blue-mid); line-height: 1; flex-shrink: 0; width: 50px;
}

.why-title { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 1px; color: var(--ink); margin-bottom: .3rem; }

.why-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── BIG VISUAL ── */
.big-visual { background: var(--blue); position: relative; overflow: hidden; padding: 5rem 0; }
.big-visual::before {
  content: 'CK'; font-family: var(--font-display); font-size: 32vw;
  position: absolute; right: -2vw; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none; letter-spacing: -10px;
}
.big-visual .section-title { color: #fff; }
.big-visual .section-sub { color: rgba(255,255,255,0.72); }
.big-visual .section-tag { color: rgba(255,255,255,0.6); }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35); border-radius: 10px;
  padding: .9rem 2rem; font-weight: 600; font-size: 1rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); }

/* ── PROCESS ── */
.process-section { background: var(--off-white); }

.process-step { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; position: relative; }
.process-step:not(:last-child)::after {
  content: ''; position: absolute; left: 22px; top: 44px;
  bottom: -2.5rem; width: 2px;
  background: linear-gradient(to bottom, var(--blue-mid), transparent);
}

.step-num {
  width: 44px; height: 44px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; color: #fff; flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,255,0.25);
}

.step-title { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 1px; color: var(--ink); margin-bottom: .3rem; }
.step-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── PRICELIST ── */
.pricelist-section { background: var(--white); }

.pricelist-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 20px; padding: 2rem 1.75rem; height: 100%;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.pricelist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,255,0.10);
}

.pricelist-card.featured {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.pricelist-card.featured::before {
  content: 'POPULER';
  position: absolute;
  top: 1rem; right: -1.5rem;
  background: var(--blue);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: .25rem 2rem;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.pricelist-badge {
  display: inline-block;
  background: var(--blue-pale);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.pricelist-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: .25rem;
}

.pricelist-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--blue);
  line-height: 1;
  margin: .5rem 0;
}

.pricelist-price small {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
}

.pricelist-features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.pricelist-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .88rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.pricelist-features li:last-child {
  border-bottom: none;
}

.pricelist-features li i {
  color: var(--blue);
  font-size: .9rem;
  flex-shrink: 0;
}

.pricelist-features li .text-muted-ck {
  color: var(--muted);
}

.btn-pricelist {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ── CTA ── */
.cta-section { background: var(--white); padding: 5rem 0; }

.cta-box {
  background: var(--blue-pale); border: 1.5px solid var(--blue-mid);
  border-radius: 28px; padding: 4.5rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--blue); border-radius: 28px 28px 0 0;
}
.cta-box .section-title { font-size: clamp(2rem, 5vw, 3.5rem); }
.cta-box .section-sub { margin: 1rem auto 2.5rem; }

/* ── CONTACT ── */
.contact-section { background: var(--off-white); border-top: 1px solid var(--border); }

.contact-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color .3s, box-shadow .3s; height: 100%;
}
.contact-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(0,0,255,0.08); }

.contact-icon {
  width: 46px; height: 46px; background: var(--blue-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.2rem; flex-shrink: 0;
}

.contact-label { font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: .3rem; }
.contact-value { color: var(--ink); font-size: .95rem; line-height: 1.55; font-weight: 500; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 2.5rem 0; }

.footer-brand-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 2px; color: #fff; }
.footer-brand-name span { color: #6666FF; }

.footer-copy { color: rgba(255,255,255,0.3); font-size: .8rem; }

.footer-links a { color: rgba(255,255,255,0.45); font-size: .85rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }

/* ── WA FAB ── */
.wa-fab {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  z-index: 500; transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.6); color: #fff; }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--blue-mid), transparent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .hero { padding: 4rem 0 3rem; min-height: auto; }
  .float-badge { display: none; }
  .hero-visual { margin-top: 3rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .pricelist-card.featured { order: -1; }
}

/* Additional styles specific to pricelist page */
.pricelist-header {
  background: var(--blue-dark);
  padding: 6rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.pricelist-header .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.pricelist-header .section-sub {
  max-width: 600px;
  margin: 0 auto;
}

.pricelist-section {
  padding: 4rem 0 6rem;
}

.pricelist-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.pricelist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,255,0.10);
}

.pricelist-card.featured {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.pricelist-card.featured::before {
  content: 'POPULER';
  position: absolute;
  top: 1.2rem;
  right: -1.8rem;
  background: var(--blue);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: .25rem 2.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  z-index: 2;
}

.pricelist-badge {
  display: inline-block;
  background: var(--blue-pale);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.pricelist-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: .25rem;
}

.pricelist-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--blue);
  line-height: 1;
  margin: .5rem 0;
}

.pricelist-price small {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricelist-features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.pricelist-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 0;
  font-size: .88rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.pricelist-features li:last-child {
  border-bottom: none;
}

.pricelist-features li i {
  color: var(--blue);
  font-size: .9rem;
  flex-shrink: 0;
  width: 20px;
}

.pricelist-features li .text-muted-ck {
  color: var(--muted);
}

.btn-pricelist {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.category-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
}

.category-divider::before,
.category-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-mid));
}

.category-divider::after {
  background: linear-gradient(90deg, var(--blue-mid), transparent);
}

.category-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
  letter-spacing: 2px;
  white-space: nowrap;
}

.category-label span {
  color: var(--blue);
}

.pricelist-note {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}

.pricelist-note i {
  color: var(--blue);
  font-size: 1.2rem;
}

.pricelist-note p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pricelist-header {
    padding: 4rem 0 2rem;
  }
  .pricelist-card.featured {
    order: -1;
  }
  .category-divider {
    gap: 1rem;
  }
  .category-label {
    font-size: 1.3rem;
  }
  .pricelist-price {
    font-size: 2.2rem;
  }
  .pricelist-note {
    padding: 1rem 1.25rem;
  }
}

/* Additional styles specific to portfolio page */
.portfolio-header {
  background: var(--blue-dark);
  padding: 6rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.portfolio-header .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.portfolio-header .section-sub {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-section {
  padding: 4rem 0 6rem;
}

.filter-buttons {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: .5rem 1.5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .3s;
  font-family: var(--font-body);
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,255,0.10);
  border-color: var(--blue);
}

.portfolio-item .thumbnail {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--blue-mid);
  overflow: hidden;
  position: relative;
}

.portfolio-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item .thumbnail .placeholder-icon {
  font-size: 4rem;
  color: var(--blue-mid);
  opacity: 0.5;
}

.portfolio-item .thumbnail .category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,255,0.9);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
}

.portfolio-item .info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.portfolio-item .info .title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: .3rem;
}

.portfolio-item .info .client {
  font-size: .85rem;
  color: var(--muted);
}

.portfolio-item .info .client i {
  color: var(--blue);
  margin-right: .3rem;
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: #fff;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.portfolio-item .overlay .view-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.portfolio-item .overlay .view-text i {
  font-size: 1.5rem;
}

/* Portfolio Detail Page - Modal Style */
.portfolio-detail-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  padding: 2rem 1rem;
  overflow-y: auto;
  animation: fadeIn .3s ease;
}

.portfolio-detail-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-detail {
  background: var(--white);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .4s ease;
}

.portfolio-detail .close-btn {
  position: sticky;
  top: 1rem;
  right: 1rem;
  float: right;
  background: rgba(0,0,0,0.08);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s;
  z-index: 10;
  margin: 1rem 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-detail .close-btn:hover {
  background: rgba(0,0,0,0.15);
}

.portfolio-detail .detail-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--blue-mid);
  overflow: hidden;
}

.portfolio-detail .detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-detail .detail-body {
  padding: 2rem 2.5rem 2.5rem;
}

.portfolio-detail .detail-body .detail-category {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}

.portfolio-detail .detail-body .detail-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: .5rem;
}

.portfolio-detail .detail-body .detail-client {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

.portfolio-detail .detail-body .detail-client i {
  color: var(--blue);
}

.portfolio-detail .detail-body .detail-description {
  color: var(--ink);
  line-height: 1.8;
  font-size: .98rem;
}

.portfolio-detail .detail-body .detail-description p {
  margin-bottom: 1rem;
}

.portfolio-detail .detail-body .detail-description strong {
  color: var(--blue);
}

.portfolio-detail .detail-body .detail-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.portfolio-detail .detail-body .detail-tags span {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .7rem;
  color: var(--muted);
}

.portfolio-detail .detail-body .detail-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .portfolio-header {
    padding: 4rem 0 2rem;
  }
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  .portfolio-detail .detail-body {
    padding: 1.5rem;
  }
  .portfolio-detail .detail-body .detail-title {
    font-size: 1.6rem;
  }
  .portfolio-detail-overlay {
    padding: 1rem;
  }
}
.btn-pricelist {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.btn-negotiate {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  background: var(--off-white);
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s;
}

.btn-negotiate:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
/* ── PRICELIST THEME (Logo Brand / Brand Name / Brand Identity / Merek UMK) ── */
.pricelist-section-dark {
  background-size: 34px 34px, 34px 34px, 100% 100%, 100% 100%;
  padding: 5rem 0 6rem;
}

.pricelist-dark-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: 1px;
  color: #000;
  text-align: center;
  margin-bottom: .5rem;
}
.pricelist-dark-title span { color: #FFB347; }

.pricelist-dark-sub {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: .95rem;
  margin-bottom: 3rem;
}

.pcard-dark {
  background: linear-gradient(160deg, #1414c9 0%, #0000CC 100%);
  border-radius: 22px;
  padding: 0 0 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,50,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .3s;
}
.pcard-dark:hover { transform: translateY(-8px); }

.pcard-dark .pcard-head {
  background: linear-gradient(120deg, #2222e0, #0000aa);
  padding: 1.75rem 1.75rem 1.5rem;
}
.pcard-dark.gold .pcard-head { background: linear-gradient(120deg,#ffe38a,#f5b83d); }
.pcard-dark.gold .pcard-tier { color: #7a4a00; }
.pcard-dark.gold .pcard-price { color: #1a1a2e; }
.pcard-dark.gold .pcard-price del { color: rgba(26,26,46,.5); }

.pcard-tier { font-weight: 700; font-size: 1rem; color: #7CFC9C; letter-spacing: .5px; margin-bottom: .35rem; }
.pcard-dark.tier-gold .pcard-tier { color: #FFD24C; }
.pcard-price { font-family: var(--font-display); font-size: 2.1rem; color: #fff; line-height: 1; }
.pcard-price del { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.45); margin-right: .4rem; font-family: var(--font-body); }

.pcard-badge {
  position: absolute; top: 0; right: 1.5rem;
  background: #e8253d; color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: 1px;
  text-align: center; padding: .5rem .9rem .6rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.pcard-badge.recommended { display: flex; align-items: center; gap: .3rem; border-radius: 100px; top: 1.2rem; right: 1.2rem; }

.pcard-features { list-style: none; padding: 1.5rem 1.75rem 0; margin: 0; }
.pcard-features li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .9rem; color: rgba(255,255,255,0.92);
  padding: .5rem 0; line-height: 1.4;
}
.pcard-features li i.chk { color: #3ddc6b; font-size: 1.05rem; margin-top: .1rem; flex-shrink: 0; }
.pcard-dark.tier-gold .pcard-features li i.chk { color: #FFD24C; }
.pcard-features li small { display: block; color: rgba(255,255,255,0.5); font-size: .75rem; }
.pcard-features .sub-item { padding-left: 1.8rem; font-size: .82rem; color: rgba(255,255,255,0.7); }
.pcard-bonus { color: #FFD24C !important; }
.pcard-bonus-tag { background: #f5b83d; color: #1a1a2e; font-size: .58rem; font-weight: 700; padding: .1rem .5rem; border-radius: 100px; margin-left: .4rem; }

.pcard-cta {
  margin: 1.5rem 1.75rem 0;
  display: block; text-align: center;
  background: #fff; color: #0000CC !important;
  font-weight: 700; border-radius: 10px; padding: .8rem;
  text-decoration: none; transition: transform .2s;
}
.pcard-cta:hover { transform: translateY(-2px); }

.pdark-category-label {
  font-family: var(--font-display);
  font-size: 1.6rem; color: #000; letter-spacing: 2px;
  text-align: center; margin: 4rem 0 2rem;
}
.pdark-category-label span { color: #FFB347; }
.pdark-category-label:first-child { margin-top: 0; }