/* ============================================================
   SHARED — JASAkonsultanresto.com / Jalan Keluar Konsultan
   Navbar & Footer reference: Tentang Kami + Homepage
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  background: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: 'Headland One', serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  line-height: 1.4;
}

.btn-orange {
  background: #EE964B;
  color: #000;
}

.btn-orange:hover {
  background: #5C3D2E;
  color: #fff;
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  border-color: #EE964B;
  color: #EE964B;
  background: transparent;
}

.btn-outline-dark {
  border: 2px solid #000;
  color: #000;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

/* ---- SECTION TAG ---- */
/* Default: #F95738 (light surface). Dark surface: add class .section-tag--dark or use inline color: #EE964B */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F95738;
  margin-bottom: 16px;
}

.section-tag--dark {
  color: #EE964B;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #EE964B;
}

.nav-links a.active {
  color: #000;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #EE964B;
}

.nav-cta {
  font-size: 13px;
  padding: 10px 20px;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: all 0.3s;
}

.nav-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px 40px;
  border-bottom: 1px solid #ececec;
  display: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.site-header.menu-open .nav-mobile-menu {
  display: block;
}

.site-header.menu-open .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-burger span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu ul {
  list-style: none;
}

.nav-mobile-menu li {
  margin-bottom: 16px;
}

.nav-mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  display: block;
}

/* ============================================================
   HERO (shared base)
   ============================================================ */
.hero-page {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-page .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
}

/* Static pages hero — solid 80% black overlay */
.hero-page--static .hero-bg {
  opacity: 1;
}

.hero-page--static .hero-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.hero-page .hero-body {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
  width: 100%;
}

.hero-page h1 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
  line-height: 1.1;
  max-width: 760px;
  text-wrap: pretty;
}

.hero-page .hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

.hero-page .hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 150, 75, 0.15);
  border: 1px solid rgba(238, 150, 75, 0.4);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 18px;
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #EE964B;
}

/* ============================================================
   STATS BAR (orange)
   ============================================================ */
.stats-bar {
  background: #EE964B;
  padding: 52px 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 8px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Headland One', serif;
  font-size: 52px;
  font-weight: 400;
  color: #000;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================================
   CTA SECTION (dark)
   ============================================================ */
.cta-section {
  background: #000;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 150, 75, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(30px, 4.5vw, 52px);
  max-width: 620px;
  margin: 0 auto;
  text-wrap: pretty;
  position: relative;
}

.cta-section h2 em {
  color: #EE964B;
  font-style: normal;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  max-width: 440px;
  margin: 16px auto 0;
  position: relative;
}

.cta-section .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER — reference: Tentang Kami
   ============================================================ */
.site-footer {
  background: #0a0a0a !important;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px !important;
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  box-sizing: border-box;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 32ch;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-top: 14px;
  transition: color 0.2s;
}

.footer-email-link:hover {
  color: #EE964B;
}

.footer-email-link img,
.footer-email-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-email-link img {
  filter: invert(1);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  border-color: #EE964B;
  background: #EE964B;
  color: #000;
}

.footer-socials img,
.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #EE964B;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li+li {
  margin-top: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #EE964B;
}

.footer-contact-item {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #EE964B;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #EE964B;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-orange {
  color: #EE964B;
}

.bg-light {
  background: #f9f9f9;
}

section {
  padding: 100px 0;
}

/* ============================================================
   SERVICE PAGES — shared component styles
   Template reference: audit-service.html
   ============================================================ */

/* Pain / Problem section */
.pain-section {
  padding: 80px 0;
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.pain-left h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
}

.pain-left p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.pain-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pain-card {
  background: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 24px;
}

.pain-card:hover {
  border-color: #F95738;
}

.pain-card h4 {
  font-family: 'Headland One', serif;
  font-size: 15px;
  margin-bottom: 8px;
}

.pain-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

/* Process section */
.process-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.process-section h2 {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}

.process-section>.container>p {
  text-align: center;
  color: #666;
  margin-bottom: 48px;
  font-size: 15px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  background: #fff;
  border-radius: 6px;
  padding: 32px 24px;
  border: 1px solid #ebebeb;
}

.step-num {
  font-family: 'Headland One', serif;
  font-size: 48px;
  color: #EE964B;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.process-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Deliverables section */
.deliverables-section {
  padding: 80px 0;
  background: #fff;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.deliverables-num {
  font-family: 'Headland One', serif;
  font-size: 72px;
  color: #EE964B;
  line-height: 1;
}

.deliverables-num span {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.deliverables-list {
  list-style: none;
  margin-top: 12px;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.deliverables-list li::before {
  content: "✓";
  color: #EE964B;
  font-weight: 700;
  flex-shrink: 0;
}

/* Testimonials section */
.testimonials-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.testimonials-section h2 {
  text-align: center;
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  border: 1px solid #ebebeb;
}

.testimonial-card:hover {
  border-color: #EE964B;
  box-shadow: 0 4px 24px rgba(238, 150, 75, 0.08);
}

.testimonial-text {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EE964B;
  display: grid;
  place-items: center;
  font-family: 'Headland One', serif;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-biz {
  font-size: 12px;
  color: #888;
}

/* GLOBAL FAQ SYSTEM - HOMEPAGE STYLE */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}

.faq-left h2 {
  font-size: clamp(22px, 2.5vw, 36px);
  margin-bottom: 16px;
}

.faq-left p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-item {
  border-bottom: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: 'Headland One', serif;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
  white-space: normal;
  /* Mendukung 2 baris */
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-q::after {
  content: '+';
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #EE964B;
  transition: all 0.3s;
  flex-shrink: 0;
}

/* Hover & Active State */
.faq-q:hover,
.faq-item.open .faq-q {
  background: #EE964B;
  color: #000;
}

.faq-q:hover::after,
.faq-item.open .faq-q::after {
  color: #000;
}

.faq-item.open .faq-q::after {
  content: '−';
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  background: #fff;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 1000px;
  padding-top: 10px;
  padding-bottom: 24px;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .faq-q {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-a {
    font-size: 14px;
    padding: 0 20px;
  }

  .faq-item.open .faq-a {
    padding-bottom: 20px;
  }
}

/* Related services section */
.related-services {
  padding: 80px 0;
  background: #f9f9f9;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.related-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px;
  border: 1px solid #ebebeb;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
}

.related-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.related-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.related-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 900px) {

  /* Navbar Mobile Overrides */
  .site-header .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
    max-width: 100vw;
  }

  .nav-inner {
    height: 70px;
  }

  .nav-logo {
    margin-left: 4px;
  }

  .nav-logo img {
    height: 64px !important;
    /* Logo lebih besar */
  }

  .nav-burger {
    display: flex;
    margin-right: 4px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .testimonials-grid,
  .related-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-item {
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 768px) {
  .hero-page h1 {
    font-size: clamp(28px, 6vw, 42px);
  }

  .cta-section h2 {
    font-size: clamp(26px, 6vw, 36px);
  }

  section {
    padding: 60px 0;
  }

  .stats-bar {
    padding: 40px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding: 60px 0 20px;
  }
}

@media (max-width: 480px) {
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }

  .stat-item:nth-child(odd) {
    border-right: none;
  }

  .hero-page .hero-body {
    margin-left: 12px;
    margin-right: 12px;
  }

  .hero-page .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-page .hero-actions .btn {
    text-align: center;
  }

  .cta-section .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-section .cta-actions .btn {
    text-align: center;
  }
}


/* ============================================================
   MIGRATED PAGES CSS
   ============================================================ */

/* --- tentang-kami --- */
.story-section {
  padding: 100px 0;
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-img {
  border-radius: 4px;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.story-text .section-tag {
  color: #EE964B;
}

.story-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 24px;
  text-wrap: pretty;
}

.story-text p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-section {
  padding: 96px 0;
  background: #f9f9f9;
}

.values-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  text-align: center;
  margin-bottom: 56px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: #fff;
  border-radius: 6px;
  padding: 36px 28px;
  border: 1px solid #ebebeb;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(238, 150, 75, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.value-icon svg {
  fill: #EE964B;
  width: 18px;
  height: 18px;
}

.value-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.team-section {
  padding: 96px 0;
  background: #0a0a0a;
}

.team-section .section-tag {
  color: #EE964B;
}

.team-header {
  margin-bottom: 56px;
}

.team-header h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-top: 8px;
  color: #fff;
}

.team-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  line-height: 1.75;
  margin-top: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s;
}

.team-card:hover {
  border-color: rgba(238, 150, 75, 0.4);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  object-position: top;
}

.team-card-body {
  padding: 24px;
  background: #111;
}

.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #EE964B;
  margin-bottom: 8px;
  display: block;
}

.team-name {
  color: #fff;
  font-family: 'Headland One', serif;
  font-size: 24px;
  margin: 0 0 12px;
  display: block;
}

.team-detail {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.team-badge {
  display: inline-block;
  background: rgba(238, 150, 75, 0.12);
  border: 1px solid rgba(238, 150, 75, 0.3);
  color: #EE964B;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* --- layanan --- */
.service-group {
  padding: 96px 0;
}

.service-group+.service-group {
  border-top: 1px solid #ececec;
}

.service-group-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 32px;
}

.service-group-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  max-width: 400px;
}

.service-group-header p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  padding: 28px 0;
  border-top: 1px solid #e5e5e5;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.service-card-icon svg {
  fill: #EE964B;
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.phase-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.phase-baru {
  background: #F95738;
  color: #fff;
  border: none;
}

.phase-jalan {
  background: #8C1C13;
  color: #fff;
  border: none;
}

.phase-scale {
  background: #EE964B;
  color: #000;
  border: none;
}

@media (max-width: 900px) {
  .service-group-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* --- kontak --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 64px 0;
}

.contact-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 36px 24px;
  text-align: center;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(238, 150, 75, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #EE964B;
  fill: none;
  stroke-width: 1.5;
}

.contact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card p {
  color: #666;
  font-size: 14px;
}

.contact-card a {
  color: #EE964B;
  font-weight: 600;
  text-decoration: none;
}

.contact-form-section {
  padding: 0 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 48px;
}

.form-box h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #111;
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #EE964B;
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.map-box {
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  background: #e9eef2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-preview {
  padding: 80px 0;
  background: #f9f9f9;
}

.portfolio-preview h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 8px;
}

.portfolio-preview p {
  color: #666;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-thumb {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #1a1a1a;
}

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

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-box {
    min-height: 320px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- konsultasi --- */
/* ============================================================
   KONSULTASI — landing page custom styles
   ============================================================ */

/* Hero override — stronger lead-gen focus */
.konsul-hero {
  min-height: 460px;
}

.konsul-hero .hero-body {
  padding: 72px 0 64px;
}

.konsul-hero h1 strong {
  color: #EE964B;
  font-weight: inherit;
}

.konsul-hero .hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.konsul-hero .hero-trust>div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.konsul-hero .hero-trust svg {
  width: 18px;
  height: 18px;
  stroke: #EE964B;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ---- Step indicator strip ---- */
.steps-strip {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 28px 0;
}

.steps-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.step-pill {
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-pill-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #EE964B;
  color: #000;
  display: grid;
  place-items: center;
  font-family: 'Headland One', serif;
  font-size: 16px;
}

.step-pill.muted .step-pill-num {
  background: #f1f1f1;
  color: #888;
}

.step-pill-text small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 2px;
}

.step-pill-text span {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* ============================================================
   FORM + SIDEBAR
   ============================================================ */
.lead-section {
  padding: 88px 0 72px;
  background: #fafafa;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.form-card-head {
  margin-bottom: 36px;
}

.form-card-head .section-tag {
  margin-bottom: 8px;
}

.form-card-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 10px;
  line-height: 1.2;
}

.form-card-head p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  max-width: 480px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group>label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.form-group>label .req {
  color: #EE964B;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #111;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #EE964B;
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

/* Pain-point chip selector */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.chip {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fafafa;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #333;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-box {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff;
  transition: all 0.15s;
}

.chip-box::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #EE964B;
  border-radius: 1px;
  transform: scale(0);
  transition: transform 0.15s;
}

.chip:hover {
  border-color: #EE964B;
  background: #fff;
}

.chip:has(input:checked) {
  border-color: #EE964B;
  background: #fff7ef;
}

.chip:has(input:checked) .chip-box {
  border-color: #EE964B;
}

.chip:has(input:checked) .chip-box::after {
  transform: scale(1);
}

/* CF7 Chip Override */
.chip-grid .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}

.chip-grid .wpcf7-list-item {
  margin: 0;
  display: block;
}

.chip-grid .wpcf7-list-item label {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fafafa;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #333;
  margin: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.chip-grid .wpcf7-list-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-grid .wpcf7-list-item-label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  flex-shrink: 0;
  display: inline-flex;
  place-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.15s;
  margin-right: 10px;
  vertical-align: middle;
}

.chip-grid .wpcf7-list-item label:hover {
  border-color: #EE964B;
  background: #fff;
}

.chip-grid .wpcf7-list-item input:checked+.wpcf7-list-item-label::before {
  border-color: #EE964B;
  background-color: #fff;
}

/* Use box-shadow to simulate the inner orange square */
.chip-grid .wpcf7-list-item input:checked+.wpcf7-list-item-label::before {
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 10px #EE964B;
}

.chip-grid .wpcf7-list-item:has(input:checked) label {
  border-color: #EE964B;
  background: #fff7ef;
}

/* CF7 general form overrides */
.wpcf7 form .wpcf7-response-output {
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  margin: 24px 0 0;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #f44336;
  color: #f44336;
}

.wpcf7-not-valid-tip {
  font-size: 11px;
  color: #f44336;
  display: block;
  margin-top: 6px;
}

.wpcf7-spinner {
  margin: 0 12px;
}

.form-helper {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  line-height: 1.5;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.form-submit-row .privacy {
  font-size: 12px;
  color: #888;
  max-width: 320px;
  line-height: 1.5;
}

.form-submit-row .privacy a {
  color: #EE964B;
}

.btn-submit {
  padding: 14px 32px;
  font-size: 14px;
}

/* Sidebar — what to expect */
.lead-side {
  position: sticky;
  top: 100px;
}

.expect-card {
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 36px;
}

.expect-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #EE964B;
  margin-bottom: 18px;
}

.expect-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #fff;
}

.expect-list {
  list-style: none;
}

.expect-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.6;
}

.expect-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.expect-list li:last-child {
  padding-bottom: 0;
}

.expect-num {
  font-family: 'Headland One', serif;
  font-size: 18px;
  color: #EE964B;
  line-height: 1.2;
  flex-shrink: 0;
  width: 22px;
}

.expect-list strong {
  color: #fff;
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}

.expect-list span {
  color: rgba(255, 255, 255, 0.6);
}

.consultant-mini {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.consultant-mini .avatars {
  display: flex;
}

.consultant-mini .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EE964B;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-family: 'Headland One', serif;
  font-size: 15px;
  color: #000;
  margin-left: -8px;
}

.consultant-mini .avatar:first-child {
  margin-left: 0;
}

.consultant-mini .avatar.alt {
  background: #1a1a1a;
  color: #EE964B;
}

.consultant-mini .avatar.alt2 {
  background: #f5e2cf;
  color: #b8612e;
}

.consultant-mini-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.consultant-mini-text span {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

/* ============================================================
   CALENDLY SECTION
   ============================================================ */
.calendly-section {
  padding: 96px 0 88px;
  background: #fff;
}

.calendly-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}

.calendly-head .section-tag {
  display: block;
}

.calendly-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 14px;
  line-height: 1.2;
}

.calendly-head p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.calendly-frame-wrap {
  border: 1px solid #ececec;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 720px;
}

.calendly-inline-widget {
  min-height: 720px;
  width: 100%;
}

.calendly-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 24px;
  background: #fafafa;
  pointer-events: none;
}

.calendly-fallback-inner {
  max-width: 380px;
  pointer-events: auto;
}

.calendly-fallback h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.calendly-fallback p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.calendly-fallback .calendly-mock-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 6px;
  padding: 24px;
  text-align: left;
  margin-bottom: 18px;
}

.calendly-fallback .cal-meet-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.cal-meet-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a73e8, #0c47a1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}

.cal-meet-row strong {
  display: block;
  font-size: 13px;
  color: #111;
}

.cal-meet-row small {
  font-size: 11px;
  color: #777;
}

.cal-event-meta {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}

.cal-event-meta strong {
  color: #111;
  font-weight: 600;
}



/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lead-side {
    position: static;
  }

  .form-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .steps-strip-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .chip-grid {
    grid-template-columns: 1fr;
  }

  .chip-grid .wpcf7-checkbox {
    grid-template-columns: 1fr;
  }
}

/* --- blog --- */
/* HERO BLOG */
.blog-hero {
  background: #111;
  padding: 64px 0 0;
}

.blog-hero-head {
  text-align: center;
  padding-bottom: 48px;
}

.blog-hero-head .section-tag {
  color: #EE964B;
}

.blog-hero-head h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  margin: 12px 0;
}

.blog-hero-head p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.featured-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.3s;
}

.featured-card:hover img {
  filter: brightness(0.85);
}

.featured-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.post-tag {
  display: inline-block;
  background: #EE964B;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.post-tag.kopi {
  background: #6366f1;
  color: #fff;
}

.post-tag.keuangan {
  background: #16a34a;
  color: #fff;
}

.post-tag.team {
  background: #0ea5e9;
  color: #fff;
}

.post-tag.digital {
  background: #7c3aed;
  color: #fff;
}

.post-tag.trend {
  background: #f59e0b;
  color: #000;
}

.featured-card-body h2 {
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
  margin-bottom: 8px;
}

.featured-card-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.post-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.post-meta span {
  margin-right: 12px;
}

/* FILTER TABS */
.filter-bar {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  position: sticky;
  top: 76px;
  z-index: 40;
}

.filter-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.filter-inner::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  color: #555;
}

.filter-btn:hover {
  border-color: #EE964B;
  color: #EE964B;
}

.filter-btn.active {
  background: #EE964B;
  border-color: #EE964B;
  color: #000;
  font-weight: 700;
}

/* BLOG GRID */
.blog-grid-section {
  padding: 64px 0;
  background: #fff;
}

.blog-grid-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 40px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  cursor: pointer;
}

.post-card-img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #1a1a1a;
}

.post-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.post-card:hover .post-card-img img {
  transform: scale(1.03);
}

.post-card-img .img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card-img .img-placeholder span {
  color: rgba(255, 255, 255, 0.15);
  font-family: monospace;
  font-size: 11px;
}

.post-date-author {
  font-size: 12px;
  color: #aaa;
  margin: 6px 0;
}

.post-date-author strong {
  color: #666;
}

.post-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  margin-bottom: 8px;
  text-wrap: pretty;
}

.post-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 48px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  color: #555;
}

.page-btn.active {
  background: #EE964B;
  border-color: #EE964B;
  color: #000;
  font-weight: 700;
}

.page-btn:hover:not(.active) {
  border-color: #EE964B;
  color: #EE964B;
}

.page-ellipsis {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #aaa;
  font-size: 14px;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* --- privacy-policy --- */
/* ============================================================
   PRIVACY PAGE
   ============================================================ */

/* Hero — slimmer, gradient background instead of photo */
.privacy-hero {
  position: relative;
  padding: 96px 0 56px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(238, 150, 75, 0.15), transparent 50%);
  pointer-events: none;
}

.privacy-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.privacy-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-wrap: pretty;
}

.privacy-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.privacy-hero .last-updated {
  display: inline-block;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Highlight strip */
.privacy-strip {
  background: #EE964B;
  padding: 28px 0;
}

.privacy-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.privacy-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #1a1a1a;
}

.privacy-strip-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #1a1a1a;
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.privacy-strip-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.privacy-strip-item span {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}

/* Body — sidebar TOC + content */
.privacy-body {
  padding: 80px 0 96px;
  background: #fff;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 100px;
  border-left: 2px solid #f0f0f0;
  padding-left: 20px;
}

.privacy-toc h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.privacy-toc ol {
  list-style: none;
  counter-reset: toc;
}

.privacy-toc ol li {
  counter-increment: toc;
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 0;
}

.privacy-toc ol li a {
  color: #444;
  transition: color 0.15s;
  display: flex;
  gap: 10px;
}

.privacy-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'Headland One', serif;
  color: #EE964B;
  flex-shrink: 0;
  min-width: 22px;
}

.privacy-toc ol li a:hover {
  color: #EE964B;
}

.privacy-content {
  max-width: 720px;
}

.privacy-content section {
  padding: 0 0 40px;
  scroll-margin-top: 100px;
}

.privacy-content section:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 40px;
}

.privacy-content .sec-num {
  font-family: 'Headland One', serif;
  font-size: 14px;
  color: #EE964B;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

.privacy-content h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 18px;
}

/* ============================================================
   JALAN KELUAR — Global Structural Overrides
   ============================================================ */
html,
body {
  overflow-x: clip;
}

/* Footer full-width — override Hello Elementor parent */
body .site-footer,
footer.site-footer {
  display: block !important;
  background: #0a0a0a !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  box-sizing: border-box !important;
}

.privacy-content ul {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
}

.privacy-content ul li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.privacy-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EE964B;
}

.privacy-content strong {
  color: #111;
  font-weight: 600;
}

.privacy-content a {
  color: #EE964B;
  font-weight: 500;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.callout {
  background: #fff7ef;
  border-left: 3px solid #EE964B;
  padding: 18px 22px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}

.callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5a3a1a;
}

.callout strong {
  color: #1a1a1a;
}

/* Contact card at bottom */
.privacy-contact {
  background: #f9f9f9;
  padding: 64px 0;
  border-top: 1px solid #ececec;
}

.privacy-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.privacy-contact h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.privacy-contact p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.privacy-contact-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 28px;
}

.privacy-contact-card .row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.privacy-contact-card .row:last-child {
  border-bottom: none;
}

.privacy-contact-card .row strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #888;
  min-width: 80px;
}

.privacy-contact-card .row a {
  color: #111;
}

.privacy-contact-card .row a:hover {
  color: #EE964B;
}

@media (max-width: 900px) {
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .privacy-toc {
    position: static;
    border-left: none;
    border-top: 2px solid #f0f0f0;
    padding: 20px 0 0;
  }

  .privacy-strip-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .privacy-contact-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   JALAN KELUAR - Global Structural Overrides
   ============================================================ */
html,
body {
  overflow-x: clip;
}

/* Footer full-width - override Hello Elementor parent */
body .site-footer,
footer.site-footer {
  display: block !important;
  background: #0a0a0a !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  box-sizing: border-box !important;
}

/* Reset wrapper spacing to prevent white space around navbar/hero */
main#main-content,
main#main-content article {
  margin: 0 !important;
  padding: 0 !important;
}


/* ============================================================
   MIGRATED PAGES CSS
   ============================================================ */

/* --- portofolio --- */
.quote-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.quote-divider {
  width: 48px;
  height: 2px;
  background: #EE964B;
  margin: 0 auto 32px;
}

blockquote {
  font-family: 'Headland One', serif;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto;
  color: #111;
  font-style: italic;
}

blockquote cite {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  font-style: normal;
  margin-top: 24px;
}

.clients-marquee {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
}

.marquee-viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.clients-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.client-logo {
  flex-shrink: 0;
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #eee;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.client-logo:hover {
  border-color: #EE964B;
  background: #fff9f3;
}

.client-logo img {
  height: 28px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  filter: grayscale(30%);
  flex-shrink: 0;
  transition: filter 0.2s;
}

.client-logo span {
  font-family: 'Headland One', serif;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
  transition: color 0.2s;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

.client-logo:hover span {
  color: #000;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.gallery-section {
  padding: 80px 0;
}

.gallery-section h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 8px;
}

.gallery-section .section-tag {
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}