/* ============================================================
   BREVET PAJAK — Landing Page Styles
   Tema: dokumen resmi / sertifikat — navy, brass gold, kertas.
   ============================================================ */

:root{
  --navy-deep:   #0A1B2E;
  --navy:        #10263F;
  --navy-soft:   #1B3A5C;
  --paper:       #F6F3EA;
  --paper-dim:   #EFEADD;
  --ink:         #1B1B18;
  --slate:       #59677A;
  --slate-light: #8593A3;
  --gold:        #B8923F;
  --gold-light:  #D9BD7A;
  --gold-pale:   #F1E6C8;
  --green:       #3F6C51;
  --line:        #DAD3C2;
  --line-navy:   rgba(246,243,234,0.18);

  --font-display: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --font-body:    "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --container: 1160px;
  --radius: 4px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.15; font-weight:600; }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 16px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--gold);
  display:inline-block;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:2px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  transition:transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{
  background:var(--gold);
  color:var(--navy-deep);
}
.btn-primary:hover{ background:var(--gold-light); }
.btn-outline{
  background:transparent;
  border-color:var(--line-navy);
  color:var(--paper);
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-light); }
.btn-outline-dark{
  background:transparent;
  border-color:var(--line);
  color:var(--navy);
}
.btn-outline-dark:hover{ border-color:var(--navy); }
.btn-block{ width:100%; }

/* ---------------- Header ---------------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(10,27,46,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line-navy);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  color:var(--paper);
  font-family:var(--font-display);
  font-size:19px;
  font-weight:600;
  letter-spacing:.01em;
}
.brand .seal-mini{
  width:32px; height:32px; flex:none;
}
.brand small{
  display:block;
  font-family:var(--font-mono);
  font-size:9.5px;
  font-weight:400;
  letter-spacing:.14em;
  color:var(--gold-light);
  margin-top:2px;
}
.nav-links{
  display:flex; align-items:center; gap:34px;
}
.nav-links a{
  color:var(--paper);
  opacity:.82;
  font-size:14.5px;
  font-weight:500;
  transition:opacity .15s ease, color .15s ease;
}
.nav-links a:hover{ opacity:1; color:var(--gold-light); }
.nav-cta{ display:flex; align-items:center; gap:22px; }
.nav-toggle{
  display:none;
  background:none; border:none; color:var(--paper);
  padding:8px;
}

/* ---------------- Hero ---------------- */
.hero{
  background:
    radial-gradient(ellipse at 78% 15%, rgba(184,146,63,0.16), transparent 55%),
    linear-gradient(180deg, var(--navy-deep), var(--navy) 70%);
  color:var(--paper);
  padding:88px 0 96px;
  position:relative;
  overflow:hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero-headline{
  font-size:clamp(34px, 4.6vw, 54px);
  color:var(--paper);
  letter-spacing:-0.01em;
}
.hero-headline em{
  font-style:italic;
  color:var(--gold-light);
}
.hero-sub{
  margin:22px 0 34px;
  font-size:17px;
  color:#C9D2DD;
  max-width:48ch;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:44px; }
.hero-stats{
  display:flex; gap:0;
  border-top:1px solid var(--line-navy);
  padding-top:22px;
}
.hero-stats div{
  flex:1;
  padding-right:20px;
  border-right:1px solid var(--line-navy);
}
.hero-stats div:last-child{ border-right:none; }
.hero-stats strong{
  display:block;
  font-family:var(--font-mono);
  font-size:24px;
  color:var(--gold-light);
  letter-spacing:-0.02em;
}
.hero-stats span{
  font-size:12.5px;
  color:var(--slate-light);
}

.hero-art{ position:relative; }
.hero-figure{ position:relative; z-index:2; width:100%; }
.hero-seal{
  position:absolute;
  right:-10px; bottom:-18px;
  z-index:3;
  width:132px; height:132px;
  animation:seal-in .7s cubic-bezier(.2,.8,.3,1) .3s backwards;
}
@keyframes seal-in{
  from{ transform:scale(.4) rotate(-25deg); opacity:0; }
  to{ transform:scale(1) rotate(-12deg); opacity:1; }
}
.hero-frame{
  position:absolute;
  inset:6% 2% 2% 8%;
  border:1px solid var(--line-navy);
  z-index:1;
}

/* ---------------- Section generic ---------------- */
section{ padding:96px 0; }
.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size:clamp(26px,3vw,36px);
  color:var(--navy);
}
.section-head p{
  margin-top:16px;
  color:var(--slate);
  font-size:16px;
}

/* ---------------- About ---------------- */
.about{ background:var(--paper); }
.about .wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:64px;
  align-items:start;
}
.about-title{
  font-size:clamp(24px,2.6vw,32px);
  color:var(--navy);
}
.about-body p{ color:var(--slate); font-size:16px; margin:20px 0 28px; }
.about-points{ display:grid; gap:16px; }
.about-points li{
  display:flex; gap:12px; align-items:flex-start;
  font-size:15px; color:var(--ink);
  padding-bottom:16px;
  border-bottom:1px dashed var(--line);
}
.about-points li:last-child{ border-bottom:none; }
.check{
  flex:none; width:20px; height:20px; margin-top:1px;
  color:var(--green);
}

/* ---------------- Programs (Brevet A/B/C) ---------------- */
.programs{ background:var(--paper-dim); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.program-path{
  display:flex; align-items:center; justify-content:center;
  gap:0; margin-bottom:44px;
}
.program-path .step{
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:.08em;
  color:var(--slate);
  display:flex; align-items:center; gap:10px;
}
.program-path .dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--gold);
}
.program-path .rule{
  width:64px; height:1px; background:var(--line);
  margin:0 12px;
}
.program-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.program-card{
  background:var(--paper);
  border:1px solid var(--line);
  padding:34px 28px 30px;
  position:relative;
  transition:border-color .2s ease, transform .2s ease;
}
.program-card:hover{ border-color:var(--gold); transform:translateY(-4px); }
.program-level{
  width:52px; height:52px;
  border:1.5px solid var(--gold);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-size:22px; font-weight:600;
  color:var(--gold);
  margin-bottom:20px;
}
.program-card h3{ font-size:20px; color:var(--navy); margin-bottom:6px; }
.program-audience{
  font-family:var(--font-mono);
  font-size:11.5px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--slate-light);
  margin-bottom:16px;
}
.program-card p.desc{ color:var(--slate); font-size:14.5px; margin-bottom:20px; }
.program-meta{
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px dashed var(--line);
  padding-top:16px;
  font-size:13px;
}
.program-meta .duration{ color:var(--slate); }
.program-meta .price{ font-family:var(--font-mono); color:var(--navy); font-weight:600; }

/* ---------------- Why us ---------------- */
.why{ background:var(--paper); }
.why-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.why-item{
  background:var(--paper);
  padding:32px 26px;
}
.why-icon{
  width:34px; height:34px;
  color:var(--gold);
  margin-bottom:18px;
}
.why-item h3{ font-size:16.5px; color:var(--navy); margin-bottom:10px; font-family:var(--font-body); font-weight:700; }
.why-item p{ font-size:14px; color:var(--slate); }

/* ---------------- Testimonials ---------------- */
.testi{ background:var(--navy-deep); color:var(--paper); }
.testi .section-head h2{ color:var(--paper); }
.testi .section-head p{ color:var(--slate-light); }
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testi-card{
  background:var(--navy);
  border:1px solid var(--line-navy);
  padding:30px 26px;
  position:relative;
}
.testi-quote{
  font-family:var(--font-display);
  font-size:16.5px;
  line-height:1.5;
  color:#E7EAEF;
  margin-bottom:24px;
  font-style:italic;
}
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--gold-light);
  flex:none;
}
.testi-person strong{ display:block; font-size:14.5px; }
.testi-person span{ font-size:12.5px; color:var(--slate-light); }

/* ---------------- Pricing ---------------- */
.pricing{ background:var(--paper); }
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.price-card{
  background:var(--paper);
  border:1.5px dashed var(--line);
  padding:38px 34px;
  position:relative;
}
.price-card.featured{
  border-style:solid;
  border-color:var(--gold);
  background:linear-gradient(180deg, var(--gold-pale), var(--paper) 40%);
}
.price-card .tag{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold);
  margin-bottom:10px; display:block;
}
.price-card h3{ font-size:22px; color:var(--navy); margin-bottom:6px; }
.price-card .price{ font-family:var(--font-mono); font-size:26px; color:var(--navy); margin:14px 0 2px; }
.price-card .note{ font-size:13px; color:var(--slate-light); margin-bottom:26px; }
.price-features{ display:grid; gap:12px; margin-bottom:30px; }
.price-features li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--ink); }
.price-features .check{ width:17px; height:17px; }

/* ---------------- CTA banner ---------------- */
.cta-banner{
  background:var(--navy);
  color:var(--paper);
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 85% 30%, rgba(184,146,63,0.22), transparent 55%);
}
.cta-inner{
  position:relative; z-index:1;
  text-align:center;
  max-width:620px;
  margin:0 auto;
}
.cta-inner h2{ font-size:clamp(26px,3.4vw,38px); color:var(--paper); margin-bottom:16px; }
.cta-inner p{ color:var(--slate-light); font-size:16px; margin-bottom:32px; }

/* ---------------- Footer ---------------- */
.site-footer{
  background:var(--navy-deep);
  color:var(--slate-light);
  padding:64px 0 28px;
  border-top:1px solid var(--line-navy);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid var(--line-navy);
}
.footer-brand{ color:var(--paper); font-family:var(--font-display); font-size:19px; margin-bottom:12px; }
.footer-grid p{ font-size:14px; line-height:1.7; max-width:34ch; }
.footer-col h4{
  font-family:var(--font-mono);
  font-size:11.5px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:16px;
  font-weight:500;
}
.footer-col ul{ display:grid; gap:10px; }
.footer-col a{ font-size:14px; transition:color .15s ease; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:24px;
  font-size:12.5px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:340px; margin:0 auto; }
  .about .wrap{ grid-template-columns:1fr; }
  .program-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .testi-grid{ grid-template-columns:1fr; }
  .pricing-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .hero-stats{ flex-wrap:wrap; gap:18px; }
  .hero-stats div{ flex:1 1 40%; border-right:none; padding-right:0; }
  section{ padding:64px 0; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}
