:root{
  --brand: #0F766E;
  --brand-dark: #0A5C57;
  --brand-soft: rgba(15,118,110,.14);
  --brand-dark-alpha: rgba(10,92,87,.98);

  --accent: #27B376;
  --accent-hover: #16A34A;
  --bg-main: #FFFFFF;
  --bg-soft: #F1F5F9;
  --text-heading: #020617;
  --text-body: #334155;
  --text-muted: #64748B;
  --border: #CBD5E1;
}

body{
  background-color: var(--bg-main);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-body);
  padding-top: 72px;
}

h1,h2,h3,h4,h5,h6{ 
  color: var(--text-heading); 
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

.container{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

section{ 
  padding: 70px 0; 
}

/* grid bagi dua kolom */
.grid-2{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  background-color: var(--bg-main); 
}

.box{
  min-height: auto;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
}

.box.left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}

.box.left h1{
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-heading); 
}

.box.left p{
  margin: 0;
  max-width: 62ch;
  line-height: 1.8;
  color: var(--text-body); 
}

.box.left ul{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}

.box.left li{
  margin: 0;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

.box.left li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent); 
  border: 1px solid rgba(203,213,225,.9); 
  background: rgba(39,179,118,.10); 
}

.box.right{ justify-content: center; }

.box.right img{
  width: 100%;
  max-width: 420px; 
  height: auto;
  display: block;
}


/* ============================= */
/* HEADER */
/* ============================= */
header.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1200;
  background: #ffffff;
  border-bottom: 1px solid rgba(203,213,225,.75);
  transition: background-color .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* Halaman yang punya hero: header transparan sebelum scroll */
body.has-hero header.site-header{
  background: transparent;
  border-bottom-color: transparent;
}

/* State setelah scroll: header jadi solid TEAL */
header.site-header.is-scrolled{
  background: var(--brand-dark-alpha);
  backdrop-filter: blur(8px); /* brand teal */
  border-bottom-color: rgba(255,255,255,.14);
  box-shadow: 0 10px 24px rgba(2,6,23,.18);
}

/* Menu tetap kebaca saat header teal (scroll)
   NOTE: jangan set semua <a> putih, karena dropdown-menu background putih.
*/
header.site-header.is-scrolled .box-header > a,
header.site-header.is-scrolled .box-header .nav-link > li > a{
  color: rgba(255,255,255,.95) !important;
}
header.site-header.is-scrolled .box-header .nav-link > li > a::after{
  background-color: rgba(255,255,255,.90);
}
header.site-header.is-scrolled .arrow-down{
  border-top-color: rgba(255,255,255,.85);
}

/* Teks menu putih saat header transparan di atas hero
   NOTE: dropdown-menu item harus tetap gelap.
*/
body.has-hero header.site-header:not(.is-scrolled) .box-header > a,
body.has-hero header.site-header:not(.is-scrolled) .box-header .nav-link > li > a{
  color: rgba(255,255,255,.92) !important;
}

body.has-hero header.site-header:not(.is-scrolled) .box-header .nav-link > li > a::after{
  background-color: rgba(255,255,255,.92);
}

body.has-hero header.site-header:not(.is-scrolled) .arrow-down{
  border-top-color: rgba(255,255,255,.80);
}

.box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.box-header img {
    width: 70px;
    height: auto;
    display: block;
}

.box-header .nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 1;
    transform: none;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 999px;

  /* latar belakangnya */
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 10px 22px rgba(2,6,23,.16);
}

.brand-logo{
  height: 34px;       /* kontrol ukuran logo */
  width: auto;
  display: block;
}

/* pas header lagi transparan di atas hero, badge tetap jelas */
body.has-hero header.site-header:not(.is-scrolled) .brand-badge{
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.20);
}

/* pas scroll (header solid), badge sedikit lebih kalem */
header.site-header.is-scrolled .brand-badge{
  box-shadow: 0 8px 18px rgba(2,6,23,.14);
}

/* ============================= */
/* LINK NAVIGASI UTAMA */
/* ============================= */

.box-header a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-body, #333333); /* NETRAL */
    transition: color 0.25s ease;
    position: relative;
    padding: 5px 0;
}

/* Underline default (hidden) */
.box-header .nav-link > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width 0.25s ease;
}

/* Hover = hijau */
.box-header .nav-link > li > a:hover {
    color: var(--brand);
}

.box-header .nav-link > li > a:hover::after {
    width: 100%;
}

/* ACTIVE STATE = NETRAL (BUKAN HIJAU PERMANEN) */
.box-header .nav-link > li > a.active {
    color: var(--text-body, #333333);
}

.box-header .nav-link > li > a.active::after {
    width: 0;
}

/* ============================= */
/* DROPDOWN SERVICES */
/* ============================= */

.dropdown {
    position: relative;
}

/* Wrapper supaya di mobile: teks Services tetap link, panah jadi tombol */
.dropdown-head{
    display: flex;
    align-items: center;
}

.dropdown-toggle{
    border: 0;
    background: transparent;
    padding: 0;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dropdown > a,
.dropdown-head > a {
    color: #fff;
}

.dropdown:hover > a,
.dropdown:hover .dropdown-head > a,
.dropdown:focus-within .dropdown-head > a{
    color: var(--brand) !important;
}

/* Arrow default (NETRAL) */
.arrow-down {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #999;
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.25s ease, border-top-color 0.2s ease;
}

/* Hover dropdown → arrow hijau */
.dropdown:hover .arrow-down,
.dropdown:focus-within .arrow-down{
    border-top-color: var(--brand);
    transform: rotate(180deg);
}

/* ============================= */
/* DROPDOWN MENU BOX (VERTIKAL)  */
/* ============================= */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);

    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    border: 1px solid #f0f0f0;

    /* INI KUNCI: dropdown vertikal */
    display: flex;
    flex-direction: column;
    align-items: stretch;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover dropdown → show menu */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

/* item dropdown full lebar */
.dropdown-menu li {
    width: 100%;
}

/* link dropdown */
.dropdown-menu li a {
    /* pastikan tetap kebaca meski header link-nya putih (has-hero) */
    color: var(--text-body) !important;
    padding: 10px 18px;
    font-size: 14px;
    display: block;
    width: 100%;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8fcf9;
    color: var(--brand);
    padding-left: 24px;
}

/* (Dedup) aturan has-hero ada di section HEADER di atas */

/* ================================ HERO / BANNER (REDESIGN) ================================ */
section.banner.hero{
  position: relative;
  overflow: hidden;
  color: #fff;
  /* tarik background sampai ke atas (biar header+hero menyatu) */
  margin-top: -72px;
  padding: calc(72px + 86px) 0 120px;
  background:
    radial-gradient(900px 480px at 12% 20%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(760px 360px at 88% 10%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
}


/* Saat bukan halaman hero, banner biasa tetap aman */
body:not(.has-hero) section.banner.hero{ margin-top: 0; padding-top: 96px; }

.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-media-card{
  position: relative;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.hero-img{
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.hero-caption{
  margin: 12px 0 0;
  font-size: 14px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
}

/* CTA buttons center */
.hero .banner-links{
  justify-content: center;
  gap: 14px;
}

.hero .hero-content{
  text-align: center;
}
.hero .hero-content p{
  margin-left: auto;
  margin-right: auto;
}

.hero-content{ text-align: left; }

.hero-content h1,
.banner-text h1{
  margin: 0 0 14px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.hero-content p,
.banner-text p{
  margin: 0 auto 22px;
  max-width: 62ch;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
}

.hero-content p{ margin-left: 0; }

/* Wave */
.hero-wave{
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
}
.hero-wave svg{ width: 100%; height: 110px; display: block; }

.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .2s ease;
}

.banner .button-primary,
.hero .button-primary{
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(2,6,23,.22);
}

.banner .button-primary:hover,
.hero .button-primary:hover{
  background: #0C6A63;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(2,6,23,.26);
}

.banner .button-ghost,
.hero .button-ghost{
  background: #ffffff;
  color: var(--brand-dark);
  border: 1.5px solid rgba(203,213,225,.9); 
  box-shadow: 0 10px 22px rgba(2,6,23,.16);
}

.banner .button-ghost:hover,
.hero .button-ghost:hover{
  background: var(--bg-soft); 
  color: var(--brand);
  border-color: var(--border);
  transform: translateY(-1px);
}

/* Header link color saat hero (sebelum scroll) */
body.has-hero header.site-header:not(.is-scrolled) .box-header a{
  color: rgba(255,255,255,.92);
}
body.has-hero header.site-header:not(.is-scrolled) .box-header .nav-link > li > a::after{
  background-color: rgba(255,255,255,.92);
}
body.has-hero header.site-header:not(.is-scrolled) .arrow-down{
  border-top-color: rgba(255,255,255,.92);
}
body.has-hero header.site-header:not(.is-scrolled) .dropdown:hover > a{
  color: #ffffff !important;
}

@media (max-width: 900px){
  section.banner.hero{
    padding: calc(72px + 64px) 0 110px;
  }
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-media{ order: 1; }
  .hero-content{ order: 2; text-align: center; }
  .hero-content p{ margin-left: auto; margin-right: auto; }
  .banner-links{ display: grid; grid-template-columns: 1fr; gap: 12px; }
  .banner-links .button{ width: 100%; }
}

.button-coba{
  display: inline-block;
  background: #0F766E; 
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 7px;
  transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}
.button-coba:hover{
  background: var(--accent-hover);  
}

/* ================================ TABEL HOME ================================== */

.table-section {
    padding: 80px 0;
    background: var(--bg-main, #fff);
}

.table-title {
    margin-bottom: 28px;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-heading, #0f172a);
}

/* Wrapper */
.table-ui {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border, #e5e7eb);
    box-shadow: 0 14px 40px rgba(2,6,23,.06);
}

/* Header */
.table-head {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #0b1220;
}

.table-head .th {
    padding: 16px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.table-head .th:last-child {
    border-right: 0;
}

/* Body */
.table-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.table-body .td {
    padding: 18px 16px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-body, #334155);
    border-top: 1px solid var(--border, #e5e7eb);
    border-right: 1px solid var(--border, #e5e7eb);
}

.table-body .td:last-child {
    border-right: 0;
}

/* ================================ STATS / STATISTIK ================================== */
.stats{ 
  padding: 70px 0; 
}

.stats-card{
  background: #fff;
  border-radius: 22px;
  padding: 34px 26px;
  box-shadow: 0 18px 50px rgba(2,6,23,.06);
  border: 1px solid var(--border);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: start;
}

.stat{
  text-align: center;
  padding: 18px 14px;
  position: relative;
}

.stat:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 16px;
  right: -5px;
  width: 1px;
  height: calc(100% - 32px);
  background: var(--border); 
}

.stat-number{
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 8px;
  background: #0F766E; 
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-title{
  font-size: 16px;
  font-weight: 800;
  color: var(--text-heading); 
  margin-bottom: 8px;
}

.stat-desc{
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 28ch;
  margin: 0 auto;
}

/* ================================ STEPS / TABEL INFORMASI ================================== */
.steps-section{ padding: 60px 0 80px; }

.steps-card{
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-item{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;

  box-shadow: 0 14px 40px rgba(2,6,23,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.step-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(2,6,23,.08);
  border-color: rgba(203,213,225,.95);
}

.step-icon{
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;

  background: rgba(39,179,118,.12);
  border: 1px solid rgba(203,213,225,.9);  
}

.step-icon img{
  width: 28px;
  height: 28px;
  /* icon hijau aman */
  filter: brightness(0) saturate(100%) invert(47%) sepia(63%) saturate(520%)
          hue-rotate(95deg) brightness(92%) contrast(92%);
}

.step-item h3{
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-heading);  
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: normal;
}

.step-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 28ch;
}

/* =================================BRAND SUPPORT ================================ */
/* Pastikan section induknya memaksa konten ke tengah */
.support-section {
    width: 100%;
    background-color: #ffffff; /* Sesuai request tetap putih */
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Kunci tengah secara horizontal */
    justify-content: center;
}

/* Judul Support */
.support-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    width: 100%;
}

/* KOTAK SWIPER (Ukuran 20% dan Center) */
.mySwiper {
    width: 20% !important; /* Ukuran yang kamu mau */
    min-width: 280px;      /* Supaya di HP nggak terlalu gepeng */
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
    overflow: visible;     /* Biar efek 3D sampingnya nggak kepotong garis imajiner */
}

/* KOTAK LOGO */
/* 1. Tambahin Perspective di container utama supaya efek 3D muncul */
.swiper {
    perspective: 1200px; 
}

/* 2. Style dasar slide (tambahin transition biar smooth pas geser) */
.swiper-slide {
    width: 100px !important;
    height: 100px !important;
    background: #fff;
    border-radius: 10px;
    display: flex !important; 
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.4s ease-out; /* Bikin pergerakan "nengok" jadi halus */
    backface-visibility: hidden;
}

/* 3. LOGO KIRI: Menghadap Kanan (Tengah) */
.swiper-slide-prev {
    transform: rotateY(35deg) scale(0.85); /* Miring ke kanan */
    z-index: 1;
    opacity: 0.7; /* Opsional: agak blur dikit biar fokus ke tengah */
}

/* 4. LOGO KANAN: Menghadap Kiri (Tengah) */
.swiper-slide-next {
    transform: rotateY(-35deg) scale(0.85); /* Miring ke kiri */
    z-index: 1;
    opacity: 0.7;
}

/* 5. LOGO TENGAH: Tetap Lurus & Menonjol */
.swiper-slide-active {
    transform: rotateY(0deg) scale(1.1); /* Lebih gede dikit */
    z-index: 10;
    opacity: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}


.swiper-slide img {
    max-width: 80%; 
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.swiper-button-next, .swiper-button-prev {
    color: #333 !important;
    transform: scale(0.6);
}

/* ================= FOOTER ================= */
.site-footer{
  background: #0F766E;
  color: rgba(255,255,255,.92);
  padding: 70px 0 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h4{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.footer-col a{
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-col a:hover{
  opacity: 1;
  transform: translateX(2px);
}

.footer-col p{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin: 0 0 10px;
}

/* Brand */
.footer-brand img{
  max-width: 120px;
  margin-bottom: 14px;
}

/* Social */
.footer-social{
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social img{
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-social img:hover{
  opacity: 1;
  transform: translateY(-2px);
}

/* Bottom */
.footer-bottom{
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}

/* Responsive */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px){
  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social{
    justify-content: center;
  }

  .footer-col a:hover{
    transform: none;
  }
}

/* ================================ ABOUT / FEATURE ================================== */
.page-hero{
  position: relative;
  overflow: hidden;
  margin-top: -72px;
  padding: calc(72px + 70px) 0 110px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(700px 420px at 85% 15%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(600px 380px at 85% 80%, rgba(0,0,0,.10), transparent 60%);
  opacity: .9;
  pointer-events:none;
}

.page-hero-inner{
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title{
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  margin: 0 0 10px;
  margin-bottom: 40px;
  color: white;
}

.page-hero-wave{
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  line-height:0;
  pointer-events:none;
}
.page-hero-wave svg{
  display:block;
  width:102%;
  height:140px;
  margin-left:-1%;
}

/* Khusus head yang cuma judul (biar jadi 1 kolom & center) */
.yoabsen-head.yoabsen-head-center{
  grid-template-columns: 1fr;
  justify-items: center;
}

/* Judulnya langsung di h2 */
.yoabsen-title{
  max-width: 720px;
  margin: 0;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-heading);
}

.yoabsen-feature{
  padding: 80px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.yoabsen-feature h1{
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--text-heading);  
  letter-spacing: .2px;
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.feature-item{
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 26px 26px 22px;
  border: 1px solid var(--border); 
  box-shadow: 0 18px 45px rgba(2,6,23,.05);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%); 
  opacity: .9;
}

.feature-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(2,6,23,.10);
  border-color: rgba(203,213,225,.95);
}

.feature-no{
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 34px;
  font-weight: 900;
  color: rgba(2,6,23,.10); 
  letter-spacing: 1px;
}

.feature-item h4{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: .4px;
  padding-left: 10px;
}

.feature-item p{
  margin: 0;
  padding-left: 10px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-body); 
  max-width: 62ch;
}

.feature-item p:empty,
.feature-item p{ min-height: 40px; }

/* ================================ PORTOFOLIO ================================== */
.yoabsen-wrap{
  padding: 80px 0;
  background: var(--bg-main);
}

.yoabsen-head{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 34px;
}

.yoabsen-text h2{
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--text-heading); 
}

.yoabsen-text p{
  margin: 0 0 16px;
  max-width: 62ch;
  line-height: 1.75;
  color: var(--text-body); 
}

.yoabsen-points{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 18px;
}

.yoabsen-points li{
  position: relative;
  padding-left: 26px;
  color: var(--text-body); 
  font-size: 15px;
  line-height: 1.6;
}

.yoabsen-points li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--accent);  
  border: 1px solid rgba(203,213,225,.9);  
  background: rgba(39,179,118,.10);
}

.yoabsen-media{
  display: flex;
  justify-content: center;
}

.yoabsen-media img{
  width: 100%;
  max-width: 340px; 
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
  border: 1px solid var(--border);  
}

/* ===== GRID FITUR (4 kolom) ===== */
.yoabsen-feature{ margin-top: 18px; }

.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-item{
  background: #fff;
  border: 1px solid var(--border);  
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 14px 40px rgba(2,6,23,.05);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 4px;
  height: calc(100% - 36px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);  
  opacity: .85;
}

.feature-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(2,6,23,.08);
  border-color: rgba(203,213,225,.95);
}

.feature-no{
  position: absolute;
  right: 16px;
  top: 14px;
  font-weight: 900;
  font-size: 22px;
  color: rgba(2,6,23,.10);
}

.feature-item h4{
  margin: 0 0 10px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .3px;
  color: var(--text-heading);  
  text-transform: uppercase;
}

.feature-item p{
  margin: 0;
  padding-left: 10px;
  color: var(--text-body);  
  line-height: 1.7;
  font-size: 14px;
}

/* ================================ SERVICES ================================== */
.svc-top{ padding: 80px 0; background: var(--bg-main); }
.svc-price{ padding: 80px 0; background: var(--bg-main); }
.svc-bottom{ padding: 80px 0; background: var(--bg-main); }

.svc-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.svc-card{
  background:#fff;
  border:1px solid var(--border);  
  border-radius:18px;
  padding:22px;
  box-shadow:0 18px 45px rgba(2,6,23,.05);
  display:flex;
  flex-direction:column;
  gap:14px;
}

.svc-card > h2{
  margin:0;
  text-align:center;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight:900;
  color: var(--text-heading);  
}

.svc-media{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);  
  background: var(--bg-soft);  
}

.svc-media img{
  width:100%;
  height: 300px; 
  object-fit:cover;
  display:block;
}

.svc-video{ height:300px; }
.svc-video iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.svc-price-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:36px;
  align-items:center;
}

.svc-price-text h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight:900;
  color: var(--text-heading);  
}

.svc-price-text p{
  margin:0 0 16px;
  line-height:1.75;
  color: var(--text-body);  
  max-width:62ch;
}

.svc-bullets{
  margin:0 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.svc-bullets li{
  position:relative;
  padding-left:26px;
  line-height:1.6;
  color: var(--text-body);  
}

.svc-bullets li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  color: var(--accent);  
  border:1px solid rgba(203,213,225,.9);  
  background:rgba(39,179,118,.10);
}

.svc-price-media{
  display:flex;
  justify-content:center;
}

.svc-price-media img{
  width:100%;
  max-width: 460px; 
  border-radius:18px;
  border:1px solid var(--border);  
  box-shadow:0 18px 45px rgba(2,6,23,.08);
  display:block;
}

/* === FIX: Button Harga Yoabsen === */
.svc-price .button-primary{
  background-color: #0F766E;
  border-color: #0F766E;
  color: #ffffff;
}

.svc-price .button-primary:hover{
  background-color: #0A5C57; /* versi lebih gelap */
  border-color: #0A5C57;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15,118,110,.35);
}

/* ================================ CONTACT ================================== */
.contact-section{
  padding: 90px 0;
  background: var(--bg-main);
}

.contact-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.contact-head h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: var(--text-heading);  
  letter-spacing: -.2px;
}

.contact-head p{
  margin: 0;
  color: var(--text-muted);  
  line-height: 1.7;
}

.contact-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto 26px;
}

.contact-card{
  background: #fff;
  border: 1px solid var(--border);  
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 18px 45px rgba(2,6,23,.05);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(2,6,23,.08);
  border-color: rgba(203,213,225,.95);
}

.contact-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(39,179,118,.12);
  border: 1px solid rgba(203,213,225,.9);  
  margin-bottom: 2px;
}

.contact-icon img{
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(63%) saturate(520%)
          hue-rotate(95deg) brightness(92%) contrast(92%);
}

.contact-card h3{
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  color: var(--text-heading);  
}

.contact-link{
  font-size: 16px;
  font-weight: 800;
  color: var(--accent); 
  text-decoration: none;
}

.contact-link:hover{
  color: var(--accent-hover);  
  text-decoration: underline;
}

.contact-note{
  font-size: 13px;
  color: var(--text-muted);  
}

.map-wrap{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);  
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(2,6,23,.05);
}

.map-head{
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);  
}

.map-head h3{
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 900;
  color: var(--text-heading);  
}

.map-head p{
  margin: 0;
  color: var(--text-muted);  
  font-size: 14px;
  line-height: 1.5;
}

.map-embed{
  aspect-ratio: 16 / 7;
  background: var(--bg-soft);  
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================================ TEAM ================================== */
.team-section{
  padding: 70px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border);  
}

.team-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}

.team-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-heading);  
}

.team-subtitle{
  max-width: 650px;
  margin: 0 auto 36px;
  color: var(--text-muted);  
  line-height: 1.6;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card{
  background: #fff;
  border: 1px solid var(--border);  
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 25px rgba(2,6,23,.04);
}

.team-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.team-photo{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  background: var(--bg-soft);
}

.team-name{
  margin: 14px 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-heading);  
}

.team-role{
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);  
}

/* ================================ EVENTS ================================== */
.event-page{
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 60px 0;
}

.event-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-heading);  
}

.event-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.event-card{
  border: 1px solid var(--border);  
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 25px rgba(2,6,23,.04);
}

.event-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
}

.event-card img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-soft);
}

.event-card h3{
  font-size: 18px;
  margin: 14px 14px 6px;
  font-weight: 800;
  color: var(--text-heading);  
}

.event-card p{
  margin: 0 14px 10px;
  color: var(--text-muted);  
  font-size: 14px;
  line-height: 1.5;
}

.event-card a{
  display: inline-block;
  margin: 0 14px 16px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--accent);  
  text-decoration: none;
  color: var(--accent);  
  font-weight: 700;
  font-size: 14px;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.event-card a:hover{
  background: var(--accent-hover); 
  border-color: var(--accent-hover);
  color: #fff;
}

.event-detail{
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 16px;
}

.event-detail img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: var(--bg-soft);
}

.event-detail h1{
  margin: 20px 0 10px;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-heading);  
}

.event-detail .meta{
  color: var(--text-muted);  
  margin-bottom: 16px;
  font-size: 14px;
}

.event-detail p{
  color: var(--text-body);  
  line-height: 1.7;
  font-size: 15px;
}

.event-back{
  display: inline-block;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--accent);  
  text-decoration: none;
  color: var(--accent);  
  font-weight: 700;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.event-back:hover{
  background: var(--accent-hover);  
  border-color: var(--accent-hover);
  color: #fff;
}
.btn-view-all {
    text-decoration: none;
    color: #27ae60;
    border: 1px solid #27ae60;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #27ae60;
    color: #ffffff;
}
/* ================================ RESPONSIVE ================================== */
@media (max-width: 992px){
  .event-list{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
  .event-list{ grid-template-columns: 1fr; }
  .event-title{ font-size: 26px; }
  .event-detail h1{ font-size: 26px; }
}

 
@media (max-width: 992px){
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .team-grid{ grid-template-columns: 1fr; }
  .team-title{ font-size: 26px; }
}

 
@media (max-width: 900px){
  .svc-grid{ grid-template-columns:1fr; }
  .svc-media img, .svc-video{ height:260px; }
  .svc-price-grid{ grid-template-columns:1fr; }
  .svc-price-media{ justify-content:flex-start; }
}

 
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
  .map-embed{ aspect-ratio: 16 / 10; }
}

 
@media (max-width: 900px){
  .two-card-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 1000px){
  .yoabsen-head{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .yoabsen-media{ justify-content: flex-start; }
  .feature-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .yoabsen-points{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
}

 
@media (max-width: 600px){
  .footer-wrap{
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 900px){
  .steps-grid{
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 900px){
  .stats-card{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .stat:not(:last-child)::after{ display: none; }
}

@media (max-width: 520px){
  .stats-card{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .grid-2{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .box.right{ justify-content: flex-start; }

  .box.left h1{ font-size: 32px; }
}

/* ============================= */
/* RESPONSIVE NAVBAR + HAMBURGER */
/* ============================= */
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--brand);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 10px 22px rgba(2, 6, 23, .14);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

/* Hamburger animasi jadi X saat menu terbuka */
.nav-toggle.is-active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2){
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile/Tablet */
@media (max-width: 992px) {
    /*
      Di mobile, header transparan bikin logo/menu susah kebaca di atas hero.
      Jadi: paksa header selalu solid (brand teal) sejak awal.
    */
    body.has-hero header.site-header{
        background: var(--brand-dark-alpha);
        border-bottom-color: rgba(255,255,255,.14);
        box-shadow: 0 10px 24px rgba(2,6,23,.18);
    }

    body.has-hero header.site-header .box-header a{
        color: rgba(255,255,255,.95) !important;
    }

    body.has-hero header.site-header .arrow-down{
        border-top-color: rgba(255,255,255,.85);
    }

    .box-header {
        position: relative;
    }

    .nav-toggle {
        display: inline-flex;
    }

    /* menu utama jadi dropdown panel */
    .box-header .nav-link {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #eeeeee;
        border-radius: 14px;
        padding: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);

        display: none;                 /* default: hidden */
        flex-direction: column;        /* vertikal */
        align-items: stretch;
        gap: 6px;
        z-index: 2000;
    
        pointer-events: none;
        opacity: 1;
        transform: none;
}

    /*
      Menu panel mobile background putih.
      Override warna link supaya TIDAK ikut putih (state has-hero) biar item kelihatan.
    */
    body.has-hero header.site-header .box-header .nav-link > li > a{
        color: #111827 !important;
    }

    body.has-hero header.site-header .box-header .nav-link > li > a::after{
        background-color: var(--brand);
    }

    body.has-hero header.site-header .box-header .nav-link .arrow-down{
        border-top-color: #111827;
    }

    .box-header .nav-link.is-open {
        display: flex;
            pointer-events: auto;
}

    /*
      FIX: saat panel menu mobile (bg putih) terbuka,
      pastikan semua teks link (termasuk "Services" di .dropdown-head)
      tetap gelap dan kebaca.
      Ini mengalahkan rule has-hero yang memutihkan semua <a>.
    */
    .box-header .nav-link.is-open a,
    body.has-hero header.site-header .box-header .nav-link.is-open a{
        color: #111827 !important;
    }

    .box-header .nav-link.is-open .dropdown-toggle .arrow-down{
        border-top-color: #111827;
    }

    /*
      Penting: saat menu mobile terbuka, panelnya putih.
      Jangan ikut warna link header (putih) supaya item menu kelihatan.
    */
    .box-header .nav-link > li > a{
        color: #111827 !important;
    }

    .box-header .nav-link > li > a::after{
        background-color: var(--brand);
    }

    .box-header .nav-link .arrow-down{
        border-top-color: #111827;
    }

    .box-header .nav-link > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-radius: 10px;
    }

    /* Services: pakai dropdown-head (link + tombol panah) */
    .box-header .nav-link .dropdown-head{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .box-header .nav-link .dropdown-head > a{
        flex: 1;
        padding: 0;
        margin: 0;
        color: #111827 !important;
    }

    .box-header .nav-link .dropdown-toggle{
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #f3f4f6;
    }

    .box-header .nav-link .dropdown-toggle:active{
        transform: scale(0.98);
    }

    /* dropdown menu: di mobile jadi "inline" (nggak absolute) */
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 6px 0 0;
        min-width: unset;
        display: none;                 /* default: tertutup */
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown.open .arrow-down {
        transform: rotate(180deg);
        border-top-color: var(--brand);
    }

    .dropdown-menu li a {
        padding: 10px 14px;
        border-radius: 10px;
        /* Fix: di panel mobile background putih, jadi teks harus gelap */
        color: #111827 !important;
    }
}

/* Desktop: pastikan dropdown hover tetap jalan */
@media (min-width: 993px) {
    .dropdown-menu {
        display: block; /* biar item vertikal */
    }
}

/* ===== MOBILE: Ubah jadi "card list" ===== */
@media (max-width: 900px){
  /* sembunyikan head, karena judul akan dipindah ke tiap cell body */
  .table-head{
    display: none;
  }

  .table-ui{
    overflow: hidden;
  }

  /* body jadi 1 kolom (stack) */
  .table-body{
    grid-template-columns: 1fr;
  }

  .table-body .td{
    border-right: 0;
    border-top: 1px solid var(--border);
    padding: 16px 16px 18px;
    text-align: left;
  }

  /* judul per item */
  .table-body .td::before{
    display: inline-block;
    font-weight: 800;
    background: var(--brand);
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    border-bottom: 0;
}

  /* mapping judul sesuai urutan isi */
  .table-body .td:nth-child(1)::before{ content: "Digital Strategy"; }
  .table-body .td:nth-child(2)::before{ content: "HRD Support"; }
  .table-body .td:nth-child(3)::before{ content: "Design Concept"; }
  .table-body .td:nth-child(4)::before{ content: "Media Pairing"; }
}


/* EVENT */
.event-page { padding: 70px 0; }
.event-title { font-size: 34px; font-weight: 800; margin-bottom: 22px; }

.event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  background: #fff;
  border: 1px solid var(--border, #CBD5E1);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(2,6,23,.04);
}

.event-card h3 { margin: 0 0 8px; font-size: 18px; }
.event-card small { color: var(--text-muted, #64748B); display:block; margin-bottom: 10px; }
.event-card a { display:inline-block; margin-top: 10px; font-weight: 700; color: var(--accent, #27B376); text-decoration:none; }

.event-detail { padding: 70px 0; }
.event-detail .meta { color: var(--text-muted, #64748B); margin-bottom: 18px; }
.event-content { line-height: 1.7; }

.btn-daftar {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--accent, #27B376);
  color: var(--accent, #27B376);
  text-decoration: none;
  font-weight: 800;
}
.btn-daftar:hover {
  background: var(--accent-hover, #16A34A);
  border-color: var(--accent-hover, #16A34A);
  color: #fff;
}

/* responsive */
@media (max-width: 992px) {
  .event-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .event-list { grid-template-columns: 1fr; }
}


/* Safety: decorative overlays should not block taps/clicks */
.banner.hero::before, .banner.hero::after,
.page-hero::before, .page-hero::after{
  pointer-events: none;
}

/* A1) HEADER: saat scroll -> solid #0F766E, tanpa blur */
header.site-header.is-scrolled{
  background: #0F766E !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 6px 16px rgba(2,6,23,.18) !important;
}

/* A2) HOME HERO: hide teks "We build digital experiences." */
.hero-caption{ display:none !important; }
.hero-media-card{ padding-bottom: 18px !important; }

/* B3) Thumbnail video (Solusi Transformasi Digital) biar rapi */
.image-wrapper{
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.image-wrapper .main-img{
  width: 100% !important;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.image-wrapper .play-icon{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.image-wrapper .play-icon img{
  width: 64px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(2,6,23,.35));
}

/* Modal video: pastikan layer + konten rapi */
.modal-video{
  z-index: 3000;
}
.modal-video-content{
  width: min(980px, 100%);
}

/* FIX modal video biar muncul sebagai overlay fullscreen */
.modal-video{
  display: none;              /* default hidden */
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(2,6,23,.72);
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.modal-video-content{
  width: min(980px, 100%);
  background: #0b1220;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,6,23,.45);
  position: relative;
}
.video-responsive{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-responsive iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.close-btn{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.close-btn:hover{
  background: rgba(255,255,255,.18);
}

/* B4) Section tabel: judul kebesaran -> samakan */
.table-title{
  font-size: clamp(24px, 2.6vw, 32px) !important;
}
/* Table head: ubah teks jadi #0F766E */
.table-head .th{
  background-color: #0F766E !important;
}

/* B5) Ikon bawah (Call Team / Jadwal / Meeting Online) -> #0F766E (PNG via filter) */
.steps-section .step-icon img{
  filter: brightness(0) saturate(100%) invert(28%) sepia(22%) saturate(1150%) hue-rotate(130deg) brightness(92%) contrast(96%);
}

/* B6) Hide image kosong (src kosong) */
img:not([src]),
img[src=""]{
  display: none !important;
}

/* C7) Footer: background #0F766E + copyright center */
footer{
  background: #0F766E !important;
  border-top: 0 !important;
}
.footer-wrap p{
  text-align: center !important;
  color: rgba(255,255,255,.92) !important;
}

/* D8/E10/F11/G/H) Page hero height lebih ringkas */
.page-hero{
  padding: calc(72px + 48px) 0 90px !important;
}
.page-hero .page-title{
  font-size: clamp(30px, 3.4vw, 44px) !important;
}

/* F11) Services: button "Hubungi Kami" paksa brand + hover */
.services .button-primary,
section.services .button-primary{
  background: #0F766E !important;
  color: #fff !important;
}

.services .button-primary:hover,
section.services .button-primary:hover{
  background: #0A5C57 !important;
}

/* G12) Contact: icon -> #0F766E + hide note */
.contact-icon img{
  filter: brightness(0) saturate(100%) invert(28%) sepia(22%) saturate(1150%) hue-rotate(130deg) brightness(92%) contrast(96%);
}
.contact-note{ display:none !important; }

/* ================================ TAMBAHAN ================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding-block: 10px;
}