/* ==========================================================================
   Cahaya Mustika Internesia — Interactive Flat Panel
   Lightweight rebuild (vanilla HTML/CSS/JS, no framework)
   ========================================================================== */

:root{
  --primary:#1479d1;
  --primary-dark:#0b1f3a;
  --link:#0a58ca;
  --accent:#1556a6;
  --heading:#172033;
  --text:#212529;
  --muted:#667085;
  --muted-2:#6c757d;
  --bg-alt:#f7f9fc;
  --border:#e5e9ef;
  --icon-bg:#edf4fb;
  --white:#ffffff;

  --container:1200px;
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:12px;
  --radius-xl:15px;
  --radius-pill:30px;

  --shadow-sm:0 3px 12px rgba(0,0,0,.06);
  --shadow-md:0 4px 15px rgba(0,0,0,.05);
  --shadow-lg:0 10px 35px rgba(0,0,0,.12);

  --font:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  --font-heading:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font);
  font-size:16px;
  line-height:1.6;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4,p{margin:0;}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);}
.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:20px;
}

/* ---------- Header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.8);
  -webkit-backdrop-filter:blur(18px) saturate(1.6);
  backdrop-filter:blur(18px) saturate(1.6);
  border-bottom:.8px solid rgba(8,32,63,.08);
}
.header-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  padding-block:22px;
}
.logo{grid-column:1;justify-self:start;}
.logo img{height:42px;width:auto;}
.main-nav{grid-column:2;justify-self:center;}
.main-nav ul{display:flex;align-items:center;gap:4px;}
.main-nav a{
  display:block;
  padding:9px 12px;
  font-size:14.5px;
  font-weight:600;
  color:var(--heading);
  letter-spacing:-.1px;
  border-radius:6px;
  transition:color .2s ease, background-color .2s ease;
}
.main-nav .nav-dropdown-toggle{
  padding:9px 12px;
  font-size:14.5px;
  font-weight:600;
  color:var(--heading);
  letter-spacing:-.1px;
  border-radius:6px;
  transition:color .2s ease, background-color .2s ease;
}
.main-nav a:hover,
.main-nav .nav-dropdown-toggle:hover,
.has-dropdown.is-open .nav-dropdown-toggle{color:var(--primary);}

/* Produk dropdown */
.has-dropdown{position:relative;}
.nav-dropdown-toggle{
  display:flex;
  align-items:center;
  gap:6px;
  background:none;
  border:none;
  font-family:inherit;
  cursor:pointer;
}
.nav-caret{
  flex:none;
  display:block;
  width:7px;
  height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  border-radius:1px;
  transform:rotate(45deg);
  margin-top:-3px;
  transition:transform .2s ease;
}
.has-dropdown.is-open .nav-caret{transform:rotate(-135deg);margin-top:2px;}
.nav-dropdown{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  display:flex;
  flex-direction:column;
  width:240px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  box-shadow:0 8px 24px rgba(8,32,63,.08);
  padding:8px;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s;
  z-index:60;
}
.has-dropdown.is-open .nav-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
@media (min-width:992px){
  /* Bridges the 10px visual gap between the toggle and the dropdown so the
     mouse never leaves a hoverable element while moving from one to the
     other — without this, the dropdown can close before a click lands. */
  .has-dropdown::after{
    content:'';
    position:absolute;
    left:0;
    top:100%;
    width:240px;
    height:10px;
  }
  .has-dropdown:hover .nav-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
}
.nav-dropdown li{width:100%;}
.nav-dropdown li + li{border-top:1px solid var(--border);margin-top:2px;padding-top:2px;}
.nav-dropdown a{
  display:block;
  width:100%;
  padding:10px 14px;
  font-size:14px;
  font-weight:500;
  color:var(--heading);
  border-radius:6px;
  white-space:nowrap;
  transition:color .2s ease, background-color .2s ease;
}
.nav-dropdown a:hover{color:var(--primary);background:var(--icon-bg);}
.header-actions{grid-column:3;justify-self:end;display:flex;align-items:center;gap:14px;}
.btn-header{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 22px;
  border-radius:var(--radius-pill);
  background:var(--primary);
  color:var(--white);
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
  transition:background-color .2s ease, transform .2s ease;
}
.btn-header:hover{background:#1266b3;transform:translateY(-1px);}
.main-nav a.btn-header--mobile{display:none;}
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  border:1px solid var(--border);
  border-radius:6px;
  background:var(--white);
  cursor:pointer;
}
.nav-toggle span{display:block;height:2px;width:18px;margin-inline:auto;background:var(--heading);}

/* ---------- Buttons ---------- */
.btn-primary,.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 27px;
  border-radius:var(--radius-sm);
  font-family:inherit;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:background-color .15s ease,border-color .15s ease;
}
.btn-primary{background:var(--primary);color:var(--white);border:1px solid var(--primary);}
.btn-primary:hover{background:#1266b3;}
.btn-outline{background:transparent;color:var(--white);border:1px solid rgba(255,255,255,.8);}
.btn-outline:hover{background:rgba(255,255,255,.12);}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:680px;
  overflow:hidden;
  display:flex;
  align-items:center;
  color:var(--white);
  background:var(--primary-dark);
}
.hero-media{
  position:absolute;
  top:0;
  bottom:0;
  left:38%;
  right:0;
  z-index:0;
}
.hero-bg-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0;
  transform:scale(1.06);
  transition:opacity .9s ease, transform 1.1s ease;
}
.hero-bg-image.is-visible{opacity:1;transform:scale(1);}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,var(--primary-dark) 0%,var(--primary-dark) 42%,rgba(11,31,58,.6) 52%,rgba(11,31,58,0) 68%);
  z-index:1;
}
.hero .container{position:relative;z-index:2;}
.hero-content{max-width:600px;padding-block:60px;}
.hero-content h1{
  font-size:42px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:20px;
}
.hero-desc{
  font-size:16px;
  color:#dce6f2;
  margin-bottom:32px;
  max-width:520px;
}
.hero-buttons{display:flex;flex-wrap:wrap;gap:16px;}

/* ---------- Benefits ---------- */
.benefits{padding-bottom:40px;}
.benefits .container{position:relative;}
.benefits-box{
  position:relative;
  z-index:2;
  margin-top:-56px;
  background:var(--white);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-lg);
  padding:26px 28px;
  display:flex;
  align-items:stretch;
  flex-wrap:wrap;
}
.benefit-item{
  flex:1 1 0;
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:8px 20px;
  border-left:1px solid var(--border);
}
.benefit-item:first-child{border-left:none;}
.benefit-icon{
  flex:none;
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:700;
  font-style:normal;
  background:var(--icon-bg);
  color:var(--primary-dark);
}
.benefit-text{flex:1;min-width:0;}
.benefit-text p:first-of-type{font-size:19px;font-weight:700;color:var(--heading);margin-bottom:6px;line-height:1.25;}
.benefit-text p:last-of-type{
  font-size:15px;
  color:var(--muted);
  line-height:1.4;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* ---------- Tantangan ---------- */
.tantangan{padding:75px 0;}
.tantangan-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:90px;
}
.tantangan-intro{max-width:420px;}
.tantangan-label{
  display:block;
  color:var(--accent);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:20px;
}
.tantangan-intro h2{
  font-size:36px;
  font-weight:800;
  line-height:1.25;
  color:var(--heading);
  letter-spacing:-.3px;
  margin-bottom:22px;
}
.tantangan-intro p{
  font-size:15px;
  line-height:1.75;
  color:var(--muted);
}

.tantangan-list{display:flex;flex-direction:column;}
.tantangan-item{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:24px;
  padding:32px 0;
  border-top:1px solid var(--border);
}
.tantangan-item:first-child{padding-top:0;border-top:none;}
.tantangan-item:last-child{padding-bottom:0;}
.tantangan-number{
  font-size:30px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:.5px;
  line-height:1;
  font-variant-numeric:tabular-nums;
}
.tantangan-content p:first-of-type{
  font-size:19px;
  font-weight:700;
  color:var(--heading);
  margin-bottom:10px;
  letter-spacing:-.1px;
}
.tantangan-content p:last-of-type{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
}

/* ---------- Solusi ---------- */
.solusi{padding:75px 0;}
.solusi-heading{max-width:640px;margin:0 auto 56px;text-align:center;}
.solusi-label{
  display:block;
  color:var(--accent);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:20px;
}
.solusi-heading h2{
  font-size:30px;
  font-weight:800;
  line-height:1.25;
  color:var(--heading);
  letter-spacing:-.3px;
  margin-bottom:18px;
}
.solusi-heading p{
  font-size:15px;
  line-height:1.75;
  color:var(--muted);
}

.solusi-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.solusi-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}
/* Higher specificity than .reveal so entrance + hover transitions combine instead of one clobbering the other */
.solusi-card.reveal{
  transition:opacity .6s ease, transform .5s ease, box-shadow .4s ease;
}
.solusi-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}
.solusi-image{
  aspect-ratio:3/2;
  overflow:hidden;
  background:var(--bg-alt);
}
.solusi-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.solusi-card:hover .solusi-image img{transform:scale(1.06);}
.solusi-content{padding:24px;}
.solusi-number{
  display:block;
  font-size:14px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:.5px;
  margin-bottom:10px;
  transition:transform .4s ease;
}
.solusi-card:hover .solusi-number{transform:translateX(3px);}
.solusi-content p:first-of-type{
  font-size:17px;
  font-weight:700;
  color:var(--heading);
  margin-bottom:8px;
  letter-spacing:-.1px;
}
.solusi-content p:last-of-type{
  font-size:14px;
  line-height:1.65;
  color:var(--muted);
}

/* ---------- Produk ---------- */
.produk{padding:70px 0;}
.produk-heading{max-width:640px;margin:0 auto 36px;text-align:center;}
.produk-label{
  display:block;
  color:var(--accent);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:6px;
}
.produk-heading h2{
  font-size:30px;
  font-weight:800;
  line-height:1.25;
  color:var(--heading);
  letter-spacing:-.3px;
}
.produk-heading p{
  font-size:15px;
  line-height:1.6;
  color:var(--muted);
  margin-top:12px;
}

.produk-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.produk-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
}
.produk-card.reveal{
  transition:opacity .6s ease, transform .5s ease, box-shadow .3s ease;
}
.produk-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}
.produk-image{
  aspect-ratio:16/9;
  overflow:hidden;
  background:var(--bg-alt);
  display:flex;
  align-items:center;
  justify-content:center;
}
.produk-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:18px;
  opacity:0;
  transform:scale(1.08);
  transition:opacity .6s ease, transform .6s ease;
}
.produk-card.is-visible .produk-image img{opacity:1;transform:scale(1);}
.produk-card:hover .produk-image img{transform:scale(1.06);}
.produk-content{padding:22px 24px 26px;}
.produk-content p:first-child,
.produk-content h2{
  font-size:18px;
  font-weight:700;
  color:var(--heading);
  margin-bottom:10px;
  letter-spacing:-.1px;
}
.produk-desc{
  font-size:14px;
  line-height:1.65;
  color:var(--muted);
  margin-bottom:20px;
}
.produk-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 18px;
  border:1px solid var(--primary);
  border-radius:var(--radius-sm);
  color:var(--primary);
  font-size:14px;
  font-weight:600;
  transition:background-color .2s ease, color .2s ease;
}
.produk-link:hover{background:var(--primary);color:var(--white);}

/* ---------- Artikel Terbaru ---------- */
.artikel-terbaru{padding:70px 0;}
.artikel-heading{max-width:640px;margin:0 auto 40px;text-align:center;}
.artikel-heading h2{
  font-size:30px;
  font-weight:800;
  line-height:1.25;
  color:var(--heading);
  letter-spacing:-.3px;
}
.artikel-heading p{
  font-size:15px;
  line-height:1.6;
  color:var(--muted);
  margin-top:12px;
}

.artikel-meta{display:flex;align-items:center;gap:10px;margin-bottom:12px;}
.artikel-category{
  display:inline-block;
  background:var(--icon-bg);
  color:var(--primary);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.6px;
  padding:4px 12px;
  border-radius:var(--radius-pill);
}
.artikel-date{
  position:relative;
  padding-left:14px;
  font-size:13px;
  color:var(--muted);
}
.artikel-date::before{
  content:'';
  position:absolute;
  left:0;
  top:50%;
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--muted);
  transform:translateY(-50%);
}
.artikel-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--primary);
  font-size:14px;
  font-weight:600;
  transition:gap .2s ease;
}
.artikel-link:hover{gap:10px;}

.artikel-featured{
  display:flex;
  align-items:stretch;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  margin-bottom:24px;
}
.artikel-featured-image{
  display:block;
  flex:0 0 48%;
  min-height:380px;
  overflow:hidden;
  background:var(--bg-alt);
}
.artikel-featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.artikel-featured:hover .artikel-featured-image img{transform:scale(1.04);}
.artikel-featured-content{
  flex:1;
  min-width:0;
  padding:40px 44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.artikel-featured-content .artikel-title{
  font-size:24px;
  font-weight:700;
  color:var(--heading);
  letter-spacing:-.2px;
  margin-bottom:12px;
}
.artikel-featured-content .artikel-title a{transition:color .2s ease;}
.artikel-featured-content .artikel-title a:hover{color:var(--primary);}
.artikel-featured-content .artikel-desc{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  margin-bottom:20px;
}

.artikel-thumbs{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.artikel-thumb{
  display:flex;
  align-items:stretch;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  transition:box-shadow .3s ease, transform .3s ease;
}
.artikel-thumb:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);}
.artikel-thumb-image{
  flex:0 0 42%;
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--bg-alt);
}
.artikel-thumb-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.artikel-thumb:hover .artikel-thumb-image img{transform:scale(1.06);}
.artikel-thumb-content{
  flex:1;
  min-width:0;
  padding:22px 24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.artikel-thumb-content .artikel-meta{margin-bottom:10px;}
.artikel-thumb-content .artikel-title{
  font-size:16px;
  font-weight:700;
  color:var(--heading);
  letter-spacing:-.1px;
  margin-bottom:8px;
}
.artikel-thumb-content .artikel-title a{transition:color .2s ease;}
.artikel-thumb-content .artikel-title a:hover{color:var(--primary);}
.artikel-thumb-content .artikel-desc{
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
  margin-bottom:14px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.artikel-cta{text-align:center;margin-top:40px;}

/* ---------- FAQ ---------- */
.faq{padding:80px 0;}
.faq-heading{max-width:640px;margin:0 auto 40px;text-align:center;}
.faq-label{
  display:block;
  color:var(--accent);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:6px;
}
.faq-heading h2{
  font-size:30px;
  font-weight:800;
  line-height:1.25;
  color:var(--heading);
  letter-spacing:-.3px;
}
.faq-heading p{
  font-size:15px;
  line-height:1.6;
  color:var(--muted);
  margin-top:12px;
}

.faq-list{
  max-width:820px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  transition:box-shadow .3s ease, border-color .3s ease;
}
.faq-item.is-open{border-color:var(--primary);box-shadow:var(--shadow-md);}
.faq-question{
  display:flex;
  align-items:center;
  gap:16px;
  width:100%;
  padding:20px 24px;
  background:none;
  border:none;
  text-align:left;
  cursor:pointer;
  font-family:var(--font);
}
.faq-number{
  flex:none;
  font-family:var(--font-heading);
  font-size:15px;
  font-weight:800;
  color:var(--primary);
}
.faq-question-text{
  flex:1;
  font-family:inherit;
  font-size:16px;
  font-weight:600;
  color:var(--heading);
  line-height:1.5;
}
.faq-icon{
  flex:none;
  position:relative;
  width:22px;
  height:22px;
}
.faq-icon::before,
.faq-icon::after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  background:var(--primary);
  transform:translate(-50%,-50%);
  transition:transform .25s ease;
}
.faq-icon::before{width:14px;height:2px;}
.faq-icon::after{width:2px;height:14px;}
.faq-item.is-open .faq-icon::after{transform:translate(-50%,-50%) rotate(90deg) scale(0);}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-answer-inner{
  padding:0 24px 22px 62px;
}
.faq-answer-inner p{
  font-size:14px;
  line-height:1.75;
  color:var(--muted);
}

/* ---------- Alasan Memilih CMI ---------- */
.alasan{padding:80px 0;}
.alasan-grid{
  display:grid;
  grid-template-columns:minmax(260px,38%) 1fr;
  gap:90px;
}
.alasan-intro{text-align:left;}
.alasan-label{
  display:block;
  color:var(--accent);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:18px;
}
.alasan-intro h2{
  font-size:34px;
  font-weight:800;
  line-height:1.25;
  color:var(--heading);
  letter-spacing:-.3px;
  margin-bottom:20px;
}
.alasan-intro p{
  font-size:15px;
  line-height:1.75;
  color:var(--muted);
  max-width:400px;
}

.alasan-timeline{position:relative;}
.alasan-timeline::before{
  content:"";
  position:absolute;
  left:27px;
  top:27px;
  bottom:27px;
  width:2px;
  background:rgba(20,121,209,.2);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .9s ease;
}
.alasan-timeline.is-visible::before{transform:scaleY(1);}

.timeline-step{
  position:relative;
  display:grid;
  grid-template-columns:56px 1fr;
  gap:24px;
  padding-bottom:44px;
}
.timeline-step:last-child{padding-bottom:0;}
.timeline-marker{
  position:relative;
  z-index:2;
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--white);
  border:2px solid var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:800;
  color:var(--primary);
  transition:background-color .3s ease, color .3s ease, border-color .3s ease;
}
.timeline-content p:first-of-type{
  font-size:18px;
  font-weight:700;
  color:var(--heading);
  margin-bottom:8px;
  padding-top:12px;
  transition:color .3s ease;
}
.timeline-content p:last-of-type{
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
  max-width:480px;
}
.timeline-step:hover .timeline-marker{
  background:var(--primary);
  color:var(--white);
}
.timeline-step:hover .timeline-content p:first-of-type{color:var(--primary);}

/* ---------- CTA ---------- */
.cta{
  position:relative;
  background:var(--primary-dark);
  padding:110px 0;
  overflow:hidden;
}
.cta-decor{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.cta-decor::before,
.cta-decor::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle, rgba(20,121,209,.35) 0%, rgba(20,121,209,0) 70%);
}
.cta-decor::before{
  width:520px;
  height:520px;
  top:-220px;
  left:-160px;
}
.cta-decor::after{
  width:420px;
  height:420px;
  bottom:-200px;
  right:-140px;
  background:radial-gradient(circle, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 70%);
}
.cta-container{
  position:relative;
  z-index:1;
  max-width:680px;
  margin-inline:auto;
  text-align:center;
}
.cta-label{
  display:block;
  color:#8fb8e6;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:20px;
}
.cta-container h2{
  font-size:42px;
  font-weight:800;
  line-height:1.2;
  color:var(--white);
  letter-spacing:-.5px;
  margin-bottom:20px;
}
.cta-container p{
  font-size:16px;
  line-height:1.75;
  color:#c7d3e2;
  margin-bottom:40px;
}
.btn-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--white);
  color:var(--primary-dark);
  border:none;
  font-family:inherit;
  font-size:15px;
  font-weight:700;
  padding:16px 32px;
  border-radius:var(--radius-sm);
  cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}
/* Higher specificity than .reveal so entrance fade-up + hover transitions combine instead of clobbering */
.btn-cta.reveal{
  /* Delay lives only on opacity so the entrance stagger doesn't also lag the hover lift/shadow (which reuse transform/background-color). */
  transition:opacity .6s ease .45s, transform .3s ease, background-color .3s ease, box-shadow .3s ease;
}
.btn-cta:hover{
  background:#eef3f9;
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--white);
  color:var(--muted);
  padding-top:70px;
  border-top:1px solid var(--border);
}
.footer-top{
  display:grid;
  grid-template-columns:1.3fr 1fr 1.3fr;
  gap:60px;
  padding-bottom:50px;
}
.footer-logo{
  width:150px;
  height:150px;
  object-fit:contain;
  margin-bottom:18px;
}
.footer-brand p{
  font-size:14px;
  line-height:1.75;
  color:var(--muted);
  max-width:340px;
}
.footer-links h4,
.footer-contact h4{
  font-size:14px;
  font-weight:600;
  color:var(--heading);
  margin-bottom:16px;
  letter-spacing:.2px;
}
.footer-links ul li{margin-bottom:12px;}
.footer-links a{
  font-size:13.5px;
  color:var(--muted);
  transition:color .3s ease;
}
.footer-links a:hover{color:var(--primary);}
.footer-contact p{
  font-size:13.5px;
  line-height:1.75;
  color:var(--muted);
  margin-bottom:14px;
  max-width:300px;
}
.footer-bottom{
  border-top:.8px solid var(--border);
  padding:18px 0;
}
.footer-bottom .container{
  font-size:13px;
  color:var(--muted);
  text-align:left;
}

/* ---------- Product detail hero (e.g. smartboardzelt.html) ---------- */
.product-hero{
  position:relative;
  overflow:hidden;
  color:var(--white);
  padding:70px 0;
  min-height:min(75vh, 640px);
  display:flex;
  align-items:center;
}
.product-hero-bg-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:55% 42%;
  z-index:0;
}
.product-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(11,31,58,.95) 0%,rgba(11,31,58,.75) 25%,rgba(11,31,58,.4) 50%,rgba(11,31,58,.08) 75%,rgba(11,31,58,0) 100%);
  z-index:1;
}
.product-hero .container{position:relative;z-index:2;}
.product-hero-content{max-width:600px;}
.product-hero-content h1{
  font-size:42px;
  font-weight:800;
  line-height:1.15;
  color:var(--white);
  margin-bottom:20px;
}

/* ---------- Series heading (e.g. smartboardzelt.html Pro/Lite/Accessories) ---------- */
.series-heading{
  display:flex;
  align-items:flex-start;
  gap:12px;
  text-align:left;
  margin:0 0 32px;
}
.series-heading-bar{
  flex:none;
  width:4px;
  height:24px;
  margin-top:4px;
  background:var(--primary);
  border-radius:2px;
}
.series-heading h2{
  font-size:22px;
  font-weight:800;
  color:var(--heading);
  letter-spacing:-.2px;
  margin-bottom:6px;
}
.series-heading p{
  font-size:14px;
  line-height:1.5;
  color:var(--muted);
}

/* ---------- Product category tabs (e.g. smartboardzelt.html) ---------- */
.category-tabs-bar{
  background:rgba(255,255,255,.95);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  padding:48px 0 32px;
}
.category-tabs-label{
  display:block;
  text-align:center;
  color:var(--accent);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin-bottom:10px;
}
.category-tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}
.category-tab{
  display:inline-flex;
  align-items:center;
  padding:10px 24px;
  border:1px solid var(--primary);
  border-radius:var(--radius-pill);
  color:var(--primary);
  font-size:14px;
  font-weight:600;
  transition:background-color .2s ease, color .2s ease;
}
.category-tab:hover,
.category-tab.is-active{background:var(--primary);color:var(--white);}
#pro-series,
#lite-series,
#accessories{scroll-margin-top:100px;}

/* ---------- Kontak Kami page ---------- */
.page-hero{padding:64px 0 48px;text-align:center;background:var(--bg-alt);}
.page-hero h1{
  font-size:38px;
  font-weight:800;
  line-height:1.2;
  color:var(--heading);
  letter-spacing:-.4px;
  margin-bottom:14px;
}
.page-hero p{
  font-size:16px;
  line-height:1.6;
  color:var(--muted);
  max-width:600px;
  margin:0 auto;
}

.kontak-section{padding:70px 0;}
.kontak-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}
.kontak-info{display:flex;flex-direction:column;gap:20px;}
.kontak-card{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:24px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
}
.kontak-icon{
  flex:none;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  background:var(--icon-bg);
  color:var(--primary-dark);
}
.kontak-card-text p:first-of-type{
  font-size:16px;
  font-weight:700;
  color:var(--heading);
  margin-bottom:6px;
}
.kontak-card-text p:last-of-type{font-size:14.5px;line-height:1.6;color:var(--muted);}
.kontak-card-text a{color:var(--primary);font-weight:600;transition:color .2s ease;}
.kontak-card-text a:hover{color:var(--accent);}
.kontak-whatsapp-btn{align-self:flex-start;margin-top:4px;}
.kontak-map{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  aspect-ratio:4/3;
}
.kontak-map iframe{width:100%;height:100%;border:0;display:block;}

/* ---------- Article Detail ---------- */
.breadcrumb{padding:18px 0;border-bottom:1px solid var(--border);}
.breadcrumb .container{display:flex;align-items:center;flex-wrap:wrap;gap:8px;font-size:13.5px;}
.breadcrumb a{color:var(--muted);transition:color .2s ease;}
.breadcrumb a:hover{color:var(--primary);}
.breadcrumb span[aria-hidden]{color:var(--border);}
.breadcrumb span[aria-current]{color:var(--heading);font-weight:600;}

.article-hero{padding:44px 0 32px;}
.article-hero .artikel-meta{margin-bottom:18px;}
.article-title{
  font-size:36px;
  font-weight:800;
  line-height:1.25;
  color:var(--heading);
  letter-spacing:-.3px;
  max-width:820px;
  margin-bottom:16px;
}
.article-excerpt{
  font-size:17px;
  line-height:1.6;
  color:var(--muted);
  max-width:720px;
}
.article-featured-image{
  aspect-ratio:16/8;
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:var(--bg-alt);
  margin-bottom:48px;
}
.article-featured-image img{width:100%;height:100%;object-fit:cover;display:block;}

.article-layout{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:56px;
  align-items:start;
  padding-bottom:80px;
}
.article-main{min-width:0;}

/* Article prose */
.article-content{
  font-size:16.5px;
  line-height:1.85;
  color:var(--text);
  max-width:720px;
}
.article-content > p{margin-bottom:22px;}
.article-content h2{
  font-size:26px;
  font-weight:800;
  color:var(--heading);
  letter-spacing:-.2px;
  margin:44px 0 18px;
  scroll-margin-top:100px;
}
.article-content h3{
  font-size:20px;
  font-weight:700;
  color:var(--heading);
  margin:32px 0 14px;
  scroll-margin-top:100px;
}
.article-content ul,
.article-content ol{margin:0 0 22px;padding-left:22px;}
.article-content li{margin-bottom:10px;}
.article-content li:last-child{margin-bottom:0;}
.article-content a{color:var(--primary);font-weight:600;text-decoration:underline;text-underline-offset:2px;}
.article-content a:hover{color:var(--accent);}
.article-content strong{color:var(--heading);font-weight:700;}
.article-content blockquote{
  margin:0 0 26px;
  padding:20px 24px;
  border-left:3px solid var(--primary);
  background:var(--bg-alt);
  border-radius:0 var(--radius-md) var(--radius-md) 0;
  font-size:17px;
  font-style:italic;
  color:var(--heading);
}
.article-content .table-wrap{overflow-x:auto;margin-bottom:26px;}
.article-content table{
  width:100%;
  min-width:480px;
  border-collapse:collapse;
  font-size:14.5px;
}
.article-content th,
.article-content td{
  padding:12px 16px;
  border:1px solid var(--border);
  text-align:left;
  white-space:nowrap;
}
.article-content th{
  background:var(--bg-alt);
  color:var(--heading);
  font-weight:700;
}
.article-content figure{margin:0 0 26px;}
.article-content figure img{width:100%;border-radius:var(--radius-md);display:block;}
.article-content figcaption{
  margin-top:10px;
  font-size:13.5px;
  color:var(--muted);
  text-align:center;
}

.article-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  margin-top:48px;
  padding:28px 32px;
  background:var(--primary-dark);
  border-radius:var(--radius-lg);
  max-width:720px;
}
.article-cta-title{font-size:18px;font-weight:700;color:var(--white);margin-bottom:6px;}
.article-cta-desc{font-size:14px;line-height:1.6;color:#c9d7e8;max-width:420px;}

/* Table of contents */
.article-sidebar{position:relative;}
.article-toc{
  position:sticky;
  top:110px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  padding:24px;
}
.article-toc-title{
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:var(--heading);
  margin-bottom:16px;
}
.article-toc-list{list-style:none;margin:0;padding:0;counter-reset:toc;}
.article-toc-list li{counter-increment:toc;margin-bottom:4px;}
.article-toc-list a{
  display:flex;
  gap:10px;
  padding:8px 10px;
  border-radius:var(--radius-sm);
  font-size:13.5px;
  line-height:1.4;
  color:var(--muted);
  transition:color .2s ease, background-color .2s ease;
}
.article-toc-list a::before{
  content:counter(toc, decimal-leading-zero);
  flex:none;
  font-size:12px;
  font-weight:700;
  color:var(--primary);
}
.article-toc-list a:hover,
.article-toc-list a.is-active{background:var(--icon-bg);color:var(--heading);}
.article-toc-list .article-toc-sub{margin-left:16px;margin-top:4px;list-style:none;padding:0;counter-reset:none;}
.article-toc-list .article-toc-sub li{counter-increment:none;}
.article-toc-list .article-toc-sub a::before{content:'-';}

/* Related articles */
.article-related{padding:70px 0;background:var(--bg-alt);}
.article-related-heading{
  font-size:28px;
  font-weight:800;
  color:var(--heading);
  letter-spacing:-.2px;
  text-align:center;
  margin-bottom:36px;
}
.article-related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.article-related-card{
  display:flex;
  flex-direction:column;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  transition:box-shadow .3s ease, transform .3s ease;
}
.article-related-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.article-related-image{display:block;aspect-ratio:16/10;overflow:hidden;background:var(--white);}
.article-related-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.article-related-card:hover .article-related-image img{transform:scale(1.06);}
.article-related-content{padding:22px 24px 26px;}
.article-related-title{margin-bottom:8px;}
.article-related-title a{
  font-size:17px;
  font-weight:700;
  color:var(--heading);
  letter-spacing:-.1px;
  transition:color .2s ease;
}
.article-related-title a:hover{color:var(--primary);}
.article-related-excerpt{
  font-size:13.5px;
  line-height:1.6;
  color:var(--muted);
  margin-bottom:16px;
}

/* Scroll reveal animation */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{opacity:1;transform:translateY(0);}
.site-footer .reveal{transform:translateY(18px);}
.site-footer .reveal.is-visible{transform:translateY(0);}
/* Target the CTA text elements explicitly (not ".cta .reveal") so this doesn't clobber
   .btn-cta.reveal's own fine-tuned transition (which keeps hover instant, see above). */
.cta-label.reveal,
.cta-container h2.reveal,
.cta-container p.reveal{transform:translateY(20px);}
.cta-label.reveal.is-visible,
.cta-container h2.reveal.is-visible,
.cta-container p.reveal.is-visible{transform:translateY(0);}
.hero-content h1.reveal{transition-delay:0ms;}
.hero-content .hero-desc.reveal{transition-delay:150ms;}
.hero-buttons .reveal:nth-child(1){transition-delay:300ms;}
.hero-buttons .reveal:nth-child(2){transition-delay:380ms;}
.footer-brand.reveal{transition-delay:0ms;}
.footer-links.reveal{transition-delay:130ms;}
.footer-contact.reveal{transition-delay:260ms;}
.footer-bottom.reveal{transition-delay:390ms;}
.tantangan-list .reveal:nth-child(1){transition-delay:0ms;}
.tantangan-list .reveal:nth-child(2){transition-delay:120ms;}
.tantangan-list .reveal:nth-child(3){transition-delay:240ms;}
.tantangan-list .reveal:nth-child(4){transition-delay:360ms;}
.solusi-grid .reveal:nth-child(1){transition-delay:0ms;}
.solusi-grid .reveal:nth-child(2){transition-delay:120ms;}
.solusi-grid .reveal:nth-child(3){transition-delay:240ms;}
.solusi-grid .reveal:nth-child(4){transition-delay:360ms;}
.produk-heading h2.reveal{transition-delay:150ms;}
.produk-heading p.reveal{transition-delay:280ms;}
.series-heading h2.reveal{transition-delay:150ms;}
.series-heading p.reveal{transition-delay:280ms;}
.produk-grid .reveal:nth-child(1){transition-delay:0ms;}
.produk-grid .reveal:nth-child(2){transition-delay:180ms;}
.produk-grid .reveal:nth-child(3){transition-delay:360ms;}
.produk-grid .reveal:nth-child(4){transition-delay:0ms;}
.produk-grid .reveal:nth-child(5){transition-delay:180ms;}
.produk-grid .reveal:nth-child(6){transition-delay:360ms;}

.artikel-heading h2.reveal{transition-delay:150ms;}
.artikel-heading p.reveal{transition-delay:280ms;}
.artikel-thumbs .reveal:nth-child(1){transition-delay:120ms;}
.artikel-thumbs .reveal:nth-child(2){transition-delay:240ms;}

.faq-heading h2.reveal{transition-delay:150ms;}
.faq-heading p.reveal{transition-delay:280ms;}
.faq-list .reveal:nth-child(1){transition-delay:0ms;}
.faq-list .reveal:nth-child(2){transition-delay:80ms;}
.faq-list .reveal:nth-child(3){transition-delay:160ms;}
.faq-list .reveal:nth-child(4){transition-delay:240ms;}
.faq-list .reveal:nth-child(5){transition-delay:320ms;}
.faq-list .reveal:nth-child(6){transition-delay:400ms;}
.faq-list .reveal:nth-child(7){transition-delay:480ms;}

.alasan-intro .alasan-label.reveal{transition-delay:0ms;}
.alasan-intro h2.reveal{transition-delay:120ms;}
.alasan-intro p.reveal{transition-delay:240ms;}
/* The timeline wrapper itself only needs to toggle .is-visible for the connecting line;
   its own fade/translate is neutralized so it doesn't double-animate on top of each step. */
.alasan-timeline.reveal{opacity:1;transform:none;transition:none;}
.alasan-timeline .timeline-step:nth-child(1){transition-delay:0ms;}
.alasan-timeline .timeline-step:nth-child(2){transition-delay:180ms;}
.alasan-timeline .timeline-step:nth-child(3){transition-delay:360ms;}
.alasan-timeline .timeline-step:nth-child(4){transition-delay:540ms;}

.cta-label.reveal{transition-delay:0ms;}
.cta-container h2.reveal{transition-delay:150ms;}
.cta-container p.reveal{transition-delay:300ms;}

@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none;}
  .solusi-card,.solusi-image img,.solusi-number{transition:none;}
  .produk-card,.produk-image img{transition:none;}
  .produk-image img{opacity:1;transform:none;}
  .artikel-featured,.artikel-thumb,.artikel-featured-image img,.artikel-thumb-image img{transition:none;}
  .faq-item,.faq-answer,.faq-icon::before,.faq-icon::after{transition:none;}
  .alasan-timeline::before{transform:scaleY(1);transition:none;}
  .timeline-marker,.timeline-content p:first-of-type{transition:none;}
  .btn-cta{transition:none;}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:991px){
  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--white);
    border-bottom:1px solid var(--border);
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    display:none;
  }
  .main-nav.is-open{display:block;}
  .main-nav ul{flex-direction:column;align-items:stretch;gap:0;padding:8px 20px 16px;}
  .main-nav a{padding:12px 8px;}
  .site-header{position:relative;}
  .nav-toggle{display:flex;}
  .header-actions .btn-header{display:none;}
  .main-nav a.btn-header--mobile{
    display:flex;
    margin:4px 20px 16px;
  }

  /* Produk dropdown becomes an inline accordion inside the mobile menu */
  .has-dropdown{position:static;}
  .nav-dropdown-toggle{width:100%;justify-content:space-between;padding:12px 8px;}
  .nav-dropdown{
    position:static;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    width:100%;
    background:var(--bg-alt);
    border:none;
    box-shadow:none;
    border-radius:8px;
    padding:4px;
    margin:2px 0 6px;
  }
  .has-dropdown.is-open .nav-dropdown{display:block;}
  .nav-dropdown a{padding:10px 16px;font-size:13.5px;}

  .hero{min-height:auto;padding-block:50px;}
  .hero-media{left:0;}
  .hero::before{background:linear-gradient(180deg,rgba(11,31,58,.93) 0%,rgba(11,31,58,.88) 100%);}
  .hero-content h1{font-size:32px;}
  .benefits-box{flex-direction:column;margin-top:-32px;}
  .benefit-item{border-left:none;border-top:1px solid var(--border);padding:16px 4px;}
  .benefit-item:first-child{border-top:none;}

  .tantangan{padding:60px 0;}
  .tantangan-grid{grid-template-columns:1fr;gap:48px;}
  .tantangan-intro{max-width:none;}
  .tantangan-intro h2{font-size:30px;}

  .solusi{padding:60px 0;}
  .solusi-heading h2{font-size:26px;}
  .solusi-grid{grid-template-columns:repeat(2,1fr);gap:22px;}

  .produk{padding:56px 0;}
  .produk-heading h2{font-size:26px;}
  .produk-grid{grid-template-columns:repeat(2,1fr);gap:20px;}
  .series-heading h2{font-size:20px;}

  .artikel-terbaru{padding:56px 0;}
  .artikel-heading h2{font-size:26px;}
  .artikel-featured-image{min-height:300px;}
  .artikel-featured-content{padding:28px 30px;}
  .artikel-featured-content .artikel-title{font-size:21px;}

  .faq{padding:56px 0;}

  .alasan{padding:60px 0;}
  .alasan-grid{grid-template-columns:minmax(220px,36%) 1fr;gap:50px;}
  .alasan-intro h2{font-size:28px;}

  .cta{padding:80px 0;}
  .cta-container h2{font-size:34px;}

  .site-footer{padding-top:56px;}
  .footer-top{grid-template-columns:1fr 1fr;gap:40px 32px;padding-bottom:40px;}
  .footer-brand{grid-column:1 / -1;}

  .page-hero{padding:48px 0 36px;}
  .page-hero h1{font-size:30px;}
  .kontak-section{padding:48px 0;}
  .kontak-grid{grid-template-columns:1fr;gap:32px;}

  .product-hero{padding:48px 0;}
  .product-hero-content h1{font-size:34px;}
  .product-hero::before{
    background:linear-gradient(90deg,rgba(11,31,58,.95) 0%,rgba(11,31,58,.85) 40%,rgba(11,31,58,.55) 65%,rgba(11,31,58,.15) 100%);
  }

  .article-title{font-size:30px;}
  .article-featured-image{aspect-ratio:16/9;margin-bottom:36px;}
  .article-layout{grid-template-columns:1fr;gap:32px;padding-bottom:56px;}
  .article-sidebar{order:-1;}
  .article-toc{position:static;}
  .article-cta{padding:24px;}
  .article-related{padding:56px 0;}
  .article-related-grid{grid-template-columns:repeat(2,1fr);gap:20px;}
}

@media (max-width:640px){
  .container{padding-inline:16px;}
  .hero-content h1{font-size:26px;}
  .hero-buttons{flex-direction:column;align-items:stretch;}
  .benefits-box{padding:20px;margin-top:-20px;}

  .tantangan{padding:44px 0;}
  .tantangan-intro h2{font-size:26px;}
  .tantangan-item{grid-template-columns:48px 1fr;gap:16px;padding:24px 0;}
  .tantangan-number{font-size:24px;}

  .solusi{padding:44px 0;}
  .solusi-heading{margin-bottom:36px;}
  .solusi-heading h2{font-size:22px;}
  .solusi-grid{grid-template-columns:1fr;gap:20px;}

  .produk{padding:40px 0;}
  .produk-heading{margin-bottom:32px;}
  .produk-heading h2{font-size:22px;}
  .produk-grid{grid-template-columns:1fr;gap:20px;}
  .series-heading{margin-bottom:24px;}
  .series-heading h2{font-size:18px;}

  .artikel-terbaru{padding:40px 0;}
  .artikel-heading{margin-bottom:28px;}
  .artikel-heading h2{font-size:22px;}
  .artikel-featured{flex-direction:column;}
  .artikel-featured-image{flex-basis:auto;min-height:0;aspect-ratio:4/3;}
  .artikel-featured-content{padding:22px 20px 26px;}
  .artikel-featured-content .artikel-title{font-size:19px;}
  .artikel-thumbs{grid-template-columns:1fr;gap:16px;}
  .artikel-thumb-content{padding:16px 18px;}
  .artikel-thumb-content .artikel-desc{-webkit-line-clamp:2;}

  .faq{padding:40px 0;}
  .faq-heading{margin-bottom:28px;}
  .faq-heading h2{font-size:22px;}
  .faq-question{padding:16px 16px;gap:12px;}
  .faq-question-text{font-size:15px;}
  .faq-answer-inner{padding:0 16px 18px 44px;}

  .alasan{padding:44px 0;}
  .alasan-grid{grid-template-columns:1fr;gap:40px;}
  .alasan-intro h2{font-size:26px;}
  .alasan-intro p{max-width:none;}
  .timeline-step{grid-template-columns:44px 1fr;gap:16px;padding-bottom:32px;}
  .timeline-marker{width:44px;height:44px;font-size:14px;}
  .alasan-timeline::before{left:21px;}
  .timeline-content p:last-of-type{max-width:none;}

  .cta{padding:60px 0;}
  .cta-container h2{font-size:26px;}
  .cta-container p{font-size:15px;margin-bottom:32px;}
  .btn-cta{width:100%;justify-content:center;padding:15px 24px;}

  .site-footer{padding-top:44px;}
  .footer-top{grid-template-columns:1fr;gap:32px;padding-bottom:32px;}
  .footer-brand{grid-column:auto;}
  .footer-brand p,.footer-contact p{max-width:none;}

  .page-hero{padding:40px 0 32px;}
  .page-hero h1{font-size:26px;}
  .kontak-section{padding:40px 0;}
  .kontak-card{padding:18px;gap:12px;}
  .kontak-whatsapp-btn{width:100%;justify-content:center;}

  .product-hero{padding:40px 0;}
  .product-hero-content h1{font-size:28px;}
  .product-hero::before{
    background:linear-gradient(180deg, rgba(11,31,58,.9) 0%, rgba(11,31,58,.88) 60%, rgba(11,31,58,.7) 100%);
  }

  .category-tabs-bar{padding:32px 0 18px;}
  .category-tabs-label{font-size:10px;margin-bottom:8px;}
  .category-tabs{
    flex-wrap:nowrap;
    justify-content:flex-start;
    overflow-x:auto;
    gap:10px;
    margin:0 -16px;
    padding:0 16px 4px;
    scrollbar-width:none;
  }
  .category-tabs::-webkit-scrollbar{display:none;}
  .category-tab{flex:none;padding:9px 18px;font-size:13px;white-space:nowrap;}

  .breadcrumb{padding:14px 0;}
  .article-hero{padding:32px 0 24px;}
  .article-title{font-size:24px;}
  .article-excerpt{font-size:15.5px;}
  .article-featured-image{aspect-ratio:4/3;margin-bottom:28px;}
  .article-layout{padding-bottom:44px;}
  .article-content{font-size:15.5px;}
  .article-content h2{font-size:22px;margin:32px 0 14px;}
  .article-content h3{font-size:18px;margin:26px 0 12px;}
  .article-cta{flex-direction:column;align-items:flex-start;}
  .article-cta .btn-primary{width:100%;justify-content:center;}
  .article-related-heading{font-size:24px;}
  .article-related-grid{grid-template-columns:1fr;}
}
