/* ============================================================
   Wahana Totalita Konsultan — components.css
   Merged from style.css + additions.css + redesign26.css (T11).
   Load AFTER base.css. Source order within this file is preserved
   from the original 3-file load order (style.css → additions.css →
   redesign26.css), so rules that used to need !important to win the
   cascade now win by plain source order instead — same visual result,
   no specificity war. Selector names are unchanged from the originals.
   ============================================================ */

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: transparent;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
  border-bottom-color: #e8e8e8;
}
.navbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transition: width .6s ease;
}
.navbar.scrolled::after { width: 100%; }

.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: var(--nav-h);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 15px; flex-shrink: 0;
  transition: color .3s;
}
.navbar.scrolled .nav-logo { color: var(--green); }
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--orange);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 12px; font-weight: 800;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(240,106,37,.4);
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 16px; border-radius: 6px; font-size: 14px;
  font-weight: 500; color: rgba(255,255,255,.88);
  transition: color .2s, background .2s;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: var(--green-light); color: var(--green) !important; }

/* .navbar defaults to background:transparent + white text, designed for
   pages with a dark hero directly underneath — correct pre-scroll, before
   JS adds .scrolled at 40px (assets/js/main.js). Templates whose top
   section is light/white (pelatihan.php, pelatihan-catalog.php: no dark
   hero) opt in per-template with class="navbar on-light-hero" on
   <nav id="navbar"> — mirrors the exact same "solid" look .scrolled
   already applies, just as the starting state instead of the post-scroll
   state. :not(.scrolled) guard means real scroll-triggered elevation
   still works once the user scrolls; hover/active states are untouched. */
.navbar.on-light-hero:not(.scrolled) { background: rgba(255,255,255,.97); border-bottom-color: #e8e8e8; }
.navbar.on-light-hero:not(.scrolled) .nav-logo { color: var(--green); }
.navbar.on-light-hero:not(.scrolled) .nav-links a { color: var(--text); }
.navbar.on-light-hero:not(.scrolled) .nav-logo-text strong {
  background: linear-gradient(135deg, var(--green) 30%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.navbar.on-light-hero:not(.scrolled) .nav-hamburger span { background: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-socials { display: flex; gap: 8px; }
.nav-socials a {
  width: 30px; height: 30px; display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.7);
  transition: color .2s;
}
.navbar.scrolled .nav-socials a { color: var(--text-muted); }
.nav-socials a:hover { color: var(--orange) !important; }
.nav-socials svg { width: 16px; height: 16px; }

.btn-wa-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff;
  padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  transition: background .2s, box-shadow .2s, transform .1s;
  box-shadow: 0 2px 10px rgba(37,211,102,.3);
}
.btn-wa-nav:hover { background: #1da855; box-shadow: 0 4px 16px rgba(37,211,102,.4); transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}
.navbar.scrolled .nav-hamburger span { background: var(--text); }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; padding: 12px 16px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12); gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; padding: 10px 16px; border-radius: 8px; }
  .nav-hamburger { display: flex; }
  .nav-socials { display: none; }
}

/* ─── HERO (legacy full-viewport variant) ──────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--green-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: 38%;
  width: 1px; height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.06) 40%, transparent);
  transform: rotate(12deg);
  pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px; right: -60px; top: -120px;
  background: radial-gradient(circle, rgba(240,106,37,.18) 0%, transparent 65%);
}
.hero-orb-2 {
  width: 400px; height: 400px; left: -100px; bottom: -80px;
  background: radial-gradient(circle, rgba(11,44,70,.6) 0%, transparent 70%);
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(11,44,70,.5));
  pointer-events: none;
}
.hero-inner {
  padding: 80px 0 60px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: #4ade80;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.25);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.7); }
}
.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900; line-height: 1.1; color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero-title em {
  color: #4ade80; font-style: normal;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #4ade80, transparent);
  border-radius: 2px;
}
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75;
  margin-bottom: 30px; max-width: 480px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85); font-size: 12.5px; font-weight: 500;
  padding: 7px 15px; border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.hero-badge:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── HERO VISUAL (right column) ───────────────────────────── */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hv-ring-1 { width: 220px; height: 220px; border-color: rgba(255,255,255,.1); }
.hv-ring-2 { width: 340px; height: 340px; animation: spin-ring 30s linear infinite; }
.hv-ring-3 { width: 440px; height: 440px; animation: spin-ring 50s linear infinite reverse; border-style: dashed; }
@keyframes spin-ring {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hv-seal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, #16486E 100%);
  border: 3px solid rgba(255,255,255,.2);
  box-shadow:
    0 0 0 8px rgba(11,44,70,.4),
    0 0 40px rgba(240,106,37,.3),
    inset 0 0 30px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  animation: float-seal 4s ease-in-out infinite;
}
.hv-seal-inner { text-align: center; }
.hv-seal-num {
  font-size: 1.9rem; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -.03em;
}
.hv-seal-label {
  font-size: 0.65rem; color: rgba(255,255,255,.75);
  font-weight: 600; line-height: 1.3; margin-top: 4px;
  text-transform: uppercase; letter-spacing: .06em;
}
.hv-seal-since {
  font-size: 0.6rem; color: #4ade80;
  font-weight: 700; margin-top: 6px;
  letter-spacing: .08em; text-transform: uppercase;
}
@keyframes float-seal {
  0%,100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-10px); }
}
.hv-card {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 90px;
  text-align: center;
  z-index: 3;
  transition: transform .3s, background .3s;
}
.hv-card:hover {
  background: rgba(255,255,255,.12);
  transform: scale(1.05) !important;
}
.hv-card-icon { font-size: 1.4rem; line-height: 1; }
.hv-card-name { font-size: 0.72rem; font-weight: 700; color: #fff; }
.hv-card-count { font-size: 0.62rem; color: rgba(255,255,255,.5); }
.hv-card-1 { top: 14%;  right: 5%;   animation: float-a 3.5s ease-in-out infinite; }
.hv-card-2 { top: 14%;  left: 5%;    animation: float-b 4s   ease-in-out infinite; }
.hv-card-3 { bottom: 14%; right: 5%; animation: float-c 3.8s ease-in-out infinite; }
.hv-card-4 { bottom: 14%; left: 5%;  animation: float-d 4.2s ease-in-out infinite; }
@keyframes float-a { 0%,100% { transform: translateY(0);    } 50% { transform: translateY(-9px);  } }
@keyframes float-b { 0%,100% { transform: translateY(-5px); } 50% { transform: translateY(5px);   } }
@keyframes float-c { 0%,100% { transform: translateY(0);    } 50% { transform: translateY(-7px);  } }
@keyframes float-d { 0%,100% { transform: translateY(-3px); } 50% { transform: translateY(7px);   } }
.hv-badge {
  position: absolute;
  font-size: 0.6rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #4ade80;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.3);
  padding: 4px 10px; border-radius: 4px;
  z-index: 4;
}
.hv-badge-kemnaker { top: 42%; left: -2%; }
.hv-badge-bnsp     { bottom: 38%; right: 0%; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 40px; }
  .hero-visual { height: 300px; order: -1; }
  .hv-ring-3 { width: 280px; height: 280px; }
  .hv-ring-2 { width: 220px; height: 220px; }
  .hv-seal   { width: 120px; height: 120px; }
  .hv-seal-num { font-size: 1.4rem; }
  .hero-title { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hv-card { padding: 8px 12px; min-width: 76px; }
  .hv-card-icon { font-size: 1.1rem; }
}
@media (max-width: 540px) {
  .hero-visual { display: none; }
  .hero-title  { font-size: 2.2rem; }
  .hero-eyebrow { font-size: 10px; }
}

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--green-light);
  border-bottom: 1px solid #d0e0ea;
  padding: 20px 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 40px; text-align: center;
}
.stat-number { font-size: 22px; font-weight: 800; color: var(--green); }
.stat-label  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: #b8cfe0; flex-shrink: 0; }
@media (max-width:600px) {
  .stat-divider { display: none; }
  .stat-item { padding: 8px 20px; }
}

/* ─── SECTION COMMON ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--green); margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ─── SERVICES SECTION ──────────────────────────────────────── */
.section-services { padding: 80px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  display: flex; flex-direction: column;
  padding: 28px; border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent, var(--green));
}
.service-card:hover {
  border-color: var(--accent, var(--green));
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card-icon { font-size: 32px; margin-bottom: 14px; }
.service-card-title { font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.service-card-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.service-card-count {
  font-size: 12px; font-weight: 700; color: var(--accent, var(--green));
  background: var(--green-light); padding: 4px 10px;
  border-radius: 20px; display: inline-block; margin-bottom: 12px;
}
.service-card-arrow {
  font-size: 20px; color: var(--accent, var(--green));
  transition: transform .2s;
}
.service-card:hover .service-card-arrow { transform: translateX(5px); }

/* ─── CATALOG SECTION ───────────────────────────────────────── */
.section-catalog { padding: 80px 0; background: #f6f9fc; }
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  margin-bottom: 32px; padding: 16px 20px;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.filter-group { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-btn, .filter-mode {
  padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--border); background: #fff; color: var(--text-muted);
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-mode:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active, .filter-mode.active {
  background: var(--green); color: #fff; border-color: var(--green);
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.training-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
}
.training-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.training-card[data-hidden="true"] { display: none; }
.training-card-img-wrap {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16/10; background: var(--green-light);
}
.training-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.training-card:hover .training-card-img-wrap img { transform: scale(1.04); }
.training-card-cat-badge {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(11,44,70,.85); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 5px;
  backdrop-filter: blur(4px);
}
.training-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.training-card-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.badge-mode {
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 4px;
  background: var(--green-light); color: var(--green);
}
.badge-cert {
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px;
  background: #E8F0F7; color: #103A5C;
  border: 1.5px solid #b8cfe0;
}
.training-card-title {
  font-size: 15px; font-weight: 700; color: var(--text);
  line-height: 1.4; margin-bottom: 12px; flex: 1;
}
.training-card-title a:hover { color: var(--green); }
.training-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.training-price {
  font-size: 16px; font-weight: 800; color: var(--green);
}
.training-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.btn-wa-card {
  display: inline-flex; align-items: center; gap: 4px;
  background: #25D366; color: #fff;
  padding: 7px 13px; border-radius: 6px;
  font-size: 12px; font-weight: 700;
  transition: background .2s;
  white-space: nowrap;
}
.btn-wa-card:hover { background: #1da855; }
.filter-empty {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted); font-size: 15px;
}

/* ─── ABOUT SECTION ─────────────────────────────────────────── */
.section-about { padding: 80px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
@media (max-width:768px) { .about-inner { grid-template-columns: 1fr; } }
.about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; max-width: 580px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.about-badge {
  display: flex; flex-direction: column;
  background: var(--green-light); padding: 14px 20px;
  border-radius: 10px; border-left: 3px solid var(--green);
}
.about-badge strong { font-size: 15px; color: var(--green); }
.about-badge span { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.about-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--green-dark); color: #B9CBDB; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 22px; padding-bottom: 40px; }
@media (max-width:900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width:540px) { .footer-inner { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand p { font-size: 14px; color: #9DB8CE; margin: 10px 0 18px; line-height: 1.6; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 15px; margin-bottom: 6px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 7px;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; color: #9DB8CE; transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--orange); color: #fff; }
.footer-socials svg { width: 16px; height: 16px; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: #9DB8CE; transition: color .2s; }
.footer ul li a:hover { color: #fff; }
.footer ul li { font-size: 14px; color: #9DB8CE; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
}
.footer-bottom p { font-size: 13px; color: #6B87A0; text-align: center; }

/* ─── FLOATING WA BUTTON ────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb-bar {
  margin-top: var(--nav-h); background: var(--green-light);
  padding: 12px 0; border-bottom: 1px solid #d0e0ea;
}
.breadcrumb-list {
  display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb-list a { color: var(--green); }
.breadcrumb-list a:hover { text-decoration: underline; }

/* ─── DETAIL PAGE ───────────────────────────────────────────── */
.detail-hero { padding: 40px 0; background: #fff; }
.detail-hero-inner {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}
@media (max-width:900px) { .detail-hero-inner { grid-template-columns: 1fr; } }
.detail-hero-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.detail-cat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 5px; font-size: 13px; font-weight: 600;
}
.detail-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--green); margin-bottom: 14px; line-height: 1.25; }
.detail-subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.detail-info-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-info-chips span {
  font-size: 13px; font-weight: 500; padding: 6px 12px;
  border-radius: 20px; border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.detail-sidebar-sticky { position: sticky; top: calc(var(--nav-h) + 16px); }
.detail-price-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.detail-img { width: 100%; height: 160px; object-fit: cover; }
.detail-price-body { padding: 16px; }
.detail-price-label { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: 4px; }
.detail-price { font-size: 26px; font-weight: 800; color: var(--green); }
.detail-price-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.btn-wa-detail {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #25D366; color: #fff;
  padding: 13px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 700; margin-bottom: 8px;
  transition: background .2s;
}
.btn-wa-detail:hover { background: #1da855; }

/* ─── DETAIL BODY ───────────────────────────────────────────── */
.detail-body { padding: 48px 0 64px; background: #f6f9fc; }
.detail-body-inner { max-width: 780px; }
.detail-section { margin-bottom: 40px; }
.detail-section h2 {
  font-size: 20px; font-weight: 700; color: var(--green);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
}
.detail-desc { font-size: 16px; color: var(--text); line-height: 1.8; white-space: pre-line; }
.curriculum-list { display: flex; flex-direction: column; gap: 8px; }
.curriculum-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text); padding: 10px 14px;
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.curriculum-list li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.detail-info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.detail-info-table th, .detail-info-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left;
}
.detail-info-table th { color: var(--text-muted); width: 160px; font-weight: 500; }
.detail-info-table td { color: var(--text); font-weight: 600; }
.detail-cta-box {
  background: var(--green); color: #fff;
  padding: 32px; border-radius: var(--radius);
}
.detail-cta-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.detail-cta-box p  { font-size: 15px; opacity: .85; margin-bottom: 20px; line-height: 1.6; }

/* ─── RELATED SECTION ───────────────────────────────────────── */
.section-related { padding: 56px 0; background: #fff; }
.section-related .section-title { text-align: left; margin-bottom: 28px; font-size: 1.5rem; }

/* ─── ADMIN SHARED ──────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; background: #f5f6fa; }
.sidebar {
  width: 240px; background: var(--green-dark); flex-shrink: 0;
  display: flex; flex-direction: column; position: fixed;
  top: 0; left: 0; height: 100vh; z-index: 200;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.07);
  color: #fff; font-size: 14px; font-weight: 700;
}
.sidebar-logo .nav-logo-icon { background: var(--orange); }
.sidebar-nav { flex: 1; padding: 12px 0; overflow-y: auto; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 13.5px; color: #9DB8CE;
  transition: background .15s, color .15s; position: relative;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(255,255,255,.07); color: #fff;
}
.sidebar-nav a.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--orange); border-radius: 0 2px 2px 0;
}
.sidebar-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-footer {
  padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.07);
}
.sidebar-footer a {
  font-size: 13px; color: #9DB8CE; display: flex; align-items: center; gap: 8px;
}
.sidebar-footer a:hover { color: #fff; }
.main-area { margin-left: 240px; flex: 1; display: flex; flex-direction: column; }
.topbar {
  background: #fff; padding: 0 28px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #e8e8e8; position: sticky; top: 0; z-index: 100;
}
.topbar-title { font-size: 17px; font-weight: 700; color: var(--green); }
.topbar-user { font-size: 13px; color: var(--text-muted); }
.content { padding: 28px; flex: 1; }
.card-section {
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid #e8e8e8; padding: 22px 24px; margin-bottom: 20px;
}
.card-section h6 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-muted); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid #f0f0f0;
}
.btn-save {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff;
  padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-save:hover { background: var(--green-mid); }
.stat-card {
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid #e8e8e8; padding: 20px 22px;
}
.stat-card-num { font-size: 30px; font-weight: 800; color: var(--green); line-height: 1; }
.stat-card-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.img-preview { border-radius: 8px; border: 1px solid var(--border); }
@media (max-width: 768px) {
  .sidebar { display: none; }
  .main-area { margin-left: 0; }
}

/* ─── SOCIAL PROOF ──────────────────────────────────────────────── */
.section-social-proof {
  padding: 80px 0;
  background: var(--green-dark);
  text-align: center;
}
.section-social-proof .section-eyebrow { color: #4ade80; }
.section-social-proof .section-title   { color: #f1f5f9; margin-bottom: 12px; }
.section-social-proof .section-subtitle { color: #94a3b8; }
.sp-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin: 48px 0 56px;
}
.sp-stat { text-align: center; }
.sp-stat-num {
  display: block;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #4ade80;
  line-height: 1;
}
.sp-stat-desc {
  display: block;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 6px;
}
.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.sp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.sp-card:hover {
  border-color: rgba(74,222,128,.35);
  transform: translateY(-3px);
}
.sp-card-program {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(11,44,70,.8);
  color: #4ade80;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sp-card-quote {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.sp-card-quote::before { content: '\201C'; color: #4ade80; font-size: 1.4em; line-height: 0; vertical-align: -0.3em; }
.sp-card-quote::after  { content: '\201D'; color: #4ade80; font-size: 1.4em; line-height: 0; vertical-align: -0.3em; }
.sp-card-footer { display: flex; align-items: center; gap: 12px; }
.sp-card-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.sp-card-name { font-weight: 700; font-size: 0.88rem; color: #f1f5f9; }
.sp-card-meta { font-size: 0.76rem; color: #64748b; margin-top: 1px; }
@media (max-width: 640px) {
  .sp-stats { gap: 32px; }
  .section-social-proof { padding: 56px 0; }
}

/* ─── COOKIE / PRIVACY NOTICE (UU PDP No. 27/2022) ─────────────── */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--green-dark);
  border-top: 2px solid var(--green);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #cbd5e1;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  transition: transform .3s ease;
}
#cookie-notice.hidden { transform: translateY(110%); }
#cookie-notice p { flex: 1; min-width: 260px; margin: 0; line-height: 1.55; }
#cookie-notice strong { color: #f1f5f9; }
.cookie-btn {
  flex-shrink: 0;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
  font-family: inherit;
  transition: background .15s;
  white-space: nowrap;
}
.cookie-btn:hover { background: var(--orange-dark); }
@media (max-width: 540px) {
  #cookie-notice { flex-direction: column; align-items: flex-start; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* Nav logo name — high-tech tracked */
.nav-logo-text strong {
  letter-spacing: -0.03em;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar.scrolled .nav-logo-text strong {
  background: linear-gradient(135deg, var(--green) 30%, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO SLIDESHOW ─────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  animation: hero-kb 8s ease-out forwards;
}
@keyframes hero-kb {
  0%   { transform: scale(1)    translateX(0); }
  100% { transform: scale(1.06) translateX(-1%); }
}
.hero-slide-1 { background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=85&auto=format&fit=crop'); }
.hero-slide-2 { background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=85&auto=format&fit=crop'); }
.hero-slide-3 { background-image: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1600&q=85&auto=format&fit=crop'); }
.hero-slide-4 { background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1600&q=85&auto=format&fit=crop'); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(11,44,70,.88) 0%,
    rgba(16,58,92,.72) 45%,
    rgba(16,58,92,.35) 100%
  );
}
.hero-slide-dots {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 5;
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: all .3s ease;
}
.hero-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}
.hero-inner,
.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
  animation: eyebrow-pulse 2s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.65); }
}
@media (max-width: 960px) {
  .hero-slide-dots { bottom: 16px; right: 50%; transform: translateX(50%); }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE: 2 CARDS PER ROW (Shopee-style)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .training-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; padding: 0 10px; }
  .training-card-img-wrap img { aspect-ratio: 4/3; object-fit: cover; }
  .training-card-body { padding: 10px; }
  .training-card-meta { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
  .training-card-title {
    font-size: 12px !important; line-height: 1.35 !important; margin-bottom: 8px !important;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .training-card-title a { font-size: inherit; }
  .training-card-footer { flex-direction: column; align-items: flex-start !important; gap: 6px; }
  .training-price { font-size: 13px !important; font-weight: 800; }
  .training-price small { font-size: 9px; }
  .btn-wa-card { width: 100%; text-align: center; font-size: 10px !important; padding: 7px 8px !important; border-radius: 7px; }
  .filter-bar { gap: 8px; margin-bottom: 16px; }
  .filter-btn, .filter-mode { font-size: 11px !important; padding: 6px 12px !important; }
  .section-title { font-size: 1.4rem !important; }
  .section-header { margin-bottom: 20px; }
}
@media (max-width: 380px) {
  .training-grid { gap: 8px !important; }
  .training-card-title { font-size: 11px !important; }
  .training-price { font-size: 12px !important; }
}

/* ═══════════════════════════════════════════════════════════
   FULL SHOPEE-STYLE MOBILE LAYOUT
   ═══════════════════════════════════════════════════════════ */
.nav-search-mobile {
  display: none;
  flex: 1;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 0 12px;
  height: 34px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  margin: 0 8px;
}
.nav-search-icon { display: flex; align-items: center; opacity: .7; }
.navbar.scrolled .nav-search-mobile { background: #f1f3f5; color: #9ca3af; }
.mobile-cat-scroll {
  display: none;
  background: #fff;
  padding: 10px 0 9px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 56px;
  z-index: 40;
}
.mobile-cat-inner {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 12px;
}
.mobile-cat-inner::-webkit-scrollbar { display: none; }
.mobile-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #f1f3f5;
  color: #6b7280;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all .15s;
}
.mobile-chip.active,
.mobile-chip:active { background: var(--green); color: #fff; }
.mobile-promo {
  display: none;
  margin: 10px 12px 4px;
  background: linear-gradient(135deg, var(--orange) 0%, #f59e0b 100%);
  border-radius: 14px;
  padding: 13px 14px;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.mobile-promo::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.mobile-promo-icon { font-size: 26px; flex-shrink: 0; }
.mobile-promo-text { display: flex; flex-direction: column; gap: 1px; }
.mobile-promo-text strong { font-size: 12px; color: #fff; font-weight: 800; }
.mobile-promo-text span  { font-size: 10px; color: rgba(255,255,255,.85); }
.mobile-promo-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: #fff;
  color: #103A5C;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 11px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 1;
}
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,.08);
  height: 60px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mbn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 9px;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: none;
  transition: color .15s;
}
.mbn-item.active,
.mbn-item:active { color: var(--green); }
.mbn-item svg { flex-shrink: 0; }
.mbn-wa {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
}
.mbn-wa-btn {
  background: var(--orange);
  border-radius: 14px;
  width: 48px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(240,106,37,.35);
}

@media (max-width: 768px) { body { padding-bottom: 60px; } }

/* ══════════════════════════════════════
   ALL MOBILE OVERRIDES — max 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-search-mobile    { display: flex; }
  .mobile-cat-scroll    { display: block; }
  .mobile-promo         { display: flex; }
  .mobile-bottom-nav    { display: flex; }
  .nav-links            { display: none !important; }
  .nav-socials          { display: none; }
  .btn-wa-nav           { display: none; }
  .nav-hamburger        { display: none; }
  .navbar { height: 56px; }
  :root   { --nav-h: 56px; }
  .navbar { background: var(--green) !important; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
  .navbar.scrolled { background: #fff !important; }
  .navbar.scrolled .nav-search-mobile { background: #f1f3f5; color: #9ca3af; }
  .hero-inner { padding: 40px 0 20px; }
  .hero-title { font-size: 1.8rem; }
  .section-services { display: none; }
  .section-header   { margin-bottom: 18px; }
  .section-title    { font-size: 1.3rem !important; }
  .section-eyebrow  { font-size: 10px; }
  .filter-bar { display: none; }
  .section-catalog .container { padding: 0; }
  .section-catalog .section-header { padding: 20px 16px 0; }
  .training-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; padding: 12px 10px; }
  .training-card-body   { padding: 9px; }
  .training-card-meta   { gap: 3px; margin-bottom: 5px; }
  .training-card-title  { font-size: 11.5px !important; line-height: 1.3 !important; margin-bottom: 7px !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .training-price       { font-size: 13px !important; font-weight: 800; }
  .training-price small { font-size: 9px; }
  .training-card-footer { flex-direction: column; align-items: flex-start !important; gap: 5px; }
  .btn-wa-card          { width: 100%; text-align: center; font-size: 10px !important; padding: 7px 4px !important; }
  .sp-stats    { gap: 24px; }
  .sp-stat-num { font-size: 1.8rem; }
  .sp-testimonials { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom p { font-size: 11px; }
  .wa-float { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-actions { flex-direction: column; }
  .about-actions a { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION — SHINING GLASS (CSS only, no HTML change)
   ═══════════════════════════════════════════════════════════ */
.section-services {
  background: linear-gradient(135deg, #E8F0F7 0%, #F0F7FA 40%, #e4f2ff 100%) !important;
  position: relative;
  overflow: hidden;
}
.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(16,58,92,.07) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
.section-services::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.section-services .services-grid { position: relative; }
.section-services .services-grid::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.section-services .container::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: wt-shine-sweep 5s ease-in-out infinite;
}
@keyframes wt-shine-sweep {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
.section-services .container { position: relative; z-index: 1; }
.section-services .section-eyebrow  { color: #103A5C; }
.section-services .section-title    { color: #0B2C46; }
.section-services .section-subtitle { color: #5A6B7B; }
.section-services .service-card {
  background: rgba(255,255,255,.55) !important;
  border: 1px solid rgba(255,255,255,.9) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 4px 24px rgba(16,58,92,.08), inset 0 1px 0 rgba(255,255,255,.9) !important;
  transition: all .25s ease !important;
  overflow: hidden;
}
.section-services .service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), rgba(255,255,255,0));
  border-radius: 18px 18px 0 0;
  pointer-events: none;
  z-index: 0;
}
.section-services .service-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  background: rgba(255,255,255,.75) !important;
  box-shadow: 0 20px 48px rgba(16,58,92,.15), inset 0 1px 0 rgba(255,255,255,1) !important;
  border-color: rgba(255,255,255,1) !important;
}
.section-services .service-card[style*="--accent: #E8611A"]:hover,
.section-services .service-card[style*="--accent:#E8611A"]:hover {
  box-shadow: 0 20px 48px rgba(240,106,37,.18), inset 0 1px 0 #fff !important;
}
.section-services .service-card[style*="--accent: #22C55E"]:hover,
.section-services .service-card[style*="--accent: #22c55e"]:hover {
  box-shadow: 0 20px 48px rgba(34,197,94,.18), inset 0 1px 0 #fff !important;
}
.section-services .service-card[style*="--accent: #3B82F6"]:hover,
.section-services .service-card[style*="--accent: #3b82f6"]:hover {
  box-shadow: 0 20px 48px rgba(59,130,246,.18), inset 0 1px 0 #fff !important;
}
.section-services .service-card[style*="--accent: #F59E0B"]:hover,
.section-services .service-card[style*="--accent: #f59e0b"]:hover {
  box-shadow: 0 20px 48px rgba(245,158,11,.18), inset 0 1px 0 #fff !important;
}
.section-services .service-card-title { color: #0B2C46 !important; position: relative; z-index: 1; }
.section-services .service-card-desc  { color: #5A6B7B !important; position: relative; z-index: 1; }
.section-services .service-card-icon  { position: relative; z-index: 1; }
.section-services .service-card-count {
  background: rgba(16,58,92,.08) !important;
  color: #103A5C !important;
  border: 1px solid rgba(16,58,92,.15) !important;
  position: relative; z-index: 1;
}
.section-services .service-card-arrow { position: relative; z-index: 1; color: rgba(16,58,92,.2) !important; }
.section-services .service-card:hover .service-card-arrow { color: #103A5C !important; }
.section-services .service-card::before { border-radius: 18px 18px 0 0 !important; z-index: 2; }

/* ═══════════════════════════════════════════════════════════
   MOBILE HEADER & FOOTER COMPACT FIXES
   Appended last so it overrides earlier rules by cascade order.
   Safe to remove this whole block to revert.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root        { --nav-h: 52px; }
  .navbar,
  .nav-inner   { height: 52px; }
  .nav-inner   { gap: 10px; }
  .nav-logo    { gap: 7px; }
  .nav-logo-img { height: 32px !important; }
  .nav-logo-text strong { font-size: 13px; }
  .mobile-cat-scroll { top: 52px; }
  .footer { padding-top: 32px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 18px !important;
    padding-bottom: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-nav h4,
  .footer-contact h4 { font-size: 13px; margin-bottom: 8px; }
  .footer-nav ul li,
  .footer-contact ul li { font-size: 12.5px; line-height: 1.7; }
  .footer-bottom p { font-size: 11px; }
}
@media (max-width: 380px) {
  .nav-logo-text { display: none; }
  .footer-inner { gap: 12px 14px !important; }
}

/* ════════════════════════════════════════════════════════════
   ADDITIONS.CSS (merged) — search bar, trust bar, how-it-works,
   FAQ, content-visibility perf hints, long-form content, chips
   ════════════════════════════════════════════════════════════ */
.catalog-search-wrap { position: relative; max-width: 420px; }
.catalog-search-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #999; pointer-events: none; }
#catalog-search {
  width: 100%;
  padding: 9px 16px 9px 42px;
  border: 1.5px solid #e8e8e8;
  border-radius: 20px;
  font-size: 13px;
  font-family: inherit;
  color: #13202E;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
#catalog-search:focus { border-color: #103A5C; box-shadow: 0 0 0 3px rgba(16,58,92,.1); }
#catalog-search::placeholder { color: #bbb; }
@media (max-width: 768px) { .catalog-search-wrap { max-width: 100%; } }

.trust-bar { background: #fff; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-bar-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #999; padding-right: 28px; border-right: 1px solid #e8e8e8; margin-right: 28px;
  white-space: nowrap; flex-shrink: 0;
}
.trust-logo {
  display: flex; align-items: center; gap: 8px; padding: 6px 22px;
  border-right: 1px solid #e8e8e8; opacity: .65; transition: opacity .2s; flex-shrink: 0;
}
.trust-logo:last-child { border-right: none; }
.trust-logo:hover { opacity: 1; }
.trust-logo-icon {
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; background: #E8F0F7; flex-shrink: 0;
}
.trust-logo-name { font-size: 12px; font-weight: 800; color: #103A5C; display: block; }
.trust-logo-sub  { font-size: 10px; color: #666; display: block; }
@media (max-width: 640px) {
  .trust-bar-label { display: none; }
  .trust-logo { padding: 4px 12px; }
}

.section-how { padding: 80px 0; background: #0B2C46; position: relative; overflow: hidden; }
.section-how::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.section-how .section-eyebrow { color: #4ade80; }
.section-how .section-title   { color: #f1f5f9; }
.section-how .section-subtitle { color: #94a3b8; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.how-step {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  transition: background .25s, border-color .25s, transform .25s;
}
.how-step:hover { background: rgba(255,255,255,.08); border-color: rgba(74,222,128,.3); transform: translateY(-4px); }
.how-step-num {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; color: #4ade80;
  text-transform: uppercase; margin-bottom: 16px;
  background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.25);
  padding: 4px 12px; border-radius: 20px;
}
.how-step-icon { font-size: 2rem; margin-bottom: 12px; line-height: 1; }
.how-step h3 { font-size: 15px; font-weight: 700; color: #f1f5f9; margin-bottom: 8px; font-family: 'Lexend', system-ui, sans-serif; }
.how-step p { font-size: 13px; color: #94a3b8; line-height: 1.65; }
@media (max-width: 640px) { .section-how { padding: 56px 0; } }

.section-faq { padding: 80px 0; background: #F6F9FC; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 920px; margin: 0 auto; }
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { background: #fff; border: 1.5px solid #e8e8e8; border-radius: 12px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: #103A5C; box-shadow: 0 4px 20px rgba(16,58,92,.08); }
.faq-question {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; padding: 16px 18px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit; font-size: 14px; font-weight: 600;
  color: #13202E; line-height: 1.5; transition: color .2s;
}
.faq-question:hover { color: #103A5C; }
.faq-item.open .faq-question { color: #103A5C; }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: #E8F0F7; display: flex; align-items: center; justify-content: center;
  color: #103A5C; font-size: 16px; font-weight: 400; line-height: 1;
  transition: background .2s, transform .3s; margin-top: 1px;
}
.faq-item.open .faq-icon { background: #103A5C; color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; font-size: 14px; color: #666; line-height: 1.7; padding: 0 18px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 18px 16px; }

.section-catalog,
.section-about,
.section-how,
.section-faq {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.training-card-img-wrap { aspect-ratio: 16 / 10; }

.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.nav-links a:hover::after { width: 60%; left: 20%; }

.long-content h2 { font-size: 1.3rem; font-weight: 700; color: #103A5C; margin: 28px 0 12px; }
.long-content h3 { font-size: 1.1rem; font-weight: 700; color: #13202E; margin: 20px 0 10px; }
.long-content p  { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 14px; }
.long-content ul { padding-left: 20px; margin-bottom: 14px; }
.long-content ul li { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.long-content strong { color: #13202E; }

.search-highlight { background: #fef3c7; border-radius: 2px; padding: 0 1px; }

.training-card-features { list-style: none; margin: 10px 0 14px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.training-card-features li { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #4b5563; line-height: 1.3; }
.training-card-features .tcf-ico { flex: 0 0 18px; text-align: center; font-size: 13px; color: var(--green, #103A5C); }

/* ════════════════════════════════════════════════════════════
   REDESIGN26.CSS (merged) — hero26, jadwal strip, b2g band, and
   the remaining component-level overrides. !important removed
   throughout: base.css already declares the navy palette as the
   default, so plain source order (this file loads after base.css
   and after the sections above) reproduces the exact same cascade
   result the old !important-vs-!important war used to produce.
   ════════════════════════════════════════════════════════════ */
.hero26 { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--n900) 0%, var(--n800) 55%, #123F63 100%); padding: 0; min-height: auto; }
.hero26-bg { position: absolute; inset: 0; background-image: url('/assets/img/hero-bg.webp'); background-size: cover; background-position: center; opacity: .24; mix-blend-mode: luminosity; }
.hero26-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero26-glow-a { width: 480px; height: 480px; background: rgba(240,106,37,.28); top: -140px; right: -80px; }
.hero26-glow-b { width: 420px; height: 420px; background: rgba(38,108,166,.35); bottom: -160px; left: -100px; }
.hero26-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; padding: 56px 24px 52px; }
.hero26-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: #CFE0EE; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 8px 18px; border-radius: 999px; margin: 0 0 14px;
}
.hero26-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--o400); box-shadow: 0 0 12px var(--o400); animation: pulse26 2s infinite; }
@keyframes pulse26 { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero26-title { font-size: clamp(2rem,4.2vw,2.9rem); font-weight: 800; line-height: 1.08; color: #fff; margin: 0 0 18px; }
.hero26-title em { font-style: normal; background: linear-gradient(90deg, var(--o400), #FFB347); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero26-sub { font-size: 1.05rem; line-height: 1.7; color: #B9CBDB; max-width: 560px; margin: 0 0 20px; }
.hero26-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.btn26 { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; border-radius: 14px; padding: 15px 28px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn26-primary { background: linear-gradient(135deg, var(--o500), var(--o400)); color: #fff; box-shadow: 0 14px 32px -8px rgba(240,106,37,.6); }
.btn26-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -8px rgba(240,106,37,.7); }
.btn26-ghost { background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn26-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.hero26-paths-label { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #7E97AC; margin-bottom: 10px; font-weight: 700; }
.hero26-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip26 {
  display: inline-flex; align-items: center; background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2); color: #E3EDF5; font-size: 13.5px; font-weight: 600;
  padding: 10px 20px; border-radius: 999px; text-decoration: none; transition: all .2s;
}
.chip26:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.chip26-gov { background: linear-gradient(135deg, var(--o500), var(--o400)); border-color: transparent; color: #fff; box-shadow: 0 10px 24px -8px rgba(240,106,37,.6); }
.chip26-gov:hover { box-shadow: 0 14px 30px -8px rgba(240,106,37,.7); }
.hero26-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: 24px; padding: 30px 28px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
}
.hero26-card-title { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9DB8CE; margin: 0 0 18px; }
.hero26-stat-num { display: block; font-family: 'Lexend', sans-serif; font-size: 2.9rem; font-weight: 800; color: #fff; line-height: 1; }
.hero26-stat-num .plus { color: var(--o400); }
.hero26-stat-label { display: block; font-size: 13px; color: #B9CBDB; margin-top: 6px; }
.hero26-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.hero26-stat-sm { background: rgba(255,255,255,.07); border-radius: 14px; padding: 14px; }
.hero26-stat-sm .num { display: block; font-family: 'Lexend', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--o400); }
.hero26-stat-sm .lbl { font-size: 11.5px; color: #9DB8CE; }
.hero26-card-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.hero26-card-badges span { background: rgba(240,106,37,.16); border: 1px solid rgba(240,106,37,.4); color: #FFC59E; font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 6px 12px; border-radius: 8px; }

.section-eyebrow { color: var(--o500); font-weight: 800; letter-spacing: .14em; }
.section-title { color: var(--n800); font-weight: 800; }
.service-card,.training-card,.faq-item,.sp-card { border-radius: 18px; box-shadow: 0 6px 24px -10px rgba(11,44,70,.12); transition: transform .25s, box-shadow .25s; }
.training-card:hover,.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(11,44,70,.25); }
.training-card-img-wrap img { transition: transform .4s; }
.training-card:hover .training-card-img-wrap img { transform: scale(1.05); }
.btn-wa-card,.btn-primary { background: linear-gradient(135deg, var(--o500), var(--o400)); border-radius: 12px; box-shadow: 0 8px 18px -6px rgba(240,106,37,.5); transition: transform .2s, box-shadow .2s; }
.btn-wa-card:hover,.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(240,106,37,.6); }
.trust-bar { background: linear-gradient(180deg,#F6F9FC,#EDF3F8); border-block: 1px solid rgba(16,58,92,.07); }
.stats-bar { background: var(--n800); }
.stats-bar .stat-number { color: #fff; }
.stats-bar .stat-number,.sp-stat-num { font-family: 'Lexend', sans-serif; }
.stats-bar .stat-label { color: #9DB8CE; }
.b2g-band {
  background: linear-gradient(120deg, var(--n900), var(--n800)); border-radius: 24px; margin: 56px auto; padding: 44px 40px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 28px; justify-content: space-between;
  position: relative; overflow: hidden; box-shadow: 0 30px 60px -24px rgba(11,44,70,.5);
}
.b2g-band::after { content: ''; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(240,106,37,.18); filter: blur(60px); }
.b2g-band h2 { color: #fff; font-size: clamp(1.3rem,2.6vw,1.9rem); font-weight: 800; margin: 0 0 8px; }
.b2g-band p { color: #B9CBDB; margin: 0; font-size: 15px; max-width: 520px; }
.b2g-badges { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.b2g-badges span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #DCE9F3; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.jadwal-strip { padding: 60px 0 10px; }
.jadwal-strip-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.jadwal-strip-head .all { color: var(--o500); font-weight: 700; font-size: 14px; text-decoration: none; }
.jadwal-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 18px; }
.jcard {
  background: #fff; border: 1px solid rgba(16,58,92,.1); border-radius: 18px; padding: 20px;
  box-shadow: 0 6px 24px -12px rgba(11,44,70,.15); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: 10px;
}
.jcard:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -16px rgba(11,44,70,.28); }
.jcard-date { align-self: flex-start; background: var(--o100); color: #9A3D0E; font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 999px; }
.jcard-title { font-family: 'Lexend', sans-serif; font-weight: 700; color: var(--ink); font-size: 15.5px; line-height: 1.35; text-decoration: none; }
.jcard-title:hover { color: var(--n800); }
.jcard-meta { font-size: 12.5px; color: var(--mut); }
.jcard-meta .hot { color: #C2410C; font-weight: 700; }
.jcard-cta {
  margin-top: auto; text-align: center; background: linear-gradient(135deg, var(--o500), var(--o400)); color: #fff;
  font-weight: 700; font-size: 13.5px; padding: 11px; border-radius: 12px; text-decoration: none;
  box-shadow: 0 8px 18px -6px rgba(240,106,37,.45);
}
.mcta { display: none; }
@media (max-width: 768px) {
  .hero26-inner { grid-template-columns: 1fr; padding: 72px 20px 64px; gap: 32px; }
  .hero26-card { padding: 24px 22px; }
  .mcta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
    background: rgba(255,255,255,.92); backdrop-filter: blur(14px); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(16,58,92,.12); box-shadow: 0 -10px 30px -12px rgba(11,44,70,.25);
  }
  .mcta a { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; font-size: 14px; padding: 13px; border-radius: 13px; text-decoration: none; }
  .mcta-wa { background: linear-gradient(135deg,#22c55e,#16a34a); color: #fff; box-shadow: 0 8px 18px -6px rgba(34,197,94,.5); }
  .mcta-jadwal { background: var(--n800); color: #fff; }
  body { padding-bottom: 74px; }
  .wa-float { bottom: 86px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero26-dot { animation: none; }
  .btn26,.chip26,.training-card,.service-card,.jcard,.btn-wa-card,.btn-primary { transition: none; }
}

/* v2 polish: section depth + load-more */
.section-catalog { background: linear-gradient(180deg,#F2F7FB 0%,#E7EFF6 100%); }
.section-services { background: linear-gradient(180deg,#FFFFFF,#F4F8FB); }
.section-how,.section-faq { background: #F6F9FC; }
.training-card,.jcard,.service-card { border: 1px solid rgba(16,58,92,.08); }
.tc-hidden { display: none !important; }
.btn-load-more {
  display: block; margin: 34px auto 0; background: linear-gradient(135deg,var(--n800),var(--n700)); color: #fff;
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 15px; padding: 15px 40px; border: none;
  border-radius: 14px; cursor: pointer; box-shadow: 0 14px 30px -10px rgba(11,44,70,.45); transition: transform .2s, box-shadow .2s;
}
.btn-load-more:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(11,44,70,.55); }

/* v3: living background + glass filter bar */
.section-catalog { position: relative; overflow: hidden; }
.section-catalog::before,.section-catalog::after { content: ''; position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.section-catalog::before { width: 520px; height: 520px; background: rgba(240,106,37,.16); top: -120px; left: -140px; animation: drift26a 20s ease-in-out infinite alternate; }
.section-catalog::after { width: 560px; height: 560px; background: rgba(16,58,92,.18); bottom: -160px; right: -160px; animation: drift26b 26s ease-in-out infinite alternate; }
@keyframes drift26a { from { transform: translate(0,0) scale(1); } to { transform: translate(130px,70px) scale(1.18); } }
@keyframes drift26b { from { transform: translate(0,0) scale(1); } to { transform: translate(-150px,-80px) scale(1.12); } }
.section-catalog .container { position: relative; z-index: 1; }
.filter-bar {
  background: rgba(255,255,255,.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.75); border-radius: 18px; box-shadow: 0 12px 32px -14px rgba(11,44,70,.25);
}
@media (prefers-reduced-motion: reduce) { .section-catalog::before,.section-catalog::after { animation: none; } }

/* navbar/footer logo size constraint */
.nav-logo-img { height: 44px; width: auto; display: block; border-radius: 8px; }
.footer-logo .nav-logo-img { height: 36px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }

/* ─── RELATED CTA (T16) — "next step" block for dead-end content pages ── */
.related-cta {
  margin: 32px 0;
  padding: 20px 22px;
  background: var(--green-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
}
.related-cta-title {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.related-cta-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.related-cta-list li { list-style: none; }
.related-cta-list a {
  display: inline-block; padding: 7px 14px; border-radius: 20px;
  background: #fff; border: 1.5px solid var(--border); color: var(--green);
  font-size: 13px; font-weight: 600; transition: border-color .2s, background .2s;
}
.related-cta-list a:hover { border-color: var(--green); background: var(--green-light); }
.related-cta-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff; padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700; transition: background .2s;
}
.related-cta-wa:hover { background: #1da855; }
