/* ============================
   GLOBAL RESET
============================ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body{
  background:#0b0f1a;
  color:#fff;
  overflow-x:hidden;
}
topbar
a{
  text-decoration:none;
  color:white;
}

/* ============================
   TOPBAR
============================ */
.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:70px;
  padding:0 40px;
  background:rgba(10,15,30,0.9);
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* ================= LOGO FIX ================= */

.logo {
    display: flex;
    align-items: center;
    width: auto;           /* Biarkan lebar fleksibel */
    overflow: visible;     /* Pastikan tidak ada yang terpotong */
    cursor: pointer;
    gap: 12px;             /* Jarak antara Gambar Logo dan Tulisan */
}

.logo img {
    height: 40px;          /* Atur tinggi logo */
    width: auto;           /* Lebar menyesuaikan rasio */
    flex-shrink: 0;        /* PENTING: Mencegah gambar tergencet/mengecil */
}

/* Ini kunci agar tulisan tidak turun ke bawah */
.brand-text {
    white-space: nowrap;   /* MEMAKSA tulisan tetap 1 baris */
    color: #ffffff;        /* Warna putih */
    font-size: 18px;       /* Ukuran font */
    font-weight: 600;      /* Ketebalan font */
    line-height: 1;        /* Merapikan jarak baris */
}

.logo span {
    white-space: nowrap;  /* Memaksa teks tetap satu baris (tidak turun ke bawah) */
    color: #ffffff;       /* Pastikan warna teks terlihat di background gelap */
    font-weight: bold;    /* Opsi: menebalkan huruf */
    font-size: 18px;      /* Opsi: ukuran huruf */
}

/* Saat scroll */
.topbar.shrink .logo img {
    height: 32px;
}

/* ===== Mobile lock ===== */
@media (max-width: 768px) {
    .logo {
        max-width: 140px;
    }

    .logo img {
        height: 34px;
    }

    .topbar.shrink .logo img {
        height: 28px;
    }
}


/* ============================
   DESKTOP MENU
============================ */
#mainMenu{
  display:flex;
  gap:30px;
}

#mainMenu a{
  font-size:15px;
  font-weight:500;
  opacity:0.85;
  transition:0.3s;
}

#mainMenu a:hover{
  opacity:1;
  color:#00ffe7;
}

/* ============================
   HAMBURGER
============================ */
.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:white;
  border-radius:3px;
}

/* ============================
   SECTIONS
============================ */
.section{
  min-height:100vh;
  padding:120px 8% 80px;
  display:none;
}

.section.active{
  display:block;
}

h1,h2{
  font-size:48px;
  margin-bottom:20px;
}

.subtitle{
  color:#aaa;
  max-width:700px;
  margin-bottom:50px;
}

/* ============================
   SERVICE GRID
============================ */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.service-card{
  background:#12182a;
  border-radius:16px;
  padding:30px;
  text-align:center;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.05);
}

.service-card i{
  font-size:40px;
  margin-bottom:15px;
  color:#00ffe7;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 40px rgba(0,255,231,0.2);
}

/* ============================
   PRICING
============================ */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:40px;
}

.pricing-card{
  background:#12182a;
  padding:40px;
  border-radius:20px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.05);
}

.pricing-card.highlight{
  border:2px solid #00ffe7;
  box-shadow:0 0 40px rgba(0,255,231,0.3);
}

.pricing-card ul{
  list-style:none;
  margin:30px 0;
}

.pricing-card li{
  margin:10px 0;
  color:#ccc;
}

.pricing-btn{
  padding:12px 28px;
  border:none;
  background:linear-gradient(90deg,#00ffe7,#7f5bff);
  border-radius:30px;
  color:#000;
  font-weight:600;
  cursor:pointer;
}

/* ============================
   PORTFOLIO
============================ */
.case-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.case-card{
  background:#12182a;
  padding:30px;
  border-radius:20px;
}

/* ============================
   HOW WE WORK
============================ */
.workflow-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.workflow-step{
  background:#12182a;
  padding:30px;
  border-radius:20px;
}

.step-number{
  font-size:32px;
  color:#00ffe7;
  font-weight:700;
}

/* ============================
   MOBILE
============================ */
@media(max-width:900px){

  h1,h2{
    font-size:32px;
  }

.topbar {
    height: 90px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: height 0.3s ease, padding 0.3s ease;
}

  #mainMenu{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#0b0f1a;
    flex-direction:column;
    align-items:center;
    display:none;
    padding:30px 0;
  }

  #mainMenu.active{
    display:flex;
  }

  #mainMenu a{
    padding:15px 0;
    font-size:18px;
  }

  .hamburger{
    display:flex;
  }
}

/* ===============================
   CONTACT FORM
================================ */

.contact-form {
  max-width: 600px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-form input {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 15px;
  outline: none;
  transition: .3s;
}

.contact-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-form input:focus {
  border-color: #00ffe7;
  box-shadow: 0 0 12px rgba(0,255,231,0.4);
}

/* Submit Button */
.contact-form button {
  margin-top: 15px;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg,#00ffe7,#7f5bff);
  color: black;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,255,231,.6);
}

/* Result Message */
#formResult {
  margin-top: 15px;
  font-size: 14px;
  color: #00ffe7;
}
.form-result{
  margin-top:15px;
  padding:12px;
  border-radius:8px;
  background:rgba(0,255,213,.08);
  color:#8fffd5;
  font-size:14px;
}

/* ===== Footer ===== */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;logo 
  z-index: 999;
  pointer-events: none;
}

.footer-powered {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #8aa4b5;
  opacity: 0.55;
  padding: 12px 0;
  letter-spacing: 0.4px;
  font-weight: 500;
  pointer-events: auto;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-powered {
    font-size: 11px;
    padding: 8px 0;
  }
}

