/* WORKS SECTION */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}

body{
  margin: 0;
  padding: 0;
}

.works{
  padding: 100px 80px;
  background: #f5f5f5;
}

.section-title{
  font-size: 36px;
  margin-bottom: 50px;
  color: #027dca;
}

.works-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.work-card{
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.work-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.work-info{
  padding: 20px;
}

.work-info h3{
  margin-bottom: 10px;
}

.work-card:hover{
  transform: translateY(-8px);
}

.workflow{
  padding:100px 0;
  background:#f7f7f7;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:36px;
  margin-bottom:10px;
}

.section-title p{
  color:#777;
}

.workflow-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.step{
  background:white;
  padding:35px;
  border-radius:12px;
  position:relative;
  transition:0.35s;
  cursor:pointer;
  border:1px solid #eee;
}

.step:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.step-number{
  font-size:42px;
  font-weight:bold;
  color:#eaeaea;
  position:absolute;
  top:20px;
  right:25px;
}

.step h3{
  margin-bottom:10px;
  font-size:20px;
}

.step p{
  color:#666;
  line-height:1.6;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}


/* ============================= */
/* MANUFACTURE SECTION */
/* ============================= */

.manufacture-section {
  padding: 100px 80px;
  background: #f5f5f5;
}

.manufacture-section .container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.manufacture-section h2 {
  font-size: 40px;
  color: #027dca;
  margin-bottom: 20px;
}

.manufacture-section h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #027dca;
}

/* INTRO */
.manufacture-intro {
  margin-bottom: 60px;
}

.manufacture-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
}

/* SCOPE */
.manufacture-scope {
  display: flex;
  gap: 40px;
}

.scope-left h3 {
  width: 30%;
    font-size: 40px;

}

.scope-right {
  width: 70%;
  display: flex;
  gap: 20px;
}

.scope-card {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  text-align: center;
  transition: 0.3s;

  min-height: 300px;

  display: flex;
  flex-direction: column;
}

.scope-card img {
  width: 100%;
  height: 100%;
  max-height: 200px; /* optional biar ga kegedean */
  object-fit: cover;
}

.scope-card p {
  padding: 15px;
  font-weight: 500;
  margin-top: auto;
}

.scope-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

/* Gambar */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

/* Tombol close */
.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* WHY */
.manufacture-why {
  margin-bottom: 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  background: white;
  padding: 25px;
  border-left: 5px solid #8dc63f;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  font-weight: 600;
  transition: 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
}

/* GALLERY */
.manufacture-gallery {
  margin-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* CERT */
.manufacture-cert {
  margin-bottom: 60px;
  background: white;
  padding: 30px;
  border-left: 6px solid #027dca;
}

/* CLIENT */
.manufacture-client {
  margin-bottom: 40px;
}

.client-logos {
  display: flex;
  gap: 40px;
  align-items: center;
}

.client-logos img {
  height: 60px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.client-logos img:hover {
  opacity: 1;
}




/* ============================= */
/* ABOUT SECTION */
/* ============================= */


.about-section {
  padding: 80px 60px;
  background: #f9fafc;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1400px; /* dari 1100 jadi 1400 */
  margin: auto;
  padding: 0 40px;   /* biar tetap ada jarak aman */
}
.about-block {
  margin-bottom: 60px;
}

.about-block h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #027dca;
}

.about-block p {
  color: #555;
  line-height: 1.7;
}


.about-image{
  margin-top: 30px;
}

.about-image img{
  width: 100%;
  height: 400px;        /* tinggi persegi panjang */
  object-fit: cover;    /* crop otomatis */
  border-radius: 8px;
}

.section-divider{
  width:100%;
  height:2px;
  background:#e5e5e5;
  margin:60px 0; /* jarak atas bawah */
}
/* ================= JOURNEY SECTION ================= */

.journey-section-bg{
  width:100%;
  padding:120px 0;
  background:url("../assets/journey.png") center/cover no-repeat;
  position:relative;
  overflow:hidden;
   min-height: 500px;   /* tambah tinggi section */
  padding: 120px 60px; /* tetap seperti sebelumnya */
}

/* overlay gelap */
.journey-section-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:1;
}

/* supaya konten di atas overlay */
.journey-overlay{
  position:relative;
  z-index:2;
  color:white;
  text-align:center;
}

.journey-title-section{
  padding:80px 0 40px;
  background:#fff;
}

.journey-title{
  font-size:32px;
  color:#027dca;
}

/* ================= TIMELINE ================= */
.journey-years{
  display:flex;
  gap:200px; /* jarak antar tahun */
  margin-bottom:40px;
  position:relative;
}

.journey-years::before{
  content:"";
  position:absolute;
  bottom:-10px;
  left:0;
  width:100%;
  height:2px;
  background:rgba(255,255,255,0.3);
}

/* button tahun */
.year{
  background:none;
  border:none;
  color:white;
  font-size:20px;
  cursor:pointer;
  opacity:0.6;
  display:flex;
  align-items:center;
  gap:10px;
    transition: all 0.3s ease;

}

/* DOT */
.year::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:white;
  display:inline-block;
  opacity:0.5;
    transition: all 0.3s ease;

}

/* ACTIVE */
.year.active{
  opacity:1;
  font-weight:700;
    transform:translateY(-2px);

}

.year.active::before{
  background:red;
  opacity:1;
}

.year.active::after{
  content:"";
  display:block;
  position:absolute;
  bottom:-10px;
  width:40px;
  height:3px;
  background:red;
    transition: all 0.4s ease;

}
/* CONTENT */
.journey-content{
  max-width:600px;
  text-align:left;
}
.journey-item{
  position:absolute;
  opacity:0;
  transition:opacity 0.6s ease;
  pointer-events:none;
}

.journey-item.active{
  opacity:1;
  pointer-events:auto;
}
.journey-item h3{
  font-size:36px;
  margin-bottom:15px;
  text-align:left;
}

.journey-item p{
  font-size:18px;
  line-height:1.6;
  text-align:left;
}


/* ================= VISI MISI ================= */


.vision-mission-section{
  padding:100px 0;
  background:#f8f8f8;
}

.vision-mission-section .container{
  max-width:1100px;
  margin:auto;
}

.vision-box{
  margin-bottom:60px;
}

.vision-box h2,
.mission-box h2{
  font-size:28px;
  margin-bottom:20px;
  color:#027dca;
}

.vision-box p{
  font-size:16px;
  line-height:1.7;
  max-width:700px;
}

.mission-box ul{
  list-style:none;
  padding:0;
}

.mission-box li{
  position:relative;
  padding-left:25px;
  margin-bottom:12px;
  font-size:16px;
}

.mission-box li::before{
  content:"";
  width:8px;
  height:8px;
  background:#027dca;
  border-radius:50%;
  position:absolute;
  left:0;
  top:8px;
}

/* ================= RESPONSIVE ================= */

/* NAVIGATION */
/* NAVIGATION */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 40px;
  color: #999;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}

.nav:hover {
  color: #333;
}

.prev {
  left: -40px;
}

.next {
  right: -40px;
}

/* DOTS */
.carousel-dots {
  text-align: center;
  margin-top: 30px;
}

.carousel-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-dots span.active-dot {
  background: #333;
  transform: scale(1.3);
}


/* Highlights */
.highlights {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.highlight-box {
  background: #1f3c88;
  color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.highlight-box h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Responsive */
@media(max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }

  .highlights {
    flex-direction: column;
  }
}


/* ============================= */
/* ARTIKEL SECTION */
/* ============================= */

.article-page{
  padding:100px 10%;
  background:#fff;
}

/* HEADER */

.article-header{
  max-width:800px;
  margin:auto;
  text-align:center;
  margin-bottom:60px;
}

.article-category{
  color:#027dca;
  font-weight:600;
  font-size:14px;
  letter-spacing:1px;
}

.article-title{
  font-size:38px;
  margin:15px 0;
}

.article-meta{
  color:#777;
  font-size:14px;
  display:flex;
  justify-content:center;
  gap:20px;
}

/* LAYOUT */

.article-layout{
  display:grid;
  grid-template-columns: 80px 1fr 250px;
  gap:40px;
}

/* SHARE */

.article-share{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:15px;
}

.article-share img{
  width:30px;
}

/* CONTENT */

.article-content{
  max-width:700px;
}

.article-image{
  width:100%;
  border-radius:10px;
  margin-bottom:25px;
}

.article-content p{
  line-height:1.8;
  color:#444;
  margin-bottom:20px;
}

/* SIDEBAR */

.article-sidebar h3{
  margin-bottom:15px;
}

.article-sidebar ul{
  list-style:none;
  padding:0;
}

.article-sidebar li{
  margin-bottom:10px;
}

.article-sidebar a{
  text-decoration:none;
  color:#027dca;
}

.article-divider{
  border: none;
  height: 1px;
  background: #e5e5e5;
  margin: 40px 0;
}

.related-news{
  margin-top:80px;
}

.related-news h2{
  font-size:28px;
  margin-bottom:30px;
}

/* GRID */

.related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */

.related-card{
  text-decoration:none;
  color:inherit;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.related-card:hover{
  transform:translateY(-5px);
}

.related-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.related-content{
  padding:15px;
}

.related-category{
  font-size:12px;
  color:#027dca;
  font-weight:600;
}

.related-content h3{
  font-size:16px;
  margin:8px 0;
}

.related-date{
  font-size:12px;
  color:#777;
}

.related-title{
  font-size:28px;
  font-weight:700;
  margin-bottom:30px;
  padding-left:15px;
  border-left:4px solid #027dca;
}

@media (max-width: 1024px) {
  .article-page {
    padding: 80px 6%;
  }

  .article-layout {
    grid-template-columns: 1fr 220px;
    gap: 30px;
  }

  .article-share {
    display: none;
  }

  .article-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .article-page {
    padding: 60px 5%;
  }

  .article-title {
    font-size: 26px;
  }

  .article-meta {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-share {
    display: none;
  }

  .article-sidebar {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-news h2,
  .related-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .article-page {
    padding: 50px 4%;
  }

  .article-title {
    font-size: 22px;
  }

  .article-header {
    margin-bottom: 40px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-card img {
    height: 200px;
  }

  .article-divider {
    margin: 28px 0;
  }
}

/* ============================= */
/* STEEL DRUM GALLERY SECTION */
/* ============================= */

.drum-gallery {
  padding: 60px;
}

/* ============================= */
/* LAYOUT ATAS - 1 CARD */
/* ============================= */

.gallery-top {
  margin-bottom: 20px;
}
.gallery-top .gallery-card {
  width: 600px;
  margin: 0 auto;
}

/* ============================= */
/* LAYOUT BAWAH - 2 CARD */
/* ============================= */
.gallery-bottom {
  display: flex;
  justify-content: center; /* center seluruh grup */
  gap: 20px;
}

.gallery-bottom .gallery-card {
  width: 280px; /* pakai width, bukan max-width */
}

/* ============================= */
/* CARD STYLE */
/* ============================= */

.gallery-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: black;
  padding: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: 0.25s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* ============================= */
/* IMAGE */
/* ============================= */

.gallery-card img {
  width: 70%;          /* gambar lebih kecil */
  height: 160px;       /* card lebih pendek */
  object-fit: contain; /* tidak ke-crop */
  display: block;
  margin: 20px auto 10px auto; /* center horizontal */
}
/* ============================= */
/* TEXT */
/* ============================= */

.gallery-card p {
  margin: 0;
  padding: 15px;
  text-align: center;
  font-weight: 500;
}



/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .drum-gallery {
    padding: 30px 20px;
  }

  .gallery-bottom {
    flex-direction: column;
  }
}

/* ============================= */
/* BITUMEN SECTION */
/* ============================= */

.bitumen-section {
  padding: 80px 0;
}

.bitumen-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* KIRI (TEXT) */
.bitumen-left {
  width: 55%;
}

.bitumen-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #027dca;
}

.bitumen-left p {
  line-height: 1.7;
  color: #555;
}

/* KANAN (IMAGE) */
.bitumen-right {
  width: 45%;
}

.bitumen-right img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ============================= */
/* BITUMEN CTA (FULL IMAGE) */
/* ============================= */

.bitumen-cta {
  background: url('../assets/bg-bitumen.png') center/cover no-repeat;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* overlay gelap */
.bitumen-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* isi text */
.bitumen-cta-overlay {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.bitumen-cta-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.bitumen-cta-overlay p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* tombol */
.cta-button {
  display: inline-block;
  background: #8dc63f;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.cta-button:hover {
  background: #79ad35;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {
  .bitumen-wrapper {
    flex-direction: column;
  }

  .bitumen-left,
  .bitumen-right {
    width: 100%;
  }

  .bitumen-right img {
    margin-top: 20px;
  }
}

/* ============================= */
/* PANEL PTS */
/* ============================= */

.pts-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.pts-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.pts-left h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.pts-sub {
  color: #027dca;
  font-weight: 600;
  margin-bottom: 20px;
}

.pts-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.pts-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-item h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* RIGHT */
.pts-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pts-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.pts-card:hover {
  transform: translateY(-5px);
}

.pts-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.pts-card p {
  font-size: 14px;
  color: #666;
}

/* Highlight Card */
.pts-card.highlight {
  background: linear-gradient(135deg, #027dca, #00aaff);
  color: white;
}

.pts-card.highlight p {
  color: white;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .pts-container {
    grid-template-columns: 1fr;
  }

  .pts-benefits {
    grid-template-columns: 1fr;
  }

  .pts-right {
    grid-template-columns: 1fr;
  }
}

.pts-work {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.pts-work-container {
  max-width: 1000px;
  margin: auto;
}

.pts-work h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.pts-work-sub {
  color: #666;
  margin-bottom: 40px;
}

.pts-work-image img {
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}


/* ============================= */
/* STEEL DRUM */
/* ============================= */

  /* ── INTRO ── */
  .sd-intro {
    background: #fff;
    padding: 72px 40px;
    border-bottom: 1px solid #e2e8f0;
  }
  .sd-intro-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .sd-section-label {
    color: #1e5fa8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .sd-intro h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: #0f2746;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .sd-intro h2 span { color: #1e5fa8; }
  .sd-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 14px;
  }

  /* ── SHARED TITLES ── */
  .sd-section-title {
    text-align: center;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    color: #0f2746;
    margin-bottom: 48px;
  }
  .sd-section-title span { color: #1e5fa8; }
  .sd-label-center {
    text-align: center;
    color: #1e5fa8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  /* ── WHY US ── */
  .sd-why {
    background: #f5f6fa;
    padding: 72px 40px;
  }
  .sd-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
  }
  .sd-feat {
    background: #fff;
    border: 1.5px solid #d0e4ff;
    border-radius: 16px;
    padding: 26px 20px;
    transition: transform .2s, box-shadow .2s;
  }
  .sd-feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30,95,168,.12);
  }
  .sd-feat-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #1e5fa8, #5eb8ff);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
  }
  .sd-feat h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f2746;
    margin-bottom: 7px;
  }
  .sd-feat p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
  }

  /* ── CATEGORIES ── */
  .sd-categories {
    background: #fff;
    padding: 72px 40px;
  }
  .sd-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
  }
  .sd-cat-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
  }
  .sd-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30,95,168,.14);
  }
  .sd-cat-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
  }
  .sd-cat-img.blue  { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
  .sd-cat-img.teal  { background: linear-gradient(135deg, #ccfbf1, #99f6e4); }
  .sd-cat-img.amber { background: linear-gradient(135deg, #fef3c7, #fde68a); }
  .sd-cat-num {
    position: absolute;
    top: 12px; left: 14px;
    font-size: 11px;
    font-weight: 800;
    color: rgba(30,95,168,.45);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .sd-cat-body { padding: 22px; }
  .sd-cat-body h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f2746;
    margin-bottom: 9px;
  }
  .sd-cat-body p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .sd-tag {
    display: inline-block;
    background: #eff6ff;
    color: #1e5fa8;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    padding: 4px 11px;
    border: 1px solid #bfdbfe;
    margin: 3px 3px 0 0;
  }

  /* ── APPLICATIONS ── */
  .sd-apps {
    background: linear-gradient(135deg, #0f2746, #1e5fa8);
    padding: 72px 40px;
    color: #fff;
  }
  .sd-apps .sd-label-center { color: #5eb8ff; }
  .sd-apps .sd-section-title { color: #fff; }
  .sd-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
  }
  .sd-app-item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    padding: 22px 14px;
    text-align: center;
    transition: background .2s;
  }
  .sd-app-item:hover { background: rgba(255,255,255,.15); }
  .sd-app-item .ico { font-size: 30px; margin-bottom: 10px; }
  .sd-app-item p {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
    font-weight: 500;
  }

.sd-cat-img img {
  width: 120px;   /* sesuaikan ukurannya */
  height: 120px;
  object-fit: contain;
}

.sd-gallery-card img {
  width: 60%;
  height: 100%;
  object-fit: cover;
}
  /* ── GALLERY ── */
  .sd-gallery {
    background: #f5f6fa;
    padding: 72px 40px;
  }
  .sd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
  }
  .sd-gallery-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    transition: box-shadow .2s, transform .2s;
    cursor: pointer;
  }
  .sd-gallery-card:hover {
    box-shadow: 0 12px 32px rgba(30,95,168,.13);
    transform: scale(1.02);
  }
  .sd-gallery-card .img-placeholder { font-size: 44px; opacity: .3; }
  .sd-gallery-card .img-label {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: .5px;
  }
  .sd-gallery-card .upload-hint { font-size: 11px; color: #cbd5e1; }
  .sd-gallery-card .ribbon {
    position: absolute;
    top: 12px; right: 12px;
    background: #1e5fa8;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    padding: 3px 9px;
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  .sd-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.sd-modal.active {
  display: flex;
}
.sd-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 600px;
  width: 90%;
}
.sd-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f2746;
  margin-bottom: 12px;
}
.sd-modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.sd-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #4a5568;
  line-height: 1;
}
.sd-modal-close:hover {
  color: #0f2746;
}

  @media (max-width: 600px) {
    .sd-intro, .sd-why, .sd-categories, .sd-apps, .sd-gallery { padding: 48px 20px; }
    .sd-gallery-grid { grid-template-columns: 1fr; }
  }


/* ============================= */
/* REFRIGATOR */
/* ============================= */

.cr-intro{background:#fff;padding:72px 40px;border-bottom:1px solid #e2e8f0;}
.cr-intro-inner{max-width:860px;margin:0 auto;}
.cr-label{color:#027dca;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:10px;}
.cr-label-center{text-align:center;color:#027dca;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:10px;}
.cr-intro h2{font-size:clamp(22px,3.5vw,36px);font-weight:800;color:#0f2746;line-height:1.25;margin-bottom:8px;}
.cr-intro h2 span{color:#027dca;}
.cr-subtitle{font-size:16px;color:#027dca;font-weight:600;margin-bottom:18px;}
.cr-intro p{font-size:15px;line-height:1.8;color:#4a5568;margin-bottom:14px;}

.cr-section-title{text-align:center;font-size:clamp(20px,3vw,32px);font-weight:800;color:#0f2746;margin-bottom:48px;}
.cr-section-title span{color:#027dca;}

/* HOW IT WORKS */
.cr-how{background:#f5f6fa;padding:72px 40px;}
.cr-how-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;max-width:960px;margin:0 auto 36px;}
.cr-how-card{background:#fff;border:1.5px solid #b3d9f5;border-radius:16px;padding:24px 18px;transition:transform .2s,box-shadow .2s;}
.cr-how-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(2,125,202,.12);}
.cr-how-icon{width:44px;height:44px;background:linear-gradient(135deg,#027dca,#39aef4);border-radius:11px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;font-size:20px;}
.cr-how-card h4{font-size:14px;font-weight:700;color:#0f2746;margin-bottom:7px;}
.cr-how-card p{font-size:13px;color:#4a5568;line-height:1.6;}

.cr-compat{background:#e6f4fd;border:1.5px solid #b3d9f5;border-radius:14px;padding:20px 24px;max-width:960px;margin:0 auto;}
.cr-compat p{font-size:14px;color:#01527a;font-weight:600;margin-bottom:8px;}
.cr-compat-tags{display:flex;flex-wrap:wrap;gap:8px;}
.cr-tag{background:#fff;color:#027dca;font-size:12px;font-weight:700;border-radius:20px;padding:5px 14px;border:1.5px solid #7ac8f0;}

/* APPS */
.cr-apps{background:#fff;padding:72px 40px;}
.cr-apps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:18px;max-width:900px;margin:0 auto;}
.cr-app-item{background:#e6f4fd;border:1.5px solid #b3d9f5;border-radius:14px;padding:24px 14px;text-align:center;transition:background .2s,transform .2s;}
.cr-app-item:hover{background:#cce9f9;transform:translateY(-3px);}
.cr-app-item .ico{font-size:28px;margin-bottom:10px;}
.cr-app-item p{font-size:13px;color:#01527a;font-weight:600;line-height:1.5;}

/* BENEFITS */
.cr-benefits{background:linear-gradient(135deg,#013f65,#027dca);padding:72px 40px;color:#fff;}
.cr-benefits .cr-label-center{color:#7ac8f0;}
.cr-benefits .cr-section-title{color:#fff;}
.cr-benefits-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;max-width:960px;margin:0 auto;}
.cr-benefit-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:16px;padding:22px 18px;transition:background .2s;}
.cr-benefit-card:hover{background:rgba(255,255,255,.14);}
.cr-benefit-card .ico{font-size:24px;margin-bottom:10px;}
.cr-benefit-card p{font-size:14px;color:rgba(255,255,255,.9);font-weight:500;line-height:1.55;}
.cr-highlight{color:#7ac8f0;font-weight:800;font-size:16px;}

/* IOT */
.cr-iot{background:#f5f6fa;padding:72px 40px;}
.cr-iot-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:20px;max-width:960px;margin:0 auto;}
.cr-iot-card{background:#fff;border:1.5px solid #b3d9f5;border-radius:16px;padding:24px 18px;transition:transform .2s,box-shadow .2s;}
.cr-iot-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(2,125,202,.12);}
.cr-iot-icon{width:44px;height:44px;background:linear-gradient(135deg,#027dca,#39aef4);border-radius:11px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;font-size:20px;}
.cr-iot-card h4{font-size:14px;font-weight:700;color:#0f2746;margin-bottom:7px;}
.cr-iot-card p{font-size:13px;color:#4a5568;line-height:1.6;}

/* ROI */
.cr-roi{background:#fff;padding:72px 40px;}
.cr-roi-inner{max-width:860px;margin:0 auto;}
.cr-roi-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;margin-top:36px;}
.cr-roi-card{background:#e6f4fd;border:1.5px solid #b3d9f5;border-radius:16px;padding:24px 16px;text-align:center;}
.cr-roi-card .ico{font-size:28px;margin-bottom:10px;}
.cr-roi-card h4{font-size:14px;font-weight:700;color:#01527a;margin-bottom:6px;}
.cr-roi-card p{font-size:12px;color:#4a5568;line-height:1.5;}

@media(max-width:600px){
  .cr-intro,.cr-how,.cr-apps,.cr-benefits,.cr-iot,.cr-roi{padding:48px 20px;}
}


/* ============================= */
/* BENGKEL LPG */
/* ============================= */


.lp-intro{background:#fff;padding:72px 40px;border-bottom:1px solid #e2e8f0;}
.lp-intro-inner{max-width:860px;margin:0 auto;}
.lp-label{color:#027dca;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:10px;}
.lp-label-center{text-align:center;color:#027dca;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:10px;}
.lp-intro h2{font-size:clamp(22px,3.5vw,36px);font-weight:800;color:#0f2746;line-height:1.25;margin-bottom:8px;}
.lp-intro h2 span{color:#027dca;}
.lp-subtitle{font-size:16px;color:#027dca;font-weight:600;margin-bottom:18px;}
.lp-intro p{font-size:15px;line-height:1.8;color:#4a5568;margin-bottom:14px;}

.lp-section-title{text-align:center;font-size:clamp(20px,3vw,32px);font-weight:800;color:#0f2746;margin-bottom:48px;}
.lp-section-title span{color:#027dca;}

/* SERVICES */
.lp-services{background:#f5f6fa;padding:72px 40px;}
.lp-services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px;max-width:960px;margin:0 auto;}
.lp-svc-card{background:#fff;border:1.5px solid #b3d9f5;border-radius:18px;overflow:hidden;transition:transform .2s,box-shadow .2s;}
.lp-svc-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(2,125,202,.13);}
.lp-svc-header{background:linear-gradient(135deg,#013f65,#027dca);padding:20px 22px;display:flex;align-items:center;gap:14px;}
.lp-svc-num{font-size:11px;font-weight:800;color:rgba(255,255,255,.5);letter-spacing:1px;text-transform:uppercase;}
.lp-svc-icon{width:42px;height:42px;background:rgba(255,255,255,.15);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;}
.lp-svc-header h3{font-size:15px;font-weight:800;color:#fff;line-height:1.3;}
.lp-svc-body{padding:20px 22px;}
.lp-svc-body ul{list-style:none;display:flex;flex-direction:column;gap:9px;}
.lp-svc-body ul li{font-size:13px;color:#4a5568;line-height:1.5;padding-left:18px;position:relative;}
.lp-svc-body ul li::before{content:'';position:absolute;left:0;top:7px;width:7px;height:7px;background:#027dca;border-radius:50%;}

/* WHY IMPORTANT */
.lp-why{background:#fff;padding:72px 40px;}
.lp-why-inner{max-width:960px;margin:0 auto;}
.lp-why-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
.lp-why-box{border-radius:18px;padding:28px 24px;}
.lp-why-box.risk{background:#fff3f3;border:1.5px solid #f5c0c0;}
.lp-why-box.benefit{background:#e6f4fd;border:1.5px solid #b3d9f5;}
.lp-why-box h3{font-size:16px;font-weight:800;margin-bottom:16px;display:flex;align-items:center;gap:10px;}
.lp-why-box.risk h3{color:#c0392b;}
.lp-why-box.benefit h3{color:#027dca;}
.lp-why-box ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
.lp-why-box ul li{font-size:13px;line-height:1.55;padding-left:20px;position:relative;}
.lp-why-box.risk ul li{color:#7a2020;}
.lp-why-box.benefit ul li{color:#01527a;}
.lp-why-box.risk ul li::before{content:'';position:absolute;left:0;top:6px;width:8px;height:8px;background:#e74c3c;border-radius:50%;}
.lp-why-box.benefit ul li::before{content:'';position:absolute;left:0;top:6px;width:8px;height:8px;background:#027dca;border-radius:50%;}

/* KEUNGGULAN */
.lp-keunggulan{background:linear-gradient(135deg,#013f65,#027dca);padding:72px 40px;color:#fff;}
.lp-keunggulan .lp-label-center{color:#7ac8f0;}
.lp-keunggulan .lp-section-title{color:#fff;}
.lp-keunggulan .lp-section-title span{color:#7ac8f0;}
.lp-keu-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:18px;max-width:960px;margin:0 auto;}
.lp-keu-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:16px;padding:24px 16px;text-align:center;transition:background .2s;}
.lp-keu-card:hover{background:rgba(255,255,255,.15);}
.lp-keu-card .ico{font-size:28px;margin-bottom:12px;}
.lp-keu-card p{font-size:13px;color:rgba(255,255,255,.88);font-weight:500;line-height:1.55;}

@media(max-width:640px){
  .lp-intro,.lp-services,.lp-why,.lp-keunggulan{padding:48px 20px;}
  .lp-why-grid{grid-template-columns:1fr;}
}


/* ============================= */
/* CONTACT */
/* ============================= */


.contact {
  padding: 60px 0;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 6px;
}

.contact-title {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.75rem;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: #666;
}

.contact-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0 0 2px;
}

.contact-card-sub {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-row-icon {
  width: 16px;
  height: 16px;
  stroke: #aaa;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-row-label {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 2px;
}

.contact-row-value {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.contact-row-value a {
  color: #0066cc;
  text-decoration: none;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 99px;
  background: #e8f5e9;
  color: #2e7d32;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* REKAYASA ENGINEERING */
/* ============================= */

 /* ── Section wrapper ── */
   /* ============================================
   rekayasa.css — Halaman Rekayasa Engineering
   PT KBM
   ============================================ */

/* ── Section wrapper ── */
.services {
  padding: 4rem 2rem;
  background: #f5f7fa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.services-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a6bbd;
  margin: 0 0 6px;
}

.services-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.75rem;
}

.services-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 2rem;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0 0 2rem;
}

/* ── Cards grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}

/* ── Card ── */
.service-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(26, 107, 189, 0.12);
  transform: translateY(-3px);
}

/* ── Card Header ── */
.card-header {
  background: linear-gradient(135deg, #0d4f8c 0%, #1a6bbd 100%);
  padding: 1.4rem 1.25rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-meta {
  display: flex;
  flex-direction: column;
}

.card-num {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-bottom: 2px;
}

.card-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

/* ── Card Body ── */
.card-body {
  padding: 1.1rem 1.25rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

/* ── Tags ── */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: #f0f4f8;
  color: #555;
  border: 1px solid #e2e8f0;
}

/* ── Gallery ── */
.gallery-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a6bbd;
  margin: 0 0 6px;
}

.gallery-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0 0 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}

.gallery-item {
  background: #e8edf2;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Placeholder (tampil saat gambar tidak ditemukan) */
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bbb;
}

.gallery-item.large .gallery-placeholder {
  aspect-ratio: 16 / 7;
}

.gallery-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.35;
}

.gallery-placeholder span {
  font-size: 12px;
  color: #bbb;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 3rem 1.25rem;
  }

  .services-title {
    font-size: 22px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}


/* =============================================
   DIREKSI SECTION — PowerTop Saver
   Matches blue/white clean corporate aesthetic
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f4f8fc;
  font-family: 'DM Sans', sans-serif;
}

/* ---- Section Wrapper ---- */
.direksi-section {
  position: relative;
  padding: 80px 20px 100px;
  background: #f0f6ff;
  overflow: hidden;
}

/* ---- Background Decorations ---- */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.bg-blob-1 {
  width: 500px; height: 500px;
  background: #1a9be8;
  top: -100px; left: -150px;
}
.bg-blob-2 {
  width: 400px; height: 400px;
  background: #0056b3;
  bottom: -80px; right: -100px;
}

/* ---- Container ---- */
.container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: #dbeeff;
  color: #1a9be8;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #0a1f3c;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: #5a7595;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Tier Layout ---- */
.tier {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---- Base Card ---- */
.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  text-align: center;
  width: 220px;
  box-shadow: 0 4px 24px rgba(26, 155, 232, 0.09);
  border: 1.5px solid #e0edf8;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(26, 155, 232, 0.18);
}

/* ---- Card Variants ---- */
.card--highlight {
  border-color: #1a9be8;
  box-shadow: 0 4px 28px rgba(26, 155, 232, 0.15);
}
.card--primary {
  background: linear-gradient(135deg, #1a9be8 0%, #0063c6 100%);
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(26, 155, 232, 0.35);
  width: 260px;
}

/* ---- Badge ---- */
.card-badge {
  display: inline-block;
  background: #e6f4ff;
  color: #1a9be8;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.card-badge--gray  { background: #eef2f7; color: #6b8399; }
.card-badge--white { background: rgba(255,255,255,0.25); color: #fff; }
.card-badge--blue  { background: #dbeeff; color: #0063c6; }

/* ---- Avatar ---- */
.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a9be8, #0063c6);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(26,155,232,0.30);
}
.avatar span {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.avatar--gray  { background: linear-gradient(135deg, #8baac4, #5a7595); box-shadow: 0 4px 16px rgba(90,117,149,0.25); }
.avatar--white { background: rgba(255,255,255,0.25); box-shadow: 0 4px 16px rgba(0,0,0,0.15); border: 2px solid rgba(255,255,255,0.5); }
.avatar--blue  { background: linear-gradient(135deg, #1a9be8, #0056b3); }

/* ---- Name ---- */
.card-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a1f3c;
  line-height: 1.4;
  margin-bottom: 12px;
}
.card-name--white { color: #fff; }

/* ---- Divider ---- */
.card-divider {
  width: 36px; height: 2px;
  background: #d0e8f8;
  border-radius: 2px;
  margin: 0 auto 10px;
}
.card-divider--white { background: rgba(255,255,255,0.35); }

/* ---- Role label ---- */
.card-role {
  font-size: 12px;
  color: #8baac4;
  line-height: 1.5;
  font-weight: 500;
}
.card-role--white { color: rgba(255,255,255,0.80); }

/* ---- Connectors ---- */
.connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
  height: 40px;
}
.connector-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #c2dff5, #1a9be8);
  border-radius: 2px;
}
.connector-dot {
  width: 10px; height: 10px;
  background: #1a9be8;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  box-shadow: 0 0 0 3px #dbeeff;
}
.connector-h {
  width: 55%;
  height: 2px;
  background: linear-gradient(to right, #1a9be8, #c2dff5, #1a9be8);
  position: absolute;
  bottom: 0;
  border-radius: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .tier {
    gap: 16px;
  }
  .card {
    width: 100%;
    max-width: 300px;
  }
  .card--primary {
    width: 100%;
    max-width: 300px;
  }
  .connector-h {
    width: 70%;
  }
}