/* RESET */
body {
  margin:0;
  font-family:'Inter', sans-serif;
  background:#f8fafc;
  color:#1e293b;
  padding-top:110px;
}
a {
text-decoration:none;
}

/* CONTAINER */
.container {
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= NAVBAR ================= */
.nav {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  padding:15px 0;
  background:#fff;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  border-bottom:1px solid #e2e8f0;
  z-index: 999;
  transition: 0.3s;
}

.nav.full {
  top: 0;
}

.nav.scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.95);
}

/* inner */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
.logo img {
  height:40px;
}

/* menu */
.menu {
  display:flex;
  align-items:center;
}

.menu a {
  margin-left:20px;
  text-decoration:none;
  color:#1e293b;
  font-weight:500;
  position:relative;
}

/* hover underline */
.menu a::after {
  content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  width:0%;
  height:2px;
  background:#4f46e5;
  transition:0.3s;
}

.menu a:hover::after {
  width:100%;
}

/* CTA */
.btn-nav {
  margin-left:20px;
  background:#4f46e5;
  color:#fff;
  padding:8px 16px;
  border-radius:8px;
  text-decoration:none;
  transition:0.3s;
}

.btn-nav:hover {
  background:#4338ca;
}

/* ================= HERO ================= */
.hero-image {
  position: relative;
  background: url('../img/hero.jpg') center/cover no-repeat;
  min-height: 80vh;

  display:flex;
  align-items:center;
}

.heropricing {
  position: relative;
  min-height: 45vh;

  display:flex;
  align-items:center;
}
.heropricing p {
  color:#e2e8f0;
  margin-top:10px;
  font-size:20px;
}
.heropricing h1 {
  font-size:35px;
  color:#fff;
  text-shadow:0 5px 20px rgba(0,0,0,0.6);
}

/* overlay */
.hero-image::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* content */
.hero-content {
  position:relative;
  z-index:1;
  text-align:center;
  width:100%;
}

.hero h1 {
  font-size:48px;
  color:#fff;
  text-shadow:0 5px 20px rgba(0,0,0,0.6);
}

.hero p {
  color:#e2e8f0;
  margin-top:10px;
  font-size:20px;
}

/* button */
.btn {
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:#4f46e5;
  border-radius:8px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.btn:hover {
  background:#4338ca;
}

/* ================= TOPBAR ================= */
.topbar {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:40px;

  background:#0f172a;
  color:#fff;

  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 5%;

  z-index:1000;
  transition:0.3s;
}

.topbar-right {
  width: 90%;
  overflow: hidden;
}


.topbar.hide {
  transform: translateY(-100%);
}

/* ================= TABS ================= */
.tabs {
  margin-top:60px;
  text-align:center;
}

.tab-buttons {
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.tab-btn {
  padding:10px 20px;
  border:none;
  background:#e2e8f0;
  border-radius:8px;
  cursor:pointer;
  font-weight:500;
  transition:0.3s;
}

.tab-btn.active {
  background:#4f46e5;
  color:#fff;
}

.tab-content {
  display:none;
  margin-top:20px;
  padding:20px;
}

.tab-content.active {
  display:block;
}

/* ================= GRID ================= */
.grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  margin-top:20px;
}

.grid-item {
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e2e8f0;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
  text-align:center;
}

.grid-item img {
  width:100%;
  height:150px;
  object-fit:cover;
}

.grid-item p {
  padding:10px;
  font-weight:500;
}

.grid-item:hover {
  transform: translateY(-5px);
}

/* ================= PRICING ================= */
.pricing {
  display:flex;
  gap:20px;
  justify-content:center;
  margin-top:50px;
  flex-wrap:wrap;
}

.price-card {
  background:#fff;
  padding:30px;
  border-radius:12px;
  text-align:center;
  width:250px;
  border:1px solid #e2e8f0;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* ================= DRAWER ================= */
.overlay {
  position: fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:998;
}

.overlay.active {
  opacity:1;
  visibility:visible;
}

.drawer {
  position: fixed;
  top:0;
  right:0;
  width:260px;
  height:100%;

  background:#fff;
  box-shadow:-10px 0 30px rgba(0,0,0,0.1);

  padding:20px;
  z-index:999;

  transform: translateX(100%);
  transition:0.4s cubic-bezier(.77,0,.18,1);
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.drawer-header img {
  height:35px;
}

.drawer a {
  display:block;
  margin:12px 0;
  text-decoration:none;
  color:#1e293b;
  font-weight:500;
  transition:0.3s;
}

.drawer a:hover {
  color:#4f46e5;
  transform:translateX(5px);
}

/* 2 COLUMN SECTION */
.section-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 80px;
}

/* gambar */
.col-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* text */
.col-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.col-text p {
  color: #64748b;
  margin-bottom: 15px;
}

.col-text ul {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}

.col-text ul li {
  margin-bottom: 8px;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-top: 80px;
}

/* GRID */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.testi-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

/* TEXT */
.testi-card p {
  font-style: italic;
  color: #475569;
}

/* USER */
.testi-user {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testi-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.testi-user span {
  font-size: 14px;
  color: #64748b;
}

/* swiper spacing */
.testiSwiper {
  margin-top: 30px;
}

/* slide center */
.swiper-slide {
  display: flex;
  justify-content: center;
}

/* card tetap sama */
.testi-card {
  max-width: 350px;
  width: 100%;
}

/* pagination bullet */
.swiper-pagination-bullet {
  background: #cbd5f5;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #4f46e5;
}

/* ================= SEO ================= */

.seo-content {
  margin-top: 60px;
  line-height: 1.7;
}

.seo-content h2 {
  margin-top: 20px;
  font-size: 24px;
}

.seo-content p {
  color: #475569;
}

/* ================= FOOTER ================= */
.footer {
  background:#0f172a;
  color:#cbd5f5;
  margin-top:80px;
  padding:50px 0 20px;
}

.footer-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
}

.footer h4 {
  color:#fff;
  margin-bottom:10px;
}

.footer a {
  color:#cbd5f5;
  text-decoration:none;
}

.footer a:hover {
  color:#fff;
}

.footer-bottom {
  text-align:center;
  margin-top:30px;
  padding-top:15px;
  border-top:1px solid #1e293b;
  font-size:14px;
}

.footer-brand img {
  height:15%;
  margin-bottom:10px;
}
.footer-email {
  text-decoration: none;
  transition: 0.3s;
}

.footer-email:hover {
  color: #fff;
}

/* CTA FOOTER */
.cta-footer {
  margin-top: 80px;
}

.cta-box {
  background: linear-gradient(135deg,#4f46e5,#7c3aed);
  border-radius: 20px;
  padding: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  color: #fff;
}

/* text */
.cta-text h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.cta-text p {
  opacity: 0.9;
}

/* button WA */
.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 20px;
  left: 20px;

  width: 55px;
  height: 55px;

  background: #25D366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 26px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  z-index: 999;
  transition: 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}
img {
  pointer-events: none;
  user-select: none;
}
.protect-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}
/* ================= RESPONSIVE ================= */
@media(max-width:768px){
body {
  padding-top:70px;
}

  .menu {
    display:none;
  }

  .hamburger {
    display:block;
  }

  .grid {
    grid-template-columns:repeat(2,1fr);
  }

  .topbar {
    display:none;
  }
  .nav {
  top:0;
  background:#fff;
  }
  .section-2col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .col-text ul {
    text-align: left;
  }
  .testimoni-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    text-align: center;
    gap: 20px;
  }
  .client-track {
    animation: scrollClient 15s linear infinite;
  }
}

@media(max-width:480px){
  .grid {
    grid-template-columns:1fr;
  }
}
.highlight {
  border:2px solid #2563eb;
  transform:scale(1.05);
}
.wa-float {
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:white;
  padding:15px;
  border-radius:50%;
  font-size:22px;
  animation:float 2s infinite;
}

@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-5px); }
}
.pricing {
  display:flex;
  gap:20px;
  justify-content:center;
  margin-top:40px;
  flex-wrap:wrap;
}

.price-card {
  background:#fff;
  padding:25px;
  border-radius:12px;
  width:280px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.price-card h3 {
  color:#0f172a;
}

.price {
  font-size:28px;
  color:#2563eb;
  margin:15px 0;
}

.price-card ul {
  list-style:none;
  padding:0;
}

.price-card ul li {
  margin:8px 0;
}

.highlight {
  border:2px solid #2563eb;
  transform:scale(1.05);
}

.cta-box {
  text-align:center;
  margin-top:60px;
  padding:40px;
  background:#0066CC;
  border-radius:12px;
}
.client-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.client-card {
  background:#fff;
  padding:20px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.client-card:hover {
  transform:translateY(-5px);
}

.client-card img {
  width:80px;
  height:80px;
  object-fit:contain;
  margin-bottom:10px;
}

.client-card h3 {
  font-size:16px;
  margin-bottom:8px;
}

.client-card a {
  color:#2563eb;
  font-size:14px;
  text-decoration:none;
}
.client-slider {
  overflow: hidden;
  background: #fff;
  padding: 30px 0;
  margin-top: 40px;
}

.client-track {
  display: flex;
  width: max-content;
  animation: scrollClient 25s linear infinite;
}

.client-logo {
  width: 150px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.client-logo img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollClient {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* FAQ */
.faq {
  max-width:800px;
  margin:40px auto;
}

.faq-item {
  background:#fff;
  border-radius:12px;
  margin-bottom:15px;
  border:1px solid #e2e8f0;
  overflow:hidden;
  transition:0.3s;
}

.faq-question {
  padding:18px;
  cursor:pointer;
  font-weight:500;
  display:flex;
  justify-content:space-between;
}

.faq-answer {
  padding:0 18px;
  max-height:0;
  overflow:hidden;
  transition:0.3s;
  color:#64748b;
}

.faq-item.active .faq-answer {
  padding:18px;
  max-height:200px;
}