/* Konsultan Bisnis Independen — consulting-navy */
:root {
  --navy: #0d1b3e;
  --navy-mid: #1a3260;
  --navy-light: #2a4a8a;
  --gold: #c9a84c;
  --gold-light: #e6c87a;
  --cream: #f8f5ef;
  --cream-dark: #ede8df;
  --text: #1a1a2e;
  --text-muted: #5a6075;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(13,27,62,0.12);
  --radius: 8px;
  --transition: 0.25s ease;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{
  font-family:-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.65;
}
img{max-width:100%;display:block}
a{color:var(--navy-light);text-decoration:none}
a:hover{color:var(--gold)}

/* Demo Bar */
.demo-bar{
  background:var(--navy);
  color:var(--cream);
  font-size:.75rem;
  padding:.45rem 1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
  text-align:center;
  z-index:1000;
  position:relative;
}
.demo-bar strong{color:var(--gold);letter-spacing:.05em}
.demo-bar a{
  color:var(--gold-light);
  text-decoration:underline;
  font-weight:600;
}
.demo-bar a:hover{color:var(--white)}
.demo-bar .btn-pesan{
  background:var(--gold);
  color:var(--navy);
  padding:.25rem .75rem;
  border-radius:4px;
  text-decoration:none;
  font-weight:700;
  font-size:.75rem;
}
.demo-bar .btn-pesan:hover{background:var(--gold-light)}

/* Navigation */
.site-header{
  background:var(--white);
  border-bottom:3px solid var(--navy);
  position:sticky;
  top:0;
  z-index:900;
  box-shadow:0 2px 12px rgba(13,27,62,0.08);
}
.nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
}
.logo{
  display:flex;
  align-items:center;
  gap:.65rem;
  text-decoration:none;
}
.logo-icon{
  width:40px;height:40px;
  background:var(--navy);
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.logo-text{
  font-size:1rem;
  font-weight:700;
  color:var(--navy);
  line-height:1.2;
}
.logo-text span{display:block;font-size:.7rem;font-weight:400;color:var(--text-muted)}

.nav-toggle{display:none}
.nav-toggle-label{
  display:none;
  cursor:pointer;
  padding:.5rem;
}
.hamburger,.hamburger::before,.hamburger::after{
  display:block;
  width:24px;height:2px;
  background:var(--navy);
  transition:var(--transition);
}
.hamburger{position:relative}
.hamburger::before,.hamburger::after{
  content:'';
  position:absolute;left:0;
}
.hamburger::before{top:-7px}
.hamburger::after{top:7px}

.nav-menu{
  display:flex;
  align-items:center;
  gap:1.75rem;
  list-style:none;
}
.nav-menu a{
  color:var(--text);
  font-weight:500;
  font-size:.9rem;
  padding:.25rem 0;
  border-bottom:2px solid transparent;
  transition:var(--transition);
}
.nav-menu a:hover,.nav-menu a.active{
  color:var(--navy);
  border-bottom-color:var(--gold);
}
.nav-cta{
  background:var(--navy);
  color:var(--white)!important;
  padding:.5rem 1.25rem!important;
  border-radius:var(--radius)!important;
  border-bottom:none!important;
}
.nav-cta:hover{background:var(--navy-light)!important;color:var(--white)!important}

@media(max-width:768px){
  .nav-toggle-label{display:block}
  .nav-menu{
    display:none;
    position:absolute;top:100%;left:0;right:0;
    background:var(--white);
    flex-direction:column;
    padding:1rem 1.25rem 1.5rem;
    gap:.75rem;
    border-bottom:3px solid var(--navy);
    box-shadow:0 8px 24px rgba(13,27,62,.12);
    align-items:flex-start;
  }
  .nav-toggle:checked ~ .nav-menu{display:flex}
  .site-header{position:relative}
}

/* Hero */
.hero{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 60%,var(--navy-light) 100%);
  color:var(--white);
  padding:5rem 1.25rem 4rem;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;top:-80px;right:-80px;
  width:400px;height:400px;
  border:60px solid rgba(201,168,76,.12);
  border-radius:50%;
}
.hero::after{
  content:'';
  position:absolute;bottom:-60px;left:-40px;
  width:250px;height:250px;
  border:40px solid rgba(201,168,76,.08);
  border-radius:50%;
}
.hero-inner{
  max-width:900px;
  margin:0 auto;
  position:relative;z-index:1;
  text-align:center;
}
.hero-badge{
  display:inline-block;
  background:rgba(201,168,76,.2);
  border:1px solid var(--gold);
  color:var(--gold-light);
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.35rem .9rem;
  border-radius:20px;
  margin-bottom:1.25rem;
}
.hero h1{
  font-size:clamp(1.8rem,5vw,3rem);
  font-weight:800;
  line-height:1.2;
  margin-bottom:1rem;
}
.hero h1 em{
  font-style:normal;
  color:var(--gold);
}
.hero p{
  font-size:1.05rem;
  color:rgba(255,255,255,.85);
  max-width:580px;
  margin:0 auto 2rem;
}
.hero-btns{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  padding:.75rem 1.75rem;
  border-radius:var(--radius);
  font-weight:700;
  font-size:.9rem;
  transition:var(--transition);
  cursor:pointer;
  border:none;
}
.btn-primary{
  background:var(--gold);
  color:var(--navy);
}
.btn-primary:hover{background:var(--gold-light);color:var(--navy)}
.btn-outline{
  border:2px solid var(--white);
  color:var(--white);
  background:transparent;
}
.btn-outline:hover{background:var(--white);color:var(--navy)}
.btn-navy{background:var(--navy);color:var(--white)}
.btn-navy:hover{background:var(--navy-light);color:var(--white)}

/* Stats bar */
.stats-bar{
  background:var(--cream);
  border-bottom:2px solid var(--cream-dark);
  padding:2rem 1.25rem;
}
.stats-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:1.5rem;
  text-align:center;
}
.stat-item strong{
  display:block;
  font-size:2rem;
  font-weight:800;
  color:var(--navy);
  line-height:1;
}
.stat-item span{
  font-size:.85rem;
  color:var(--text-muted);
  margin-top:.25rem;
}

/* Sections */
.section{padding:4rem 1.25rem}
.section-inner{max-width:1100px;margin:0 auto}
.section-alt{background:var(--cream)}
.section-dark{background:var(--navy);color:var(--white)}
.section-dark .section-subtitle{color:rgba(255,255,255,.7)}

.section-label{
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:.5rem;
}
.section-title{
  font-size:clamp(1.4rem,3vw,2.2rem);
  font-weight:800;
  color:var(--navy);
  margin-bottom:.75rem;
}
.section-dark .section-title{color:var(--white)}
.section-subtitle{
  color:var(--text-muted);
  font-size:1rem;
  max-width:600px;
  margin-bottom:3rem;
}
.text-center{text-align:center}
.text-center .section-subtitle{margin-left:auto;margin-right:auto}

/* Cards grid */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;
}
.card{
  background:var(--white);
  border-radius:var(--radius);
  padding:1.75rem;
  box-shadow:var(--shadow);
  transition:var(--transition);
  border-top:4px solid transparent;
}
.card:hover{
  transform:translateY(-4px);
  border-top-color:var(--gold);
}
.card-icon{
  width:52px;height:52px;
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;
}
.card-icon svg{fill:var(--gold)}
.card h3{font-size:1.05rem;font-weight:700;margin-bottom:.5rem;color:var(--navy)}
.card p{font-size:.9rem;color:var(--text-muted);line-height:1.6}

/* Service list */
.service-item{
  display:flex;
  gap:1.25rem;
  padding:1.5rem;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  margin-bottom:1rem;
  align-items:flex-start;
  transition:var(--transition);
}
.service-item:hover{box-shadow:0 8px 32px rgba(13,27,62,.16)}
.service-num{
  width:44px;height:44px;
  background:var(--gold);
  color:var(--navy);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:1rem;
  flex-shrink:0;
}
.service-body h3{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:.35rem}
.service-body p{font-size:.88rem;color:var(--text-muted)}

/* Testimonials */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
}
.testi-card{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(201,168,76,.25);
  border-radius:var(--radius);
  padding:1.75rem;
}
.testi-quote{
  font-size:.95rem;
  color:rgba(255,255,255,.9);
  line-height:1.7;
  margin-bottom:1.25rem;
  font-style:italic;
}
.testi-author{display:flex;align-items:center;gap:.75rem}
.testi-avatar{
  width:44px;height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--navy-light));
  display:flex;align-items:center;justify-content:center;
  font-weight:700;color:var(--white);font-size:1rem;
  flex-shrink:0;
}
.testi-name{font-weight:700;color:var(--white);font-size:.9rem}
.testi-role{font-size:.78rem;color:rgba(255,255,255,.6)}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;
  align-items:start;
}
.pricing-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:2rem;
  box-shadow:var(--shadow);
  border:2px solid var(--cream-dark);
  position:relative;
}
.pricing-card.featured{
  border-color:var(--navy);
  transform:scale(1.03);
}
.pricing-badge{
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--gold);color:var(--navy);
  font-size:.7rem;font-weight:800;letter-spacing:.06em;
  padding:.25rem .9rem;border-radius:20px;
  text-transform:uppercase;white-space:nowrap;
}
.pricing-name{font-size:.8rem;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.5rem}
.pricing-price{font-size:1.8rem;font-weight:800;color:var(--navy);margin-bottom:.25rem}
.pricing-price span{font-size:.9rem;font-weight:400;color:var(--text-muted)}
.pricing-desc{font-size:.85rem;color:var(--text-muted);margin-bottom:1.25rem}
.pricing-features{list-style:none;margin-bottom:1.5rem}
.pricing-features li{
  padding:.4rem 0;
  font-size:.88rem;
  color:var(--text);
  display:flex;align-items:flex-start;gap:.5rem;
  border-bottom:1px solid var(--cream-dark);
}
.pricing-features li:last-child{border-bottom:none}
.pricing-features li::before{
  content:'';
  display:inline-block;
  width:16px;height:16px;
  background:var(--gold);
  border-radius:50%;
  flex-shrink:0;
  margin-top:.15rem;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%230d1b3e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size:cover;
}

/* Process */
.process-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1.25rem;
  counter-reset:step;
}
.process-step{
  text-align:center;
  padding:1.75rem 1.25rem;
  position:relative;
}
.process-step-num{
  width:56px;height:56px;
  background:var(--navy);
  color:var(--gold);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;font-weight:800;
  margin:0 auto 1rem;
}
.process-step h3{font-size:.95rem;font-weight:700;color:var(--navy);margin-bottom:.4rem}
.process-step p{font-size:.85rem;color:var(--text-muted)}

/* CTA section */
.cta-section{
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  padding:4rem 1.25rem;
  text-align:center;
}
.cta-section h2{font-size:clamp(1.4rem,3vw,2rem);font-weight:800;color:var(--navy);margin-bottom:.75rem}
.cta-section p{color:rgba(13,27,62,.75);margin-bottom:2rem;max-width:520px;margin-left:auto;margin-right:auto}

/* Team */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
}
.team-card{
  text-align:center;
  background:var(--white);
  border-radius:var(--radius);
  padding:2rem 1.5rem;
  box-shadow:var(--shadow);
}
.team-avatar{
  width:80px;height:80px;
  border-radius:50%;
  margin:0 auto 1rem;
  display:flex;align-items:center;justify-content:center;
  font-size:1.75rem;font-weight:800;color:var(--white);
}
.team-card h3{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:.25rem}
.team-card .role{font-size:.82rem;color:var(--gold);font-weight:600;margin-bottom:.5rem}
.team-card p{font-size:.85rem;color:var(--text-muted)}

/* Form */
.form-group{margin-bottom:1.25rem}
.form-group label{
  display:block;
  font-weight:600;font-size:.875rem;
  color:var(--navy);margin-bottom:.4rem;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:.75rem 1rem;
  border:2px solid var(--cream-dark);
  border-radius:var(--radius);
  font-size:.9rem;
  font-family:inherit;
  color:var(--text);
  background:var(--white);
  transition:var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--navy-light);
  box-shadow:0 0 0 3px rgba(42,74,138,.12);
}
.form-group textarea{resize:vertical;min-height:120px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:600px){.form-row{grid-template-columns:1fr}}

/* Contact info */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem;
  align-items:start;
}
@media(max-width:768px){.contact-grid{grid-template-columns:1fr}}
.contact-info-list{list-style:none;margin-top:1.5rem}
.contact-info-list li{
  display:flex;gap:1rem;align-items:flex-start;
  padding:.85rem 0;
  border-bottom:1px solid var(--cream-dark);
}
.contact-info-list li:last-child{border-bottom:none}
.ci-icon{
  width:40px;height:40px;
  background:var(--navy);
  border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.ci-icon svg{fill:var(--gold)}
.ci-body strong{display:block;font-size:.85rem;color:var(--navy);margin-bottom:.15rem}
.ci-body span{font-size:.85rem;color:var(--text-muted)}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}
@media(max-width:768px){.about-grid{grid-template-columns:1fr}}
.about-visual{
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  border-radius:12px;
  padding:2.5rem;
  display:flex;align-items:center;justify-content:center;
  min-height:320px;
}
.value-list{margin-top:1.5rem}
.value-item{
  display:flex;gap:1rem;align-items:flex-start;
  margin-bottom:1.25rem;
}
.value-dot{
  width:10px;height:10px;
  background:var(--gold);
  border-radius:50%;
  flex-shrink:0;
  margin-top:.5rem;
}
.value-item h4{font-size:.95rem;font-weight:700;color:var(--navy);margin-bottom:.25rem}
.value-item p{font-size:.85rem;color:var(--text-muted)}

/* Page hero (inner pages) */
.page-hero{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  color:var(--white);
  padding:3.5rem 1.25rem 3rem;
  text-align:center;
}
.page-hero h1{font-size:clamp(1.5rem,4vw,2.5rem);font-weight:800;margin-bottom:.75rem}
.page-hero p{color:rgba(255,255,255,.8);font-size:1rem;max-width:540px;margin:0 auto}

/* Breadcrumb */
.breadcrumb{
  background:var(--cream);
  padding:.65rem 1.25rem;
  font-size:.8rem;
}
.breadcrumb-inner{max-width:1100px;margin:0 auto;display:flex;gap:.5rem;align-items:center;flex-wrap:wrap}
.breadcrumb a{color:var(--navy-light)}
.breadcrumb span{color:var(--text-muted)}

/* FAQ */
.faq-list{max-width:760px;margin:0 auto}
.faq-item{
  border-bottom:1px solid var(--cream-dark);
  padding:1.25rem 0;
}
.faq-q{
  font-weight:700;font-size:.95rem;color:var(--navy);
  cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;
}
.faq-q::after{
  content:'';
  width:20px;height:20px;
  background:var(--navy);
  border-radius:50%;
  flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size:cover;
}
.faq-a{
  font-size:.9rem;color:var(--text-muted);
  padding-top:.75rem;line-height:1.7;
}

/* Footer */
.site-footer{
  background:var(--navy);
  color:rgba(255,255,255,.75);
  padding:3rem 1.25rem 1.5rem;
}
.footer-inner{
  max-width:1100px;margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:2rem;
  padding-bottom:2rem;
  border-bottom:1px solid rgba(255,255,255,.1);
}
@media(max-width:768px){.footer-inner{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.footer-inner{grid-template-columns:1fr}}
.footer-brand .logo-text{color:var(--white)}
.footer-brand .logo-text span{color:rgba(255,255,255,.5)}
.footer-brand p{font-size:.85rem;margin-top:.75rem;line-height:1.6}
.footer-col h4{font-size:.85rem;font-weight:700;color:var(--white);margin-bottom.75rem;margin-bottom:.75rem;letter-spacing:.04em;text-transform:uppercase}
.footer-col ul{list-style:none;margin-top:.75rem}
.footer-col ul li{margin-bottom:.5rem}
.footer-col ul li a{font-size:.85rem;color:rgba(255,255,255,.65);transition:var(--transition)}
.footer-col ul li a:hover{color:var(--gold)}
.footer-bottom{
  max-width:1100px;margin:0 auto;
  padding-top:1.25rem;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:.75rem;
  font-size:.78rem;
}
.footer-bottom a{color:var(--gold-light)}

/* Utility */
.divider{width:48px;height:4px;background:var(--gold);border-radius:2px;margin:.75rem 0 1.5rem}
.divider-center{margin-left:auto;margin-right:auto}
.badge{
  display:inline-block;
  background:rgba(201,168,76,.15);
  color:var(--gold);
  border:1px solid var(--gold);
  font-size:.72rem;font-weight:700;
  padding:.2rem .6rem;border-radius:4px;
  text-transform:uppercase;letter-spacing:.05em;
  margin-right:.35rem;margin-bottom:.35rem;
}
.highlight-box{
  background:var(--cream);
  border-left:4px solid var(--gold);
  padding:1.25rem 1.5rem;
  border-radius:0 var(--radius) var(--radius) 0;
  margin:1.5rem 0;
}
.highlight-box p{font-size:.9rem;color:var(--text-muted)}

@media(max-width:480px){
  .hero{padding:3.5rem 1rem 3rem}
  .section{padding:3rem 1rem}
  .stats-bar{padding:1.5rem 1rem}
}
