/* ══════════════════════════════════════════════
   PALEMBANG.IO — MAIN STYLESHEET
   ══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --bg:           #FDFAF5;
  --bg2:          #F5F0E8;
  --bg3:          #EDE6D8;
  --dark:         #1C1A15;
  --dark2:        #2E2B23;
  --dark3:        #3D3A30;
  --text:         #1C1A15;
  --text2:        #6B6555;
  --text3:        #A89F8C;
  --accent:       #D4541A;
  --accent2:      #B8420E;
  --accent-light: #FDF0EA;
  --accent-dim:   rgba(212,84,26,0.1);
  --green:        #2D6A4F;
  --green-light:  #EAF4EE;
  --border:       rgba(28,26,21,0.1);
  --border2:      rgba(28,26,21,0.18);
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2.5rem;
  --space-2xl:  4rem;
  --space-3xl:  6rem;

  /* Layout */
  --max-width:  1140px;
  --nav-height: 64px;

  /* Shadows */
  --shadow-sm:  0 1px 8px rgba(28,26,21,0.06);
  --shadow-md:  0 4px 20px rgba(28,26,21,0.09);
  --shadow-lg:  0 12px 40px rgba(28,26,21,0.13);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --radius-pill: 100px;
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.font-display { font-family: var(--font-display); }
.font-mono    { font-family: var(--font-mono); }

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--dark);
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.2px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
p { line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}
.lead {
  font-size: 16px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.8;
}
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.5px;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.section {
  padding: var(--space-2xl) var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-header { margin-bottom: var(--space-xl); }
.section-header.centered { text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

hr.divider { border: none; border-top: 1px solid var(--border); }

/* ── NAVIGATION ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--dark);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.site-logo em { color: var(--accent); font-style: normal; }
.site-logo .logo-badge {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  vertical-align: super;
  margin-left: 3px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover { color: var(--text); background: var(--bg2); }
.nav-menu a.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); transform: translateY(-1px); }
.btn-dark {
  background: var(--dark);
  color: var(--bg);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark2); border-color: var(--dark2); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.btn-ghost:hover { color: var(--text); }
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-wa:hover { background: #1EA855; border-color: #1EA855; }
.btn-sm { font-size: 12px; padding: 0.45rem 1rem; }
.btn-lg { font-size: 16px; padding: 0.9rem 2.2rem; }

/* ── BADGE / PILL ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 11px;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}
.badge-accent { background: var(--accent-light); color: var(--accent); }
.badge-green  { background: var(--green-light); color: var(--green); }
.badge-dark   { background: var(--dark); color: var(--bg); }
.badge-muted  { background: var(--bg3); color: var(--text2); }
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livepulse 2s ease-in-out infinite;
}
.live-dot-green { background: var(--green); }
.live-dot-accent { background: var(--accent); }
@keyframes livepulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; }
.card-featured { border-color: var(--accent); }

/* SERVICE CARD */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  color: var(--text);
}
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 13px; color: var(--text2); font-weight: 300; line-height: 1.65; }
.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 4px;
}

/* STAT CARD */
.stat-strip {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell {
  background: var(--white);
  padding: 1.4rem 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1.5px;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* TESTIMONIAL */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.testi-stars { color: #F59E0B; font-size: 14px; margin-bottom: 0.8rem; }
.testi-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; display: block; }
.testi-role { font-size: 11px; color: var(--text3); display: block; }

/* PRICING / PAKET */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.paket-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.2s;
}
.paket-card:hover { box-shadow: var(--shadow-md); }
.paket-card.featured {
  border-color: var(--accent);
  background: var(--accent-light);
}
.paket-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.paket-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.paket-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 0.2rem;
}
.paket-tagline { font-size: 13px; color: var(--text2); margin-bottom: 1.2rem; font-weight: 300; }
.paket-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1.5px;
  margin-bottom: 0.2rem;
}
.paket-period { font-size: 12px; color: var(--text3); margin-bottom: 1.5rem; }
.paket-features { margin-bottom: 1.5rem; }
.paket-features li {
  font-size: 13px;
  color: var(--text2);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400;
}
.paket-features li:last-child { border-bottom: none; }
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* FAQ */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-trigger:hover { background: var(--bg2); }
.faq-question {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.3rem;
  font-size: 14px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* PROCESS STEPS */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 54px;
  bottom: -1px;
  width: 1px;
  background: var(--border2);
}
.step-num {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 0.2rem;
}
.step-content { padding: 0 0 2.5rem 1.5rem; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 0.3rem; }
.step-desc { font-size: 13px; color: var(--text2); font-weight: 300; line-height: 1.65; }
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* DARK SECTION */
.section-dark {
  background: var(--dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.section-dark .eyebrow { color: #C8A97A; }
.section-dark h2 { color: #F0EDE6; }
.section-dark .lead { color: rgba(240,237,230,0.5); }
.dark-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* PAKET DARK VARIANT */
.paket-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: background 0.2s;
}
.paket-dark:hover { background: rgba(255,255,255,0.08); }
.paket-dark.featured { border-color: var(--accent); background: rgba(212,84,26,0.1); }
.paket-dark .paket-name { color: #F0EDE6; }
.paket-dark .paket-tagline { color: rgba(240,237,230,0.45); }
.paket-dark .paket-price { color: #F0EDE6; }
.paket-dark .paket-period { color: rgba(240,237,230,0.35); }
.paket-dark .paket-features li { color: rgba(240,237,230,0.65); border-color: rgba(255,255,255,0.07); }
.paket-dark .paket-badge { background: var(--accent); }
.btn-dark-outline {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(240,237,230,0.75);
  display: block;
  text-align: center;
}
.btn-dark-outline:hover { background: rgba(255,255,255,0.08); }
.btn-dark-primary {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  display: block;
  text-align: center;
}
.btn-dark-primary:hover { background: var(--accent2); }

/* CTA BOX */
.cta-box {
  background: var(--dark2);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: rgba(212,84,26,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 180px; height: 180px;
  background: rgba(212,84,26,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-box-inner { position: relative; z-index: 1; }
.cta-box h2 { color: #F0EDE6; margin-bottom: 0.5rem; }
.cta-box h2 em { font-style: italic; color: #C8A97A; }
.cta-box .lead { color: rgba(240,237,230,0.5); margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-cream {
  background: #F0EDE6;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-cream:hover { background: #fff; }
.btn-ghost-cream {
  background: transparent;
  color: rgba(240,237,230,0.6);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(240,237,230,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost-cream:hover { border-color: rgba(240,237,230,0.35); color: #F0EDE6; }

/* DIRECTORY SPECIFIC */
.search-box {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.search-input {
  width: 100%;
  padding: 1rem 5.5rem 1rem 1.2rem;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--text);
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input::placeholder { color: var(--text3); }
.search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,84,26,0.08); }
.search-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.search-submit:hover { background: var(--accent2); }

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  color: var(--text);
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cat-card.active { background: var(--accent-light); border-color: var(--accent); }
.cat-emoji { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.cat-name { font-size: 13px; font-weight: 600; display: block; }
.cat-count { font-size: 11px; color: var(--text3); margin-top: 2px; display: block; }

/* BIZ CARD */
.biz-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.biz-cat { font-size: 11px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.3rem; }
.biz-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; letter-spacing: -0.3px; }
.biz-loc { font-size: 12px; color: var(--text3); margin-bottom: 0.7rem; }
.biz-desc { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 1rem; font-weight: 300; }
.biz-rating { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.stars { color: #F59E0B; font-size: 12px; }

/* INLINE CTA */
.inline-cta {
  background: var(--accent-light);
  border: 1px solid rgba(212,84,26,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.inline-cta h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; letter-spacing: -0.3px; margin-bottom: 0.3rem; }
.inline-cta p { font-size: 13px; color: var(--text2); font-weight: 300; }

/* ── FOOTER ── */
#site-footer {
  background: var(--dark);
  color: rgba(240,237,230,0.5);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .site-logo { color: #F0EDE6; font-size: 1.1rem; }
.footer-brand p { font-size: 13px; color: rgba(240,237,230,0.4); margin-top: 0.8rem; font-weight: 300; line-height: 1.7; }
.footer-contact { margin-top: 1.2rem; }
.footer-contact a {
  display: block;
  font-size: 13px;
  color: rgba(240,237,230,0.45);
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(240,237,230,0.8); }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: rgba(240,237,230,0.35); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul a { font-size: 13px; color: rgba(240,237,230,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(240,237,230,0.85); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.2rem var(--space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 12px; }

/* ── HERO HOMEPAGE ── */
.hero-home {
  padding: calc(var(--space-3xl) + var(--nav-height) / 2) var(--space-xl) var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}
.hero-home h1 em { font-style: italic; color: var(--accent); }
.hero-home .lead { max-width: 460px; margin: 1.2rem 0 2rem; }
.hero-home .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* TERMINAL CARD */
.terminal-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}
.terminal-header {
  background: var(--dark3);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot-r { background: #FF5F57; }
.t-dot-a { background: #FFBD2E; }
.t-dot-g { background: #28C840; }
.terminal-title { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.3); margin-left: 0.5rem; }
.terminal-body { padding: 1.2rem; font-family: var(--font-mono); font-size: 12px; line-height: 1.9; }
.t-dim   { color: rgba(255,255,255,0.25); }
.t-green { color: #A8E063; }
.t-amber { color: #E8A838; }
.t-blue  { color: #6BAAFF; }
.t-white { color: rgba(255,255,255,0.85); }
.t-cursor { display: inline-block; width: 8px; height: 14px; background: #A8E063; vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.terminal-cta { padding: 0 1.2rem 1.2rem; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.2rem; }
.terminal-cta-title { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: #F0EDE6; margin-bottom: 0.3rem; }
.terminal-cta-sub { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }

/* BLOG */
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-thumb { height: 180px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.post-body { padding: 1.3rem 1.4rem 1.5rem; }
.post-cat { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.5rem; }
.post-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.5rem; }
.post-title a { color: var(--text); transition: color 0.2s; }
.post-title a:hover { color: var(--accent); }
.post-excerpt { font-size: 13px; color: var(--text2); font-weight: 300; line-height: 1.65; margin-bottom: 1rem; }
.post-meta { font-size: 11px; color: var(--text3); }

/* SINGLE POST */
.post-header { padding: calc(var(--nav-height) + 2.5rem) var(--space-xl) 2.5rem; max-width: 760px; margin: 0 auto; }
.post-content { max-width: 760px; margin: 0 auto; padding: 0 var(--space-xl) var(--space-3xl); }
.post-content h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.post-content h3 { margin: 2rem 0 0.8rem; font-size: 1.2rem; }
.post-content p { margin-bottom: 1.2rem; }
.post-content ul, .post-content ol { margin: 1rem 0 1.2rem 1.5rem; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.4rem; font-size: 15px; color: var(--text2); }
.post-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-content blockquote { border-left: 3px solid var(--accent); padding-left: 1.5rem; margin: 1.5rem 0; font-style: italic; color: var(--text2); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 0.3rem; display: block; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-label { font-size: 11px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.2rem; }
.contact-info-value { font-size: 14px; color: var(--text); font-weight: 500; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.65s ease both; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }

/* ── UTILITIES ── */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text2); }
.text-center  { text-align: center; }
.text-italic  { font-style: italic; }
.fw-300 { font-weight: 300; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-home { grid-template-columns: 1fr; }
  .terminal-card { position: static; display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .paket-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 768px) {
  :root { --space-xl: 1.2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg);
    padding: 1.5rem var(--space-xl);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0.5rem;
  }
  .nav-mobile-toggle { display: flex; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .inline-cta { flex-direction: column; }
}
