* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #fff;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
  height: 72px;
  background: #ffffff;
  border-bottom: 1px solid #e9edf3;
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
}

.brand {
  font-size: 48px;
  letter-spacing: -0.5px;
  color: #2457d6;
  
  
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: 55px;
}

.nav-link {
  color: #667085;
  font-size: 15px;
  transition: color 0.2s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: #172033;
}

.header-cta {
  margin-left: auto;
  padding: 10px 16px;
  border-radius: 8px;
  background: #2457d6;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: #1f4cc0;
  transform: translateY(-1px);
}


/* =========================
   HERO
========================= */

.hero {
  background: linear-gradient(
      rgba(0,0,0,.45),
      rgba(0,0,0,.45)
    ),
    url('/assets/LanoriumBaground.WebP');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 92px 0 100px;
}

.hero h1,
.hero p {
  color: #fff;
  text-shadow: -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.15);
  color: #5282ff;
  text-shadow: 0 0 5px rgba(82, 130, 255, 0.45),
    0 0 12px rgba(82, 130, 255, 0.25);
  color: #5282ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.hero h1 {
  max-width: 820px;
  margin: 20px auto 18px;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -2.8px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 30px;
  gap: 14px;
  display: flex;
  justify-content: center;
}




/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 13px 21px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: #2457d6;
  color: #ffffff;
  width: 190px;
  text-align: center;
}

.btn.secondary {
  background: #dfe4ec;
  border: 1px solid #dfe4ec;
  color: #344054;
  width: 190px;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}


/* =========================
   ABOUT
========================= */

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin: 18px 0 12px;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -1.2px;
}

.section-heading p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.value-card {
  padding: 25px;
  border: 1px solid #98a2b3;
  border-radius: 14px;
  background: #ffffff;
}

.value-card h3 {
  margin: 0 0 9px;
  font-size: 17px;
  color: #2457d6;
}

.value-card p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}


/* =========================
   HOMEPAGE PRODUCT
========================= */

.product-section {
  padding: 10px 0 100px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 45px;
  align-items: center;
  padding: 48px;
  border-radius: 20px;
  background: #172033;
  color: #ffffff;
}

.product-card h2 {
  margin: 18px 0 12px;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.product-card > div:first-child > p {
  max-width: 680px;
  margin: 0;
  color: #c7cedb;
  line-height: 1.7;
}

.product-points {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  color: #d9dee8;
  font-size: 14px;
}


/* =========================
   PRICE CARD
========================= */

.product-action {
  width: 100%;
  padding: 19px;
  border-radius: 5px;
  background: #ffffff;
  color: #172033;
  text-align: center;
}

.product-action .label {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}


/* =========================
   PRODUCT IMAGE
========================= */

.product-image {
  width: 100%;
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 45%;
  height: auto;
  display: block;
  object-fit: contain;
}


/* =========================
   PRICE
========================= */

.price {
  margin-top: 2px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
}


/* =========================
   LIFETIME
========================= */

.lifetime {
  color: #667085;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 20px;
}


/* =========================
   INNER PAGES
========================= */

.page {
  padding: 75px 0 100px;
}

.page-header {
  max-width: 100%;
  margin-bottom: 45px;
}

.page-header h1 {
  margin: 18px 0 12px;
  color: #475467;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.8px;
}

.page-header p {
  margin: 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.7;
}

.page-content {
  max-width: 100%;
}

.page-content h2 {
  margin: 38px 0 10px;
  font-size: 23px;
  letter-spacing: -0.4px;
  color: #475467;
}

.page-content p,
.page-content li {
  color: #475467;
  line-height: 1.75;
}

.info-card {
  padding: 25px;
  border: 1px solid #e8ecf2;
  border-radius: 14px;
  background: #f8fafc;
}


/* ========================= PRODUCTS PAGE ========================= */
.products-page-list {
  padding: 30px 0 80px;
 /* Jarak padding atas-bawah halaman dikurangi */;
}

/* KARTU UTAMA: Tinggi dipangkas habis dengan padding vertikal hanya 16px */
.products-page-list .product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
 /* Kolom kanan dipersempit agar seimbang */
  gap: 28px;
 /* Jarak antar kolom dirapatkan */
  align-items: center;
  padding: 16px 28px;
 /* ULTRA-KOMPAK: Padding atas-bawah hanya 16px (sebelumnya 48px) */
  border-radius: 12px;
  background: #172033;
  color: #ffffff;
  max-width: 740px;
 /* Lebar optimal agar tidak melar ke samping */
  margin: 0 auto 24px;
 /* Jarak pemisah antar kotak produk menjadi 24px */
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* JUDUL PRODUK - Dibuat sangat rapat */
.products-page-list .product-card h2 {
  margin: 0 0 4px 0;
 /* Jarak bawah judul hanya 4px */
  font-size: 21px;
 /* Diperkecil sedikit agar seimbang dengan kotak yang tipis */
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* DESKRIPSI PRODUK - Menghemat ruang vertikal */
.products-page-list .product-card > div:first-child > p {
  max-width: 100%;
  margin: 0 0 8px 0;
 /* Jarak bawah deskripsi dipangkas menjadi 8px */
  color: #c7cedb;
  font-size: 13px;
  line-height: 1.45;
}

/* DAFTAR FITUR (CHECKLIST) - Lebih rapat ke atas */
.products-page-list .product-points {
  display: grid;
  gap: 6px;
 /* Jarak antar-baris list sangat rapat */
  margin-top: 8px;
 /* Lebih dekat ke paragraf deskripsi */
  color: #d9dee8;
  font-size: 12.5px;
}

/* BOX HARGA KANAN - Sangat tipis */
.products-page-list .product-action {
  width: 100%;
  padding: 12px 16px;
 /* ULTRA-KOMPAK: Padding atas-bawah dipotong dari 24px menjadi 12px */
  border-radius: 10px;
  background: #ffffff;
  color: #172033;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* ICON / GAMBAR PRODUK - Dirapatkan ke atas */
.products-page-list .product-image {
  width: 100%;
  margin-bottom: 4px;
 /* Jarak bawah gambar diperkecil drastis */
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-page-list .product-image img {
  width: 40px;
 /* Ikon diperkecil ke 40px agar hemat ruang vertikal */
  height: 40px;
  display: block;
  object-fit: contain;
}

/* LABEL PRODUK */
.products-page-list .label {
  color: #172033;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 1px;
}

/* HARGA */
.products-page-list .price {
  margin-top: 0px;
  font-size: 25px;
 /* Ukuran harga diperkecil agar pas dengan dimensi tipis */
  font-weight: 800;
  letter-spacing: -0.8px;
}

/* LISENSI LIFETIME */
.products-page-list .lifetime {
  color: #667085;
  font-size: 10px;
  line-height: 1.3;
  margin-bottom: 8px;
 /* Jarak dipersempit sebelum tombol beli */;
}

/* RESPONSIVE UNTUK HP */
@media (max-width: 800px) {
  .products-page-list .product-card {
    grid-template-columns: 1fr;
    padding: 16px 20px;
    gap: 16px;
    margin: 0 16px 20px;
  }
}



/* PRODUCT TEXT */

.products-page-list .product-card h2 {
  margin: 18px 0 12px;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.products-page-list .product-card > div:first-child > p {
  max-width: 680px;
  margin: 0;
  color: #c7cedb;
  line-height: 1.7;
}


/* PRODUCT POINTS */

.products-page-list .product-points {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  color: #d9dee8;
  font-size: 14px;
  margin-bottom: 10px;
}


/* PRODUCT PRICE BOX */

.products-page-list .product-action {
  width: 100%;
  padding: 19px;
  border-radius: 5px;
  background: #ffffff;
  color: #172033;
  text-align: center;
}


/* PRODUCT IMAGE */

.products-page-list .product-image {
  width: 100%;
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-page-list .product-image img {
  width: 45%;
  height: auto;
  display: block;
  object-fit: contain;
}


/* PRICE */

.products-page-list .price {
  margin-top: 2px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
}


/* LIFETIME */

.products-page-list .lifetime {
  color: #667085;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 20px;
}


/* LABEL */

.products-page-list .label {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  border-top: 1px solid #e8ecf2;
  background: #fafbfc;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding: 42px 0 30px;
}

.footer-brand > a {
  font-size: 19px;
  font-weight: 800;
}

.footer-brand p {
  max-width: 330px;
  margin: 9px 0 0;
  color: #98a2b3;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #667085;
  font-size: 13px;
}

.footer-links a:hover {
  color: #172033;
}

.footer-copy {
  color: #98a2b3;
  font-size: 12px;
  align-self: end;
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

  .container {
    width: min(100% - 32px, 1120px);
  }

  .nav-links {
    margin-left: 25px;
    gap: 18px;
  }

  .product-card {
    grid-template-columns: 1fr;
    padding: 35px;
  }

  .products-page-list .product-card {
    grid-template-columns: 1fr;
    padding: 35px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 560px) {

  .site-header,
  .nav {
    height: auto;
    min-height: 68px;
  }

  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin: 12px 0 0;
    justify-content: center;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    padding: 65px 0 75px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 220px;
  }

  .section {
    padding: 70px 0;
  }

  .product-card {
    padding: 28px 22px;
  }

  .products-page-list {
    padding: 10px 0 70px;
  }

  .products-page-list .product-card {
    padding: 28px 22px;
  }

  .products-page-list .product-image img {
    width: 50%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-copy {
    grid-column: auto;
  }
}

/* ============================================================
   PRODUCTSNAP PRODUCT PAGE
   Scoped agar tidak mengganggu CSS Lanorium
   ============================================================ */

.productsnap-page {
  padding: 70px 0 90px;
}

/* ============================================================
   HERO
   ============================================================ */

.productsnap-page .productsnap-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 55px;
  align-items: center;
  margin-bottom: 50px;
}

.productsnap-page .productsnap-badge {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.15);
  color: #5282ff;
  text-shadow: 0 0 5px rgba(82, 130, 255, 0.45),
    0 0 12px rgba(82, 130, 255, 0.25);
  color: #5282ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.productsnap-page .productsnap-hero h1 {
  margin: 18px 0 12px;
  color: #475467;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.8px;
}

.productsnap-page .productsnap-hero h1 span {
  color: #2457d6;
}

.productsnap-page .productsnap-lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: #98a2b3;
  font-size: 18px;
  line-height: 1.7;
}

.productsnap-page .productsnap-price-note {
  margin-top: 22px;
  color: #98a2b3;
  font-size: 13px;
}

.productsnap-page .productsnap-price-note strong {
  color: #fff;
  font-size: 20px;
}

.productsnap-page .productsnap-preview {
  width: 50%;
    margin-left: auto;
  margin-right: auto;
  padding: 14px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.productsnap-page .productsnap-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}


/* ============================================================
   SECTIONS
   ============================================================ */

.productsnap-page .productsnap-section {
  margin-top: 50px;
}

.productsnap-page .productsnap-section-header {
  max-width: 700px;
  margin-bottom: 35px;
}

.productsnap-page .productsnap-section-header h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
  color: #475467;
}

.productsnap-page .productsnap-section-header p {
  margin: 0;
  color: #98a2b3;
  line-height: 1.7;
}


/* ============================================================
   FEATURES
   ============================================================ */

.productsnap-page .productsnap-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.productsnap-page .productsnap-feature {
  padding: 25px;
  background: #121926;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.productsnap-page .productsnap-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(36, 87, 214, 0.15);
  color: #5282ff;
  font-size: 12px;
  font-weight: 900;
}

.productsnap-page .productsnap-feature h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.productsnap-page .productsnap-feature p {
  margin: 0;
  color: #98a2b3;
  font-size: 14px;
  line-height: 1.65;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */

.productsnap-page .productsnap-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.productsnap-page .productsnap-step {
  padding: 28px;
  background: #121926;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.productsnap-page .productsnap-step-number {
  margin-bottom: 18px;
  color: #5282ff;
  font-size: 12px;
  font-weight: 800;
}

.productsnap-page .productsnap-step h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.productsnap-page .productsnap-step p {
  margin: 0;
  color: #98a2b3;
  font-size: 14px;
  line-height: 1.65;
}


/* ============================================================
   FREE VS PRO
   ============================================================ */

.productsnap-page .productsnap-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.productsnap-page .productsnap-plan {
  padding: 30px;
  background: #121926;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.productsnap-page .productsnap-plan.pro {
  border-color: rgba(82, 130, 255, 0.45);
  box-shadow: 0 15px 45px rgba(36, 87, 214, 0.12);
}

.productsnap-page .productsnap-plan h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.productsnap-page .productsnap-plan .plan-description {
  margin-bottom: 25px;
  color: #98a2b3;
  font-size: 14px;
}

.productsnap-page .productsnap-plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.productsnap-page .productsnap-plan li {
  padding: 9px 0;
  color: #d0d5dd;
  font-size: 14px;
}

.productsnap-page .productsnap-plan li::before {
  content: "✓";
  margin-right: 9px;
  color: #5282ff;
  font-weight: 800;
}


/* ============================================================
   PRICING
   ============================================================ */

.productsnap-page .productsnap-pricing {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 35px;
  text-align: center;
  background: #121926;
  border: 1px solid rgba(82, 130, 255, 0.3);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.productsnap-page .productsnap-pricing .small-label {
  color: #5282ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.productsnap-page .productsnap-pricing h2 {
  margin: 10px 0 5px;
  color: #98a2b3;
  font-size: 32px;
}

.productsnap-page .productsnap-pricing .price {
  margin: 15px 0 5px;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
}

.productsnap-page .productsnap-pricing .price-note {
  margin-bottom: 25px;
  color: #98a2b3;
  font-size: 13px;
}

.productsnap-page .productsnap-pricing .productsnap-legal {
  margin-top: 18px;
  color: #667085;
  font-size: 12px;
  line-height: 1.6;
}

.productsnap-page .productsnap-pricing .productsnap-legal a {
  color: #98a2b3;
  text-decoration: none;
}

.productsnap-page .productsnap-pricing .productsnap-legal a:hover {
  color: #5282ff;
}


/* ============================================================
   FAQ
   ============================================================ */

.productsnap-page .productsnap-faq {
  max-width: 800px;
}

.productsnap-page .productsnap-faq-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.productsnap-page .productsnap-faq-item:first-child {
  padding-top: 0;
}

.productsnap-page .productsnap-faq-item h3 {
  margin: 0 0 10px;
  color: #475467;
  font-size: 16px;
  line-height: 1.4;
}

.productsnap-page .productsnap-faq-item p {
  margin: 0;
  color: #98a2b3;
  font-size: 14px;
  line-height: 1.65;
}


/* ============================================================
   FINAL CTA
   ============================================================ */

.productsnap-page .productsnap-final {
  margin-top: 50px;
  padding: 65px 25px;
  text-align: center;
  background: linear-gradient(
            135deg,
            rgba(36, 87, 214, 0.16),
            rgba(18, 25, 38, 0.9)
        );
  border: 1px solid rgba(82, 130, 255, 0.2);
  border-radius: 22px;
}

.productsnap-page .productsnap-final h2 {
  margin: 0 0 12px;
  font-size: 32px;
}

.productsnap-page .productsnap-final p {
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.7;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 850px) {

  .productsnap-page .productsnap-hero {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .productsnap-page .productsnap-features,
    .productsnap-page .productsnap-steps {
    grid-template-columns: 1fr;
  }

  .productsnap-page .productsnap-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .productsnap-page {
    padding: 45px 0 65px;
  }

  .productsnap-page .productsnap-hero {
    margin-bottom: 60px;
  }

  .productsnap-page .productsnap-hero h1 {
    font-size: 40px;
    letter-spacing: -1px;
    color: #475467;
  }

  .productsnap-page .productsnap-lead {
    font-size: 16px;
  }

  .productsnap-page .productsnap-section {
    margin-top: 65px;
  }

  .productsnap-page .productsnap-pricing {
    padding: 30px 22px;
  }

  .productsnap-page .productsnap-pricing .price {
    font-size: 42px;
  }

  .productsnap-page .productsnap-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .productsnap-page .productsnap-actions .btn {
    width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
