/*
Theme Name: Wan Labs Leonardo AI
Theme URI: https://wanlabs.local
Author: Wan Labs
Description: Landing page WordPress untuk jualan AI tools Leonardo AI.
Version: 1.0
Text Domain: wan-labs-leonardo-ai
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #07070c;
  color: #ffffff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(111, 66, 255, 0.28), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(0, 220, 255, 0.22), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(0, 255, 160, 0.12), transparent 35%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent);
  z-index: -1;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 12, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 20px;
}

.logo span { color: #00e5ff; }

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: #d7d7e0;
  text-decoration: none;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 229, 255, 0.22);
}

.btn-primary {
  background: linear-gradient(135deg, #00e5ff, #7c4dff);
  border: none;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #bff8ff;
  background: rgba(0, 229, 255, 0.08);
  margin-bottom: 22px;
  font-size: 14px;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff, #00e5ff, #9b6bff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 18px;
  line-height: 1.75;
  color: #c9c9d6;
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.stat strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.stat span {
  font-size: 13px;
  color: #aaaabb;
}

.mockup {
  position: relative;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.mockup-screen {
  border-radius: 24px;
  overflow: hidden;
  background: #0d0d16;
  border: 1px solid rgba(255,255,255,0.12);
}

.mockup-top {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
}

.ai-card {
  min-height: 150px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(0,229,255,0.18), rgba(124,77,255,0.18)),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 30%);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: end;
  padding: 14px;
  color: #fff;
  font-weight: 700;
}

section { padding: 88px 0; }

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.section-title p {
  color: #bdbdca;
  line-height: 1.7;
  max-width: 680px;
  margin: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0,229,255,0.22), rgba(124,77,255,0.22));
  margin-bottom: 18px;
  font-size: 22px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.card p {
  color: #bdbdca;
  line-height: 1.65;
  font-size: 15px;
}

.pricing {
  width: min(520px, 100%);
  margin: auto;
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(0,229,255,0.18), rgba(124,77,255,0.16)),
    rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.pricing h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.price {
  font-size: 58px;
  font-weight: 900;
  margin: 16px 0;
}

.price small {
  font-size: 18px;
  color: #cfcfe0;
}

.features {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 14px;
  margin: 26px 0;
  color: #e6e6ef;
}

.features li {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  min-height: 210px;
  border-radius: 24px;
  overflow: hidden;
  padding: 18px;
  display: flex;
  align-items: end;
  font-weight: 800;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at 20% 20%, rgba(0,229,255,0.28), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(124,77,255,0.30), transparent 35%);
  border: 1px solid rgba(255,255,255,0.11);
  transition: 0.3s;
}

.gallery-item:hover { transform: scale(1.03); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5ff, #7c4dff);
  font-weight: 900;
  margin-bottom: 16px;
}

.faq {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: auto;
}

details {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.1);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin-top: 14px;
  color: #bdbdca;
  line-height: 1.7;
}

.cta {
  text-align: center;
  padding: 70px 30px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(0,229,255,0.18), rgba(124,77,255,0.22)),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.cta p {
  color: #d4d4e1;
  margin-bottom: 26px;
  line-height: 1.7;
}

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #9f9fb0;
  text-align: center;
  font-size: 14px;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #21c063;
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 15px 45px rgba(33, 192, 99, 0.35);
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .gallery,
  .steps {
    grid-template-columns: 1fr;
  }

  .stats { grid-template-columns: 1fr; }

  .nav-links a:not(.btn) { display: none; }

  .hero { padding: 54px 0; }

  .mockup { padding: 14px; }

  section { padding: 64px 0; }
}
