/* Prima Cetak Digital — style.css */
/* Palet: utama #dc2626 (merah), aksen #1f2937 (gelap), tema TERANG */

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

:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #fee2e2;
  --dark: #1f2937;
  --dark2: #374151;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 2px 12px rgba(31,41,55,.10);
  --radius: 8px;
  --font: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; font-size: 16px; }
img { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── DEMO BAR ─── */
.demobar {
  background: var(--dark);
  color: #f3f4f6;
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
  position: sticky;
  top: 0;
  z-index: 200;
  line-height: 1.5;
}
.demobar a { color: #fca5a5; text-decoration: underline; }
.demobar a:hover { color: var(--white); }

/* ─── HEADER / NAV ─── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 37px;
  z-index: 100;
  box-shadow: var(--shadow);
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -.3px;
}
.brand svg { flex-shrink: 0; }
.brand span { color: var(--red); }

/* checkbox hack nav */
#nav-toggle { display: none; }
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .2s;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  display: block;
  padding: 8px 14px;
  color: var(--dark2);
  font-weight: 600;
  font-size: .92rem;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
  text-decoration: none;
}
.nav-menu a:hover { background: var(--red-light); color: var(--red); }
.nav-menu a.active { background: var(--red); color: var(--white); }

/* ─── MAIN LAYOUT ─── */
main { min-height: 60vh; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #374151 60%, #1f2937 100%);
  color: var(--white);
  padding: 80px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(220,38,38,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(220,38,38,.15) 0%, transparent 40%);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero h1 em { font-style: normal; color: #fca5a5; }
.hero p {
  font-size: 1.08rem;
  color: #d1d5db;
  max-width: 560px;
  margin: 0 auto 34px;
}
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); text-decoration: none; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); }
.btn-red { background: var(--red); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--red);
  color: var(--white);
  padding: 22px 20px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.stat-item strong { display: block; font-size: 1.9rem; font-weight: 900; line-height: 1; }
.stat-item span { font-size: .82rem; opacity: .88; }

/* ─── SECTIONS ─── */
.section { padding: 70px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-dark .section-head h2 { color: var(--white); }
.section-head p { color: var(--gray); max-width: 540px; margin: 0 auto; }
.section-dark .section-head p { color: #9ca3af; }

/* ─── GRID ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ─── CARD ─── */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(31,41,55,.13); }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { color: var(--red); }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.card p { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ─── SERVICE CARD ─── */
.svc-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(31,41,55,.15); }
.svc-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-body { padding: 20px; }
.svc-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.svc-body p { font-size: .87rem; color: var(--gray); margin-bottom: 14px; }
.svc-price { font-size: .8rem; background: var(--red-light); color: var(--red); font-weight: 700; display: inline-block; padding: 3px 10px; border-radius: 50px; }

/* ─── PORTFOLIO GRID ─── */
.porto-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.porto-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform .2s;
}
.porto-item:hover { transform: scale(1.02); }
.porto-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.porto-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(31,41,55,.85);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.porto-desc { padding: 14px 16px; }
.porto-desc h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.porto-desc p { font-size: .83rem; color: var(--gray); }

/* ─── TEAM ─── */
.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: .82rem; color: var(--red); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: .85rem; color: var(--gray); }

/* ─── PROCESS STEPS ─── */
.steps { display: flex; flex-wrap: wrap; gap: 0; }
.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 46px;
  right: -1px;
  width: 2px;
  height: 36px;
  background: var(--border);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: .83rem; color: var(--gray); }

/* ─── TESTIMONIAL ─── */
.testi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card blockquote { font-size: .92rem; color: var(--dark2); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; }
.testi-author span { font-size: .78rem; color: var(--gray); }

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  font-weight: 700;
  padding: 18px 20px;
  cursor: default;
  color: var(--dark);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-q::before { content: '?'; background: var(--red); color: var(--white); border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }
.faq-a { padding: 0 20px 16px 56px; font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}
.cta-band h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { opacity: .88; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-white { background: var(--white); color: var(--red); font-weight: 800; }
.btn-white:hover { background: var(--red-light); text-decoration: none; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px; background: var(--red-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { color: var(--red); }
.ci-text strong { display: block; font-size: .82rem; color: var(--gray); font-weight: 600; margin-bottom: 2px; }
.ci-text span { font-size: .92rem; color: var(--dark); }

/* ─── FORM ─── */
.form-card { background: var(--white); border-radius: 12px; padding: 32px 28px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 22px; }
.form-notice { background: var(--red-light); color: var(--red); font-size: .8rem; padding: 8px 14px; border-radius: 6px; margin-bottom: 20px; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark2); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s;
}
.form-submit:hover { background: var(--red-dark); }

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  border-radius: 10px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--gray);
  font-size: .9rem;
  margin-top: 28px;
}

/* ─── ABOUT SPLIT ─── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--dark) 0%, #374151 100%);
  border-radius: 16px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(220,38,38,.3) 0%, transparent 60%);
}
.about-visual svg { position: relative; z-index: 1; }
.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  z-index: 2;
}
.about-badge strong { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.about-text h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--gray); margin-bottom: 14px; line-height: 1.75; }
.about-checks { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.about-checks li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--dark2); }
.about-checks li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── VALUE PROPS ─── */
.vp-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.vp-item { display: flex; gap: 16px; align-items: flex-start; }
.vp-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vp-icon svg { color: var(--white); }
.vp-text strong { display: block; font-weight: 700; margin-bottom: 4px; }
.vp-text p { font-size: .88rem; color: var(--gray); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 52px 20px 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .brand { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: .87rem; line-height: 1.7; max-width: 240px; }
footer h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 14px; letter-spacing: .3px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #9ca3af; font-size: .87rem; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; font-size: .85rem; }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
}
.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: var(--white); }

/* ─── ABOUT PAGE EXTRAS ─── */
.milestones { display: flex; flex-direction: column; gap: 0; max-width: 640px; margin: 0 auto; }
.milestone { display: flex; gap: 24px; align-items: flex-start; padding: 20px 0; border-left: 3px solid var(--border); margin-left: 20px; padding-left: 28px; position: relative; }
.milestone::before { content: attr(data-year); position: absolute; left: -44px; background: var(--red); color: var(--white); border-radius: var(--radius); font-size: .75rem; font-weight: 700; padding: 3px 8px; }
.milestone h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.milestone p { font-size: .87rem; color: var(--gray); }

/* ─── RESPONSIVE ─── */
@media (max-width: 820px) {
  .burger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    gap: 2px;
  }
  #nav-toggle:checked ~ .nav-menu { display: flex; }
  header { position: sticky; top: 37px; }
  .hero { padding: 52px 20px 48px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .porto-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; }
  .step:not(:last-child)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .porto-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
}
