* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #2f4e78;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-nav {
  background-color: #38bdf8;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 1rem 1rem;
  background-color: #2f4e78;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
}

.text-brand {
  flex: 1 1 45%;
}

.text-brand h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.text-brand p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #bfcbe6;
}

.text {
  flex: 1 1 45%;
}

.text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #bfcbe6;
}

.buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  background-color: #38bdf8;
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.video-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.image {
  flex: 1 1 45%;
  text-align: center;
  margin-top: 2rem;
}

.image img {
  max-width: 350px;
  height: auto;
}

.brands {
  background: white;
  padding: 2rem 1rem;
}

.brand-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-logos img {
  height: 30px;
  max-width: 100px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .image img {
  max-width: 100%;
  height: auto;
}

  .text-brand, .image-brand {
    flex: 1 1 100%;
  }

  .text, .image {
    flex: 1 1 100%;
  }
  
  .banner-brand{
        position: unset;
        top: 0;
        background: #000000;
        left: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 1em;
        border-bottom: 1px #7d7d7d solid;
		transition: all 0.3s ease;
  }
  
    .banner-brand.fixed {
    position: fixed !important; /* Override position unset */
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #000000;
    box-shadow: 0 2px 5px rgba(255,255,255,0.2);
	display: flex;
    flex-direction: row;
  }

}


.ai-products {
  background: #0f111a;
  padding: 4rem 1rem;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  background: linear-gradient(90deg, #00ffa3, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #b0b3c2;
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: linear-gradient(145deg, #1b1d29, #0f111a);
  border: 1px solid #2c2f3f;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #1e2a38;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  height: 100%; /* penting untuk flex parent grid */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #00ffe0;
}

.product-card p {
  font-size: 0.95rem;
  color: #d3d3d3;
  flex-grow: 1;
}




/* Hamburger icon */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Nav Links - default */
.nav-links {
  display: flex;
  gap: 1rem;
}




.btn-berminat {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #ff4c4c;
  border: 2px solid #ff4c4c;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 76, 76, 0.4);
}

.btn-berminat:hover {
  background-color: transparent;
  color: #ff4c4c;
  box-shadow: 0 0 20px rgba(255, 76, 76, 0.6);
  transform: translateY(-3px);
}

.product-card .btn-berminat {
  margin-top: 10px;
}


.payment-section {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  text-align: center;
}

.payment-section .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.payment-section .section-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}

.bank-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.bank-logos img {
  height: 40px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.bank-logos img:hover {
  filter: grayscale(0%);
}

.powered-by {
  font-size: 0.9rem;
  color: #777;
}

.footer-section {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-col h2 {
  font-size: 20px;
  margin: 10px 0 5px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.logo-box {
  display: flex;
  gap: 6px;
  margin-bottom: 5px;
}

.logo-dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
  transform: rotate(45deg);
  display: inline-block;
}

.tagline {
  font-style: italic;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 30px;
}

.language-select select {
  background: #000;
  color: #fff;
  border: 1px solid #444;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}
