* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  background: #0f172a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}
.logo span {
  color: #38bdf8;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding-top: 80px; /* supaya header tidak menutupi teks */
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

/* Background di bawah hero content */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f12, #1b1b23);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* pastikan di bawah teks */
  /* Bisa ganti url jika mau pakai gambar / illustration */
  /* background-image: url('assets/images/hero-bg.jpg'); */
}

/* Optional: efek blur / glow agar lebih premium */
.hero::after {
  content: "";
  position: absolute;
  top: -50px; left: -50px;
  width: 200%;
  height: 200%;
background: linear-gradient(rgba(15,15,18,0.7), rgba(15,15,18,0.7)),
              url('../img/hero-bg.jpg') center/cover no-repeat;
  z-index: -1;
}


.section {
  padding: 70px 0;
}

.section.light {
  background: #f8fafc;
}

h2 {
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,.05);
  text-align: center;
  font-weight: 500;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}


.btn.primary {
  background: #38bdf8;
  color: #000;
}

form {
  display: grid;
  gap: 15px;
  max-width: 500px;
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* RESPONSIVE */
@media(max-width:768px){
  nav ul {
    display: none;
    flex-direction: column;
    background: #0f172a;
    position: absolute;
    right: 20px;
    top: 60px;
    padding: 15px;
  }
  nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* WhatsApp Floating */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,.3);
  z-index: 999;
}

/* Hover Effect */
.card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

/* CTA BOX */
.cta-box {
  text-align: center;
  background: linear-gradient(135deg,#020617,#020617) padding-box,
              linear-gradient(135deg,#38bdf8,transparent) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 60px 30px;
}

.cta-box p {
  color: #94a3b8;
  margin: 15px 0 25px;
}


/* ===== PORTFOLIO ===== */
.portfolio-grid {
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
}

.portfolio-card {
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 25px;
  cursor: pointer;
  transition: all .4s ease;
  border: 1px solid rgba(255,255,255,.08);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,.4);
}

.portfolio-thumb {
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(135deg,#38bdf8,#0ea5e9);
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: #020617;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: #020617;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  border: 1px solid rgba(255,255,255,.1);
}

.modal-content ul {
  margin-top: 15px;
  list-style: disc;
  padding-left: 20px;
}

.close {
  float: right;
  font-size: 26px;
  cursor: pointer;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 40px;
}

.mission-list {
  list-style: disc;
  padding-left: 20px;
  color: #cbd5f5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  text-align: center;
}

.stat-card {
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 40px 20px;
  border: 1px solid rgba(255,255,255,.08);
}

.stat-card h3 {
  font-size: 36px;
  color: #38bdf8;
}

.hero-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,224,255,0.15), transparent 40%),
    linear-gradient(135deg, #0a0f1f, #020617);
  color: #fff;
  position: relative;
  overflow: hidden;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(0,224,255,0.15);
  color: #00e0ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #00e0ff;
}

.hero-text p {
  font-size: 16px;
  max-width: 520px;
  opacity: 0.9;
}

.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 30px;
}

.glass-card h3 {
  margin-bottom: 15px;
  color: #00e0ff;
}


@media (max-width: 900px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 36px;
  }
}

/* =========================================================
   CTA – MODERN & PREMIUM
   ========================================================= */
.cta-modern {
  position: relative;
  padding: 120px 0;
}

/* Card utama */
.cta-card {
  position: relative;
  border-radius: 28px;
  padding: 80px 60px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  overflow: hidden;
}

/* Glow accent */
.cta-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(0,224,255,0.35),
    transparent 70%
  );
  opacity: 0.6;
  z-index: 0;
}

/* Content layer */
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: auto;
}

/* Heading */
.cta-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-content h2 span {
  color: #00e0ff;
}

/* Text */
.cta-content p {
  font-size: 17px;
  color: #cbd5f5;
  margin-bottom: 35px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn.outline {
  background: transparent;
  color: #00e0ff;
  border: 2px solid rgba(0,224,255,0.6);
}

.btn.outline:hover {
  background: rgba(0,224,255,0.1);
}

/* =========================================================
   RESPONSIVE CTA
   ========================================================= */
@media (max-width: 768px) {
  .cta-card {
    padding: 60px 30px;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}

/* =====================
   RESET & BASE
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
  background-color: #0f0f12;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =====================
   HEADER
===================== */
.header {
  background: rgba(15,15,18,0.95);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #00e0ff;
}

.logo span {
  color: #fff;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover,
.nav .btn:hover {
  color: #00e0ff;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;      /* teks di tengah */
}

.hero-content {
  text-align: center;      /* teks tetap center */
}


.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content h1 .highlight {
  background: linear-gradient(90deg, #0295a9, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

.hero-cta a.btn {
  margin-right: 1rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.hero-cta a.btn.primary {
  background: #38bdf8;
  color: #000;
}

.hero-cta a.btn.primary:hover {
  background: #00e0ff;
}

.hero-cta a.btn.outline {
  border: 2px solid #00e0ff;
  color: #00e0ff;
}

.hero-cta a.btn.outline:hover {
  background: #00e0ff;
  color: #fff;
}

/* Hero Image */
.hero-image img {
  max-width: 500px;
  width: 100%;
  animation: fadeInRight 1s ease forwards;
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image img {
    max-width: 80%;
  }

  .hero-cta {
    display: flex;
    flex-direction: column; /* tombol stack vertikal */
    gap: 20px;              /* jarak antar tombol lebih lega */
    margin: 0 auto;          /* center horizontal */
  }

  /* Hapus margin kanan tombol yang bikin rapat */
  .hero-cta a.btn {
    margin-right: 0;
    width: auto;
     min-width: 180px; 
  }

}

/* =====================
   SECTION
===================== */
.section {
  padding: 100px 0;
}

.section.light {
  background-color: #141418;
}

/* =====================
   GRID CARDS
===================== */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 40px;
}

.card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,224,255,0.2);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #00e0ff;
}

/* =====================
   FORM
===================== */
form input,
form textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
}

form textarea {
  resize: none;
  min-height: 140px;
}

form button {
  width: 100%;
}

/* =====================
   FOOTER
===================== */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: #0f0f12;
  color: #888;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* =====================
   MEDIA QUERIES
===================== */
@media(max-width: 768px){
  .nav ul {
    flex-direction: column;
    gap: 15px;
    display: none;
    background: rgba(15,15,18,0.95);
    position: absolute;
    top: 65px;
    right: 0;
    width: 200px;
    padding: 20px;
    border-radius: 12px;
  }

  .nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background-color: #123337;
  color: #0f0f12;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.lang-btn:hover {
  background-color: #00c0dd;
}

.lang-dropdown .lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0f0f12;
  border-radius: 5px;
  padding: 5px 0;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
}

.lang-dropdown:hover .lang-menu {
  display: block;
}

.lang-menu li {
  list-style: none;
}

.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.lang-menu li a:hover {
  background-color: #00e0ff;
  color: #0f0f12;
  border-radius: 5px;
}

.flag-icon {
  width: 18px;
  height: 12px;
}

/* WhatsApp sticky icon - kanan bawah */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;   /* <-- ubah dari left ke right */
  width: 60px;
  height: 60px;
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 224, 255, 0.3);
}

.whatsapp-icon:hover img {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 224, 255, 0.5);
}

/* Contact Section 2 Columns */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 50px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-info ul li a {
  color: #00e0ff;
  text-decoration: none;
}

.contact-info ul li a:hover {
  text-decoration: underline;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form,
  .contact-info {
    margin-bottom: 30px;
  }
}

/* ==============================
   SERVICES – MODERN UI
   ============================== */

/* Hero */
.services-hero {
  text-align: center;
}


/* Section header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header p {
  color: #cbd5f5;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 35px 30px;
  backdrop-filter: blur(12px);
  transition: all .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #00e0ff;
  box-shadow: 0 20px 40px rgba(0,224,255,.2);
}

.service-card h3 {
  color: #00e0ff;
  margin-bottom: 10px;
}

.service-card ul {
  margin-top: 15px;
  padding-left: 18px;
  color: #cbd5f5;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

.pricing-card {
  background: rgba(255,255,255,.04);
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
}

.pricing-card h2 {
  color: #00e0ff;
  margin: 15px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #cbd5f5;
}

.pricing-card ul li {
  margin-bottom: 8px;
}

/* Featured */
.pricing-card.featured {
  border-color: #00e0ff;
  box-shadow: 0 30px 60px rgba(0,224,255,.3);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #00e0ff;
  color: #020617;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
/* =========================
   PORTFOLIO SECTION
========================= */

.section-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto 50px;
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */
.portfolio-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,224,255,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* THUMBNAIL */
.portfolio-thumb {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
}

/* Gradient variants */
.portfolio-thumb.mobile {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

.portfolio-thumb.web {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.portfolio-thumb.infra {
  background: linear-gradient(135deg, #14b8a6, #22c55e);
}

.portfolio-thumb span {
  background: rgba(0,0,0,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* BODY */
.portfolio-body {
  padding: 25px;
}

.portfolio-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.portfolio-body p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}
/* =========================
   MODAL
========================= */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(5,8,20,0.8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: linear-gradient(135deg, #0a0f1f, #0f172a);
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 90%;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  position: relative;
}

.modal-content h2 {
  margin-bottom: 15px;
  color: #00e0ff;
}

.modal-content ul {
  margin-top: 20px;
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 8px;
  opacity: 0.9;
}

.modal .close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  opacity: 0.7;
}

.modal .close:hover {
  opacity: 1;
}

/* PORTFOLIO CTA */
.portfolio-cta {
  margin-top: 60px;
  text-align: center;
}

.portfolio-cta .btn.outline {
  background: transparent;
  color: #00e0ff;
  border: 1px solid #00e0ff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-cta .btn.outline:hover {
  background: #00e0ff;
  color: #000;
  box-shadow: 0 8px 30px rgba(0,224,255,.35);
}


.section-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(0,224,255,.12);
  color: #00e0ff;
}

.portfolio-meta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.portfolio-meta span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #aaa;
}
.services-cta {
  margin-top: 50px;
  text-align: center;
}

.solutions-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 140px 20px;
  position: relative;
  overflow: hidden;
}

.solutions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(56,189,248,.15), transparent 40%);
}

.hero-center {
  text-align: center;
  position: relative;
  z-index: 1;
}

.solutions-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
}

.solutions-hero h1 span {
  color: #38bdf8;
}

.solutions-hero p {
  max-width: 720px;
  margin: 24px auto 36px;
  font-size: 18px;
  color: #cbd5f5;
}
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: #64748b;
}
.solutions-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.solution-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.12);
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 16px;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-card ul li {
  font-size: 14px;
  color: #334155;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.solution-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: bold;
}

/* =====================
   ALL BUTTONS – PILLS
===================== */
.btn,
form button,
.hero-cta a.btn,
.cta-actions .btn,
.portfolio-cta .btn,
.btn.outline {
  border-radius: 50px; /* bentuk pill */
  padding: 10px 25px;  /* lebih seimbang */
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover effect */
.btn:hover,
form button:hover,
.hero-cta a.btn:hover,
.cta-actions .btn:hover,
.portfolio-cta .btn:hover,
.btn.outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,224,255,0.3);
}

.insight-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px;
}

.insight-badge {
  background: rgba(0, 224, 255, 0.85);
  color: #0f172a;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insight-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-body h3 {
  color: #00e0ff;
  margin-bottom: 12px;
  font-size: 18px;
}

.insight-body p {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 20px;
  line-height: 1.5;
}



.home-services {
  padding-top: 120px;
  padding-bottom: 120px;
}

.home-services .section-header {
  margin-bottom: 60px;
}

/* HOME – SOLUTIONS SECTION */
.home-solutions {
  padding: 120px 0;
}

.home-solutions .section-header {
  margin-bottom: 60px;
}

.home-solutions .solutions-grid {
  margin-bottom: 60px;
}

.home-solutions .services-cta {
  margin-top: 40px;
}


/* LOGO */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  display: block;           /* hindari inline spacing */
  height: 42px;
  width: auto;
}


.logo-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-img {
    height: 34px;
  }
}



/*PROPOSAL*/

.proposal-section {
  padding: 140px 20px 80px; /* TOP diperbesar */
  background: #0d0f14;
  color: #fff;
}

.proposal-section h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.proposal-section p {
  text-align: center;
  color: #cbd5f5;
  margin-bottom: 40px;
  font-size: 15px;
}

.proposal-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #1a1d25;
  color: #fff;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  outline: 2px solid #2dd4ff;
}

.btn-primary {
  padding: 14px;
  border-radius: 25px;
  background: linear-gradient(135deg, #2dd4ff, #38bdf8);
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.alert-success {
  background: #0f766e;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/*ICON PROPOSAL*/

.success-card {
  max-width: 520px;
  margin: 40px auto 0;
  background: #121622;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  animation: fadeUp .4s ease;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.success-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.success-card p {
  color: #cbd5f5;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-section {
  margin: 80px auto 60px;
  text-align: center;
}

.value-divider {
  width: 120px;
  height: 2px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, #141418, transparent);
  opacity: 0.7;
}



.value-card {
  max-width: 760px;
  margin: auto;
  padding: 24px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
}

.value-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.value-desc {
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.7;
}


.value-section {
  margin: 80px auto 60px;
  padding: 0 16px; /* penting untuk mobile */
  text-align: center;
}

/* CARD */
.value-card {
  max-width: 760px;
  width: 100%;
  margin: auto;
  padding: 24px 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
}


.value-divider {
  width: 120px;
  height: 2px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, #2dd4ff, transparent);
  opacity: 0.7;
}


.value-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.value-desc {
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.7;
}


/* ===============================
   FOOTER
================================ */
.footer {
  background: linear-gradient(180deg, #0b0d12, #0e1118);
  color: #cbd5e1;
  padding: 80px 20px 30px;
  font-size: 14px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-brand p {
  line-height: 1.7;
  color: #94a3b8;
  max-width: 320px;
}

/* LINKS */
.footer-links h4,
.footer-legal h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #2dd4ff;
  transform: translateX(4px);
}

/* SERVICES (TEXT ONLY) */
.footer-links li {
  color: #94a3b8;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 13px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 20px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}


.footer-logo.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-align: center;
}

.footer-logo.vertical img {
  width: 115px;
  height: auto;
}


.footer-logo.vertical h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* DESKRIPSI */
.footer-brand p {
  text-align: center;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-logo.vertical img {
    width: 92px;
  }

  .footer-logo.vertical h3 {
    font-size: 18px;
  }
}

/* ===============================
   FOOTER BASE
================================ */
.footer {
  background: linear-gradient(180deg, #0d0f14, #0a0c10);
  color: #cbd5f5;
  padding: 80px 20px 30px;
  font-size: 14px;
}

.footer a {
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer a:hover {
  color: #2dd4ff;
}

/* ===============================
   GRID
================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* ===============================
   BRAND
================================ */
.footer-brand p {
  max-width: 360px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-logo.vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo.vertical img {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(45,212,255,0.15));
}

.footer-logo.vertical h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* ===============================
   LINKS
================================ */
.footer-links h4,
.footer-legal h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
}

.footer-links h4::after,
.footer-legal h4::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #2dd4ff;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===============================
   FOOTER BOTTOM
================================ */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.85;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo.vertical img {
    width: 52px;
  }

  .footer-logo.vertical h3 {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}


/* SERVICES SECTION */
.home-services {
  padding: 100px 0;
  background: radial-gradient(circle at top, #020617, #000);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.section-header p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* CARD */
.service-card {
  position: relative;
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  transition: all .35s ease;
}

/* Glow border */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, #22d3ee, transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: .25;
  pointer-events: none;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(34,211,238,.25);
}

/* TITLE */
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #22d3ee;
  margin-bottom: 10px;
}

/* DESC */
.service-card p {
  font-size: 15px;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* POINTS */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #22d3ee;
  font-size: 18px;
  line-height: 1;
}

/* CTA */
.services-cta {
  margin-top: 60px;
  text-align: center;
}

.home-servicesvx {
  padding: 100px 0;
  background: radial-gradient(circle at top, #141418, #000);
}

/* LOCATION SECTION */
.section-location {
  background: linear-gradient(180deg, #020617, #000);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* INFO */
.location-info h2 {
  font-size: 2.2rem;
  margin: 15px 0;
}

.location-info p {
  color: #9ca3af;
  max-width: 520px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.contact-list li {
  margin-bottom: 18px;
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  color: #22d3ee;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-list span {
  color: #e5e7eb;
  line-height: 1.6;
}

/* MAP */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 16px;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   BASE CARD RESET (SEMUA CARD)
===================================================== */
.page-solutions .service-card,
.page-solutions .process-card,
.page-solutions .target-card,
.page-solutions .feature-card,
.page-solutions .cta-card {
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

/* =====================================================
   SERVICE CARD (SOLUTIONS LIST)
===================================================== */
.page-solutions .service-card {
  background: transparent;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
}

.page-solutions .service-card h3 {
  margin-bottom: 12px;
  color: #f8fafc;
}

.page-solutions .service-card p,
.page-solutions .service-card li {
  color: #cbd5f5;
}

/* Variasi tiap card */
.page-solutions .service-card:nth-child(1) {
  border-color: rgba(59,130,246,.35);
}

.page-solutions .service-card:nth-child(2) {
  border-color: rgba(14,165,233,.35);
}

.page-solutions .service-card:nth-child(3) {
  border-color: rgba(99,102,241,.35);
}

.page-solutions .service-card:nth-child(4) {
  border-color: rgba(56,189,248,.35);
}

/* Hover */
.page-solutions .service-card:hover {
  transform: translateY(-6px);
}

/* =====================================================
   FEATURE CARD (WHY CHOOSE)
===================================================== */
.page-solutions .feature-card {
  background: rgba(255,255,255,.035);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.07);
  color: #e5e7eb;
  backdrop-filter: blur(6px);
}

/* Accent bar kiri */
.page-solutions .feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(to bottom, #3b82f6, #38bdf8);
}

/* Variasi accent */
.page-solutions .feature-card:nth-child(2)::before {
  background: linear-gradient(to bottom, #0ea5e9, #22d3ee);
}

.page-solutions .feature-card:nth-child(3)::before {
  background: linear-gradient(to bottom, #6366f1, #818cf8);
}

.page-solutions .feature-card:nth-child(4)::before {
  background: linear-gradient(to bottom, #38bdf8, #7dd3fc);
}

.page-solutions .feature-card:hover {
  transform: translateY(-4px);
}

/* =====================================================
   PROCESS CARD (HOW IT WORKS)
===================================================== */
.page-solutions .process-card {
  background: rgba(255,255,255,.035);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.07);
  color: #e5e7eb;
}

/* Gradient beda tiap card */
.page-solutions .process-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(59,130,246,.12), transparent);
}

.page-solutions .process-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(14,165,233,.12), transparent);
}

.page-solutions .process-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(99,102,241,.12), transparent);
}

.page-solutions .process-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(56,189,248,.12), transparent);
}

/* =====================================================
   TARGET CARD (TARGET CLIENT)
===================================================== */
.page-solutions .target-card {
  background: rgba(255,255,255,.035);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.07);
  color: #e5e7eb;
}

/* Variasi border */
.page-solutions .target-card:nth-child(1) {
  border-color: rgba(59,130,246,.25);
}

.page-solutions .target-card:nth-child(2) {
  border-color: rgba(14,165,233,.25);
}

.page-solutions .target-card:nth-child(3) {
  border-color: rgba(99,102,241,.25);
}

.page-solutions .target-card:nth-child(4) {
  border-color: rgba(56,189,248,.25);
}

/* =====================================================
   CTA CARD
===================================================== */
.page-solutions .cta-card {
  max-width: 880px;
  margin: auto;
  text-align: center;
  padding: 72px 56px;
  border-radius: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}

.page-solutions .cta-card h2 {
  color: #f8fafc;
}

.page-solutions .cta-card p {
  color: #cbd5f5;
}

/* CTA button aman dari overlay */
.page-solutions .cta-actions a {
  position: relative;
  z-index: 5;
}


/* =====================
   SOLUTION CARD
===================== */
.page-solutions .solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;

  background: rgba(255,255,255,.025);
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  transition: .3s ease;
}

.page-solutions .solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,.4);
}

/* TITLE */
.page-solutions .solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #f8fafc;
}

/* DESCRIPTION */
.page-solutions .solution-desc {
  color: #cbd5f5;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* POINTS */
.page-solutions .solution-points {
  margin-top: auto;
  padding-left: 18px;
}

.page-solutions .solution-points li {
  color: #e5e7eb;
  margin-bottom: 8px;
  line-height: 1.5;
}
/* =====================
   SOLUTIONS GRID
===================== */
.page-solutions .solutions-grid {
  display: grid;
  gap: 32px;

  /* default desktop */
  grid-template-columns: repeat(3, 1fr);
}

/* Tablet / laptop kecil → 2 kolom */
@media (max-width: 1200px) {
  .page-solutions .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile → 1 kolom */
@media (max-width: 640px) {
  .page-solutions .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.portfolio-card {
  background: #1c1c1c;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: .3s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

/* THUMB */
.portfolio-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-thumb span {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* BODY */
.portfolio-body {
  padding: 22px;
}

.portfolio-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.portfolio-link {
  color: #4f7cff;
  font-weight: 600;
}

/* DETAIL */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 20px;
  margin: 40px 0;
}

.portfolio-gallery img {
  width: 100%;
  border-radius: 14px;
}

/* ===============================
   PORTFOLIO GRID
================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* ===============================
   PORTFOLIO CARD
================================ */
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0b1220, #020617);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #e5e7eb;
  transition: transform .35s ease, box-shadow .35s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,.45);
}

/* ===============================
   THUMBNAIL (CARD PORTRAIT)
================================ */
.portfolio-thumb {
  position: relative;
  aspect-ratio: 3 / 4;   /* PORTRAIT RAPI, TIDAK TERLALU TINGGI */
  max-height: 360px;
  background: radial-gradient(circle at top, #020617, #000);
  overflow: hidden;
}


/* GAMBAR TETAP PROPORSIONAL */
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ISI CARD */
  object-position: top;    /* APLIKASI TIDAK TERPOTONG HEAD */
  transition: transform .45s ease;
}


/* HOVER IMAGE */
.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.04);
}


/* ===============================
   BADGE TYPE
================================ */
.portfolio-thumb span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 999px;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(6px);
  color: #fff;
  text-transform: uppercase;
}

/* WARNA TYPE */
.portfolio-thumb.mobile span {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.portfolio-thumb.web span {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

.portfolio-thumb.system span {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.portfolio-thumb.infra span {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}

/* ===============================
   PORTFOLIO BODY
================================ */
.portfolio-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.portfolio-body h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.portfolio-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* LINK */
.portfolio-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #38bdf8;
  transition: color .3s ease;
}

.portfolio-card:hover .portfolio-link {
  color: #60a5fa;
}

/* ===============================
   CTA
================================ */
.portfolio-cta {
  margin-top: 80px;
  padding: 48px 40px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #020617, #0b1220);
}

.portfolio-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.portfolio-cta p {
  color: #94a3b8;
  margin-bottom: 24px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .portfolio-thumb {
    height: 360px;
  }

  .portfolio-body h3 {
    font-size: 17px;
  }

  .portfolio-cta {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {

  .portfolio-thumb {
    height: 320px;
  }
}

/* ================= BASE DETAIL ================= */
.portfolio-detail {
  padding: 80px 0;
}

/* ================= HEADER ================= */
.portfolio-detail .portfolio-header {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.portfolio-detail .portfolio-title {
  text-align: center;
}

.portfolio-detail .portfolio-title h1 {
  font-size: 34px;
  margin: 0;
}

.portfolio-detail .portfolio-subtitle {
  color: #94a3b8;
  margin-top: 6px;
}

.portfolio-detail .portfolio-type {
  font-size: 12px;
  opacity: .6;
  margin-top: 6px;
}

/* ================= GALLERY DESKTOP ================= */
.portfolio-detail .portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.portfolio-detail .gallery-card {
  aspect-ratio: 9 / 16;
  padding: 14px;
  border-radius: 22px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(148,163,184,.12),
    0 14px 40px rgba(0,0,0,.45);
}

.portfolio-detail .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  cursor: zoom-in;
}

/* ================= CONTENT ================= */
.portfolio-detail .portfolio-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.portfolio-detail .portfolio-desc p {
  color: #94a3b8;
  line-height: 1.8;
}

/* ================= FEATURES ================= */
.portfolio-detail .portfolio-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-detail .portfolio-features .feature-list li {
  display: flex;
  flex-direction: row;        /* ⬅️ KUNCI */
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.portfolio-detail .feature-dot {
  color: #22d3ee;
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
  margin-top: 2px;
}

.portfolio-detail .feature-text {
  display: flex;
  flex-direction: column;
}

.portfolio-detail .feature-text strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
}

.portfolio-detail .feature-text span {
  color: #cbd5f5;
  font-size: 14px;
  line-height: 1.6;
}


/* ================= CTA ================= */
.portfolio-detail .portfolio-cta {
  text-align: center;
  margin-top: 70px;
}

/* ================= SWIPE HINT ================= */
.portfolio-detail .swipe-hint {
  display: none;
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .portfolio-detail .swipe-hint {
    display: block;
  }

  .portfolio-detail .portfolio-gallery {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }

  .portfolio-detail .gallery-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    aspect-ratio: 3 / 4;
  }

  .portfolio-detail .portfolio-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portfolio-detail .mobile-back-bottom {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
}


/* ================= MODERN BACK BUTTON ================= */
.portfolio-detail .back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, #0f172a, #020617);
  color: #f8fafc;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  box-shadow:
    0 8px 24px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(148,163,184,.15);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

/* HOVER */
.portfolio-detail .back-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(148,163,184,.25);
}

/* ACTIVE (TOUCH FEEL) */
.portfolio-detail .back-btn:active {
  transform: scale(.96);
}

/* MOBILE AREA */
.portfolio-detail .mobile-back-bottom {
  margin-top: 48px;
  text-align: center;
}


/* ================= MOBILE BACK ================= */
.portfolio-detail .mobile-back-bottom {
  display: none;
}

/* TAMPILKAN HANYA DI MOBILE */
@media (max-width: 768px) {
  .portfolio-detail .mobile-back-bottom {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
}


/* ================= MODAL (GLOBAL – JANGAN DISCOPE) ================= */
.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2,6,23,.92);
  z-index: 9999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
}

.image-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

/* LIST */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM */
.feature-list li {
  display: flex;                 /* ⬅️ KUNCI UTAMA */
  align-items: flex-start;       /* sejajar di atas */
  gap: 12px;                     /* jarak icon & teks */
  margin-bottom: 16px;
}

/* ICON */
.feature-dot {
  color: #22d3ee;
  font-size: 18px;
  line-height: 1.4;
  flex-shrink: 0;                /* ⬅️ jangan mengecil */
  margin-top: 2px;               /* sejajarkan dengan judul */
}

/* TEXT */
.feature-text {
  display: flex;
  flex-direction: column;
}

/* JUDUL FITUR */
.feature-text strong {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

/* DESKRIPSI */
.feature-text span {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}



.portfolio-detail .portfolio-features {
  background: linear-gradient(
    180deg,
    rgba(15,23,42,.9),
    rgba(2,6,23,.9)
  );
  padding: 26px 24px;
  border-radius: 20px;

  box-shadow:
    0 0 0 1px rgba(148,163,184,.12),
    0 18px 50px rgba(0,0,0,.45);
}


/* MOBILE SLIDE INDICATOR */
@media (max-width: 768px) {
  .portfolio-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 10px; /* jarak ke indikator */
  }

  .gallery-card {
    min-width: 85%;
    scroll-snap-align: center;
  }

  .gallery-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;   /* 🔥 jarak dari gambar */
    margin-bottom: 6px; /* biar napas */
  }

  .gallery-indicator span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #67e8f9; /* cyan-300 */
    opacity: 0.35;
    transition: all 0.25s ease;
  }

  .gallery-indicator span.active {
    opacity: 1;
    background: #22d3ee; /* cyan-400 */
    transform: scale(1.25);
  }
}



.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 900;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding-top: 120px;
  padding-bottom: 60px;

  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}

.service-modal.show {
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

/* CONTENT */
.service-modal-content {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  width: 100%;
  max-width: 880px;
  max-height: calc(100vh - 180px);

  overflow-y: auto;
  padding: 36px 40px;
  border-radius: 20px;

  position: relative;
}


/* TITLE */
.service-modal-content h2 {
  color: #ffffff;
  margin-bottom: 8px;
}

/* DESC */
.service-modal-content p {
  color: #94a3b8;
}

/* SECTION */
.modal-section {
  margin-top: 28px;
}

.modal-section h4 {
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 10px;
}

/* LIST */
.modal-section ul {
  list-style: none;
  padding-left: 0;
}

.modal-section li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #e5e7eb;
}

/* TECH CATEGORY */
#modalTech strong {
  display: block;
  margin-top: 16px;
  color: #22d3ee;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
}

.modal-close:hover {
  color: #ffffff;
}

.service-detail-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 999px;

  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: #020617;
  font-weight: 600;
  font-size: 14px;

  border: none;
  cursor: pointer;

  transition: 
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.service-detail-link .arrow {
  transition: transform .25s ease;
  font-size: 16px;
}

/* DESKTOP HOVER */
.service-detail-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14,165,233,.35);
}

.service-detail-link:hover .arrow {
  transform: translateX(4px);
}

/* MOBILE TAP FEEDBACK */
.service-detail-link:active {
  transform: scale(.97);
}


/* MOBILE */
@media (max-width: 768px) {

  .service-modal {
    padding: 16px;
  }

  .service-modal-content {
    margin-top: 72px;
    max-height: 85vh;
    border-radius: 18px;

    /* 🔥 PENTING */
    padding: 56px 18px 20px; /* atas lebih besar untuk close */
    position: relative;
  }

  /* CLOSE BUTTON */
  .modal-close {
    top: 14px;
    right: 14px;
    font-size: 28px;
    z-index: 2;
  }

  /* JUDUL */
  #modalTitle {
    margin-top: 0;
    padding-right: 42px; /* ruang icon close */
    font-size: 20px;
    line-height: 1.3;
  }

}


/* INSIGHT CARD */
.insight-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* THUMBNAIL */
.insight-thumb {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* OVERLAY GRADIENT */
.insight-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.65)
  );
}

/* BADGE */
.insight-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(30,136,229,0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* BODY */
.insight-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* TITLE */
.insight-body h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}

/* EXCERPT */
.insight-body p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* READ MORE */
.insight-body .btn {
  margin-top: 12px;
  align-self: flex-start;
}


.insight-detail-page {
  padding-top: 110px; 
}

.insight-header {
  margin-bottom: 20px;
}

.insight-header .insight-badge {
  display: inline-block;
  margin-bottom: 12px;
}

.insight-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

.insight-main {
  background: transparent;
}

.insight-header h1 {
margin-bottom: 14px;
  color: #fff;
  font-size: 36px;
  line-height: 1.3;
}

.insight-cover {
  width: 100%;
  border-radius: 18px;
  margin: 30px 0;
}

.insight-content {
  color: rgba(255,255,255,.85);
  line-height: 1.9;
}

.insight-sidebar .sidebar-box {
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

.adsense {
  min-height: 250px;
  background: rgba(255,255,255,.05);
  border-radius: 12px;
}

.insight-excerpt {
  font-size: 18px;
  opacity: .85;
  margin: 24px 0 32px;
}

.insight-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
}

.share-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform .2s ease, opacity .2s ease;
}

.share-icon:hover {
  transform: translateY(-2px);
  opacity: .85;
}

.share-icon.wa { background: #25D366; }
.share-icon.fb { background: #1877F2; }
.share-icon.li { background: #0A66C2; }
.share-icon.x  { background: #000; }

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 12px;
}

.sidebar-list a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}

.sidebar-list a:hover {
  color: #fff;
  text-decoration: underline;
}


@media (max-width: 992px) {
  .insight-layout {
    grid-template-columns: 1fr;
  }
}


/* === EDITORIAL CONTENT === */
.editorial h2 {
  margin-top: 40px;      /* jarak dari paragraf sebelumnya */
  margin-bottom: 14px;   /* jarak ke paragraf setelahnya */
  font-size: 28px;
  line-height: 1.4;
  color: #fff;
}

/* paragraf normal */
.editorial p {
  margin: 0 0 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.85);
}

/* paragraf tepat setelah heading */
.editorial h2 + p {
  margin-top: 0;
}

/* antar paragraf */
.editorial p + p {
  margin-top: 0;
}

/* quote */
.editorial blockquote {
  margin: 32px 0;
  padding-left: 20px;
  border-left: 4px solid #3b82f6;
  font-style: italic;
  opacity: .9;
}
.insight-list {
  margin: 1.2rem 0 1.6rem;
  padding-left: 1.2rem;
}

.insight-list li {
  margin-bottom: .5rem;
  line-height: 1.6;
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-image {
    aspect-ratio: 4 / 3; /* lebih tinggi dikit tapi aman */
  }
}
.insight-card h3 a {
  color: #f1f5f9;   /* soft white */
}

.insight-card h3 a:hover {
  color: #38bdf8;   /* accent biru (opsional) */
}



/* =====================================
   PORTFOLIO FINAL (ISOLATED)
===================================== */

.pf-section {
  background: transparent;
}

/* GRID */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* =====================================
   CARD
===================================== */
.pf-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #e5e7eb;

  background: linear-gradient(
    180deg,
    rgba(15,23,42,.92),
    rgba(2,6,23,.96)
  );

  box-shadow:
    inset 0 0 0 1px rgba(148,163,184,.08),
    0 20px 45px rgba(0,0,0,.45);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(148,163,184,.16),
    0 30px 70px rgba(0,0,0,.65);
}

/* =====================================
   THUMB (HERO IMAGE)
===================================== */
.pf-thumb {
  position: relative;
 aspect-ratio: 5 / 4;     /* SESUAI 1500x1200 */
  max-height: 300px;
  overflow: hidden;

  background: radial-gradient(
    circle at top,
    rgba(30,41,59,.6),
    rgba(2,6,23,1)
  );
}

.pf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(1.05) contrast(1.05);
  transition:
    transform .6s ease,
    filter .6s ease;
}

.pf-card:hover .pf-thumb img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.1);
}

/* OVERLAY */
.pf-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,6,23,.15),
    rgba(2,6,23,.7)
  );
}

/* =====================================
   BADGE
===================================== */
.pf-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
  border-radius: 999px;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;

  background: rgba(2,6,23,.55);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

/* TYPE COLORS */
.pf-thumb.mobile .pf-badge {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.pf-thumb.web .pf-badge {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

.pf-thumb.system .pf-badge {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.pf-thumb.infra .pf-badge {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}

/* =====================================
   BODY
===================================== */
.pf-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-body h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
}

.pf-body p {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca3af;
  margin: 0;
}

/* LINK */
.pf-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #7dd3fc;
  opacity: .85;
  transition:
    opacity .3s ease,
    transform .3s ease;
}

.pf-card:hover .pf-link {
  opacity: 1;
  transform: translateX(4px);
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
  .pf-thumb {
    aspect-ratio: 3 / 4;
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .pf-thumb {
    aspect-ratio: 1 / 1.3;
    max-height: 280px;
  }
}

/* ================================
   SERVICES V2 (Scoped CSS)
================================ */

.services-v2 {
  padding: 80px 0;
}

/* Header */
.services-v2 .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.services-v2 .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-v2 .section-header p {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.7;
}

/* Grid */
.services-v2 .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Card */
.services-v2 .service-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s ease;
}

.services-v2 .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,0.5);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

/* Image */
.services-v2 .service-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}

.services-v2 .service-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.services-v2 .service-card:hover .service-image img {
  transform: scale(1.05);
}

/* Title */
.services-v2 .service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 10px;
}

/* Description */
.services-v2 .service-card p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Features */
.services-v2 .service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.services-v2 .service-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.services-v2 .service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #38bdf8;
  font-size: 1.2rem;
  line-height: 1;
}

/* CTA */
.services-v2 .service-detail-link {
  margin-top: auto;
  align-self: flex-start;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #020617;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-v2 .service-detail-link:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(56,189,248,0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .services-v2 {
    padding: 60px 0;
  }

  .services-v2 .section-header h2 {
    font-size: 1.8rem;
  }

  .services-v2 .service-image img {
    height: 160px;
  }
}
/* ================================
   FADE ON SCROLL - SERVICES V2
================================ */
/* ===== Fade on Scroll (Services Only) ===== */

/* state awal */
.services-v2 .service-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

/* saat terlihat */
.services-v2 .service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   PORTFOLIO FADE ON SCROLL
================================ */

/* state awal */
.pf-section .pf-card {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* saat terlihat */
.pf-section .pf-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   INSIGHT FADE ON SCROLL
================================ */

/* state awal */
.insight-grid .insight-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* saat terlihat */
.insight-grid .insight-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   ABOUT - ZOOM FADE ANIMATION
================================ */

/* state awal */
.home-servicesvx .section-header {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

/* saat terlihat */
.home-servicesvx .section-header.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ===============================
   HERO - FADE ZOOM SEQUENCE
================================ */

.solutions-hero .badge,
.solutions-hero h1,
.solutions-hero p {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.solutions-hero.is-visible .badge {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}

.solutions-hero.is-visible h1 {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.25s;
}

.solutions-hero.is-visible p {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

/* ===============================
   ABOUT CONTENT - SMOOTH REVEAL
================================ */

.about-grid > div {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* kiri */
.about-grid > div:first-child {
  transform: translateX(-18px);
}

/* kanan */
.about-grid > div:last-child {
  transform: translateX(18px);
}

.about-grid > div.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* mission list */
.mission-list li {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mission-list li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   HERO SMOOTH INTRO
================================ */

.hero-content > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ketika aktif */
.hero-content.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delay */
.hero-content.is-visible h1 {
  transition-delay: 0.1s;
}

.hero-content.is-visible p {
  transition-delay: 0.25s;
}

.hero-content.is-visible .hero-cta {
  transition-delay: 0.4s;
}

/* ===============================
   PRICING SMOOTH REVEAL
================================ */

.pricing-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.pricing-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* featured sedikit lebih hidup */
.pricing-card.featured {
  transform: translateY(28px) scale(0.97);
}

.pricing-card.featured.is-visible {
  transform: translateY(0) scale(1);
}

/* hover tetap enak */
.pricing-card:hover {
  transform: translateY(-6px);
}

/* ===============================
   GLOBAL SOLUTION ANIMATION
================================ */

/* default hidden */
.anim-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* target client: lebih soft */
.target-card.anim-reveal {
  transform: translateY(14px) scale(0.97);
}

.target-card.anim-reveal.is-visible {
  transform: translateY(0) scale(1);
}

/* CTA khusus */
.anim-cta {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-cta.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .anim-reveal,
  .anim-cta {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ===============================
   VALUE CLOSING ANIMATION
================================ */

/* divider */
.anim-divider {
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition:
    opacity 0.8s cubic-bezier(0.22,1,0.36,1),
    transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.anim-divider.is-visible {
  opacity: 1;
  transform: scaleX(1);
}

/* card */
.anim-value {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s cubic-bezier(0.22,1,0.36,1),
    transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.anim-value.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* title & desc stagger */
.anim-value-item {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s cubic-bezier(0.22,1,0.36,1),
    transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.anim-value-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.case-study-home {}
.case-study-grid { display:grid; gap:24px; }
.case-study-card { opacity:0; transform:translateY(30px); }
.case-study-card.is-visible { opacity:1; transform:none; }

.case-study-metrics {
  display:flex;
  gap:16px;
  margin:12px 0;
}
.case-study-metrics li strong {
  font-size:1.2rem;
  display:block;
}

