/* LandingPro Base - Orange Premium */

:root {
  --lpb-primary: #f97316;        /* orange utama */
  --lpb-primary-soft: #fdba74;   /* orange soft */
  --lpb-accent: #facc15;         /* kuning accent */
  --lpb-bg: #f9fafb;
  --lpb-dark: #0f172a;
  --lpb-gray: #6b7280;
  --lpb-card: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--lpb-bg);
  color: var(--lpb-dark);
}

.lpb-container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.lpb-main {
  min-height: 60vh;
}

.lpb-section {
  padding: 64px 0;
}

.lpb-section-soft {
  background: linear-gradient(180deg, #f9fafb, #f3f4f6);
}

.lpb-section-head {
  max-width: 620px;
  margin-bottom: 28px;
}

.lpb-section-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.lpb-section-head p {
  margin: 0;
  color: var(--lpb-gray);
  font-size: 15px;
}

.lpb-center {
  text-align: center;
  margin-inline: auto;
}

/* HEADER */
.lpb-site-header a {
  text-decoration: none;
}

.lpb-topbar {
  background: #0b1120;
  color: #e5e7eb;
  font-size: 13px;
}

.lpb-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.lpb-topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lpb-top-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lpb-top-item i {
  color: var(--lpb-accent);
  font-size: 12px;
}

.lpb-top-divider {
  width: 1px;
  height: 14px;
  background: rgba(148,163,184,0.6);
}

.lpb-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lpb-top-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5f5;
}

.lpb-top-address i {
  color: var(--lpb-primary-soft);
  font-size: 12px;
}

.lpb-top-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #22c55e;
  color: #f9fafb;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 10px 25px rgba(34,197,94,0.6);
}

.lpb-top-wa i {
  font-size: 13px;
}

/* NAVBAR */
.lpb-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.lpb-navbar {
  background: rgba(15,23,42,0.97);
  color: #e5e7eb;
  border-bottom: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

.lpb-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.lpb-nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lpb-nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, #fed7aa, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 16px 32px rgba(249,115,22,0.7);
}

.lpb-nav-brand {
  display: flex;
  flex-direction: column;
}

.lpb-nav-name {
  font-weight: 700;
  font-size: 17px;
}

.lpb-nav-tagline {
  font-size: 11px;
  color: #9ca3af;
}

.lpb-nav-menu-wrapper {
  display: flex;
  align-items: center;
}

.lpb-nav-menu {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lpb-nav-menu li {
  margin: 0;
}

.lpb-nav-menu a {
  color: #e5e7eb;
  font-weight: 600;
  padding: 4px 0;
  position: relative;
}

.lpb-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lpb-primary), var(--lpb-accent));
  transition: width 0.2s ease-out;
}

.lpb-nav-menu a:hover {
  color: #facc15;
}

.lpb-nav-menu a:hover::after {
  width: 100%;
}

/* Nav Toggle */
.lpb-nav-toggle-input {
  display: none;
}

.lpb-nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.8);
  color: #e5e7eb;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lpb-nav-toggle i {
  font-size: 16px;
}

@media (max-width: 960px) {
  .lpb-nav-menu-wrapper {
    display: none;
  }
  .lpb-nav-toggle {
    display: flex;
  }
  .lpb-nav-toggle-input:checked ~ .lpb-nav-menu-wrapper {
    display: block;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(15,23,42,0.98);
    border-top: 1px solid rgba(75,85,99,0.7);
  }
  .lpb-nav-menu {
    flex-direction: column;
    padding: 10px 18px 12px;
  }
  .lpb-nav-menu a {
    display: block;
    padding: 6px 0;
  }
}

/* Floating WA */
.lpb-floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #22c55e;
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(34,197,94,0.7);
  z-index: 50;
}

.lpb-floating-wa i {
  font-size: 20px;
}

/* HERO */
.lpb-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: #f9fafb;
  background: radial-gradient(circle at top left, #0f172a, #111827);
  overflow: hidden;
}

.lpb-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(248,113,22,0.4), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250,204,21,0.4), transparent 55%);
  opacity: 0.9;
}

.lpb-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 96px;
  max-width: 640px;
}

.lpb-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(248,250,252,0.3);
  font-size: 13px;
  margin-bottom: 16px;
}

.lpb-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 40px);
}

.lpb-hero h1 span {
  color: var(--lpb-primary-soft);
}

.lpb-hero p {
  margin: 0 0 16px;
  color: #e5e7eb;
  font-size: 15px;
}

.lpb-hero-note {
  margin-top: 10px;
  font-size: 12px;
  color: #e5e7eb;
}

.lpb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lpb-hero-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: radial-gradient(ellipse at top, #f9fafb 0, #f9fafb 40%, transparent 70%);
}

/* Buttons */
.lpb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.lpb-btn-primary {
  background: linear-gradient(135deg, var(--lpb-primary), var(--lpb-primary-soft));
  color: #f9fafb;
  box-shadow: 0 18px 35px rgba(249,115,22,0.7);
}

.lpb-btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(249,250,251,0.6);
}

.lpb-btn-full {
  width: 100%;
}

.lpb-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15,23,42,0.25);
}

.lpb-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(15,23,42,0.22);
}

/* Grids & cards */
.lpb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lpb-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 24px;
}

.lpb-card {
  background: var(--lpb-card);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
  border: 1px solid rgba(229,231,235,0.9);
}

.lpb-adv-card h3 {
  margin-top: 0;
}

.lpb-service-card h3 {
  margin-top: 0;
}

.lpb-service-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249,115,22,0.1);
  color: #c2410c;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lpb-service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
}

.lpb-service-label {
  font-size: 12px;
  color: var(--lpb-gray);
}

.lpb-service-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--lpb-primary);
}

/* Pricing */
.lpb-pricing-card h3 {
  margin-top: 0;
}

.lpb-pricing-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--lpb-primary);
  margin: 4px 0 8px;
}

.lpb-pricing-card-highlight {
  border-color: rgba(249,115,22,0.6);
  box-shadow: 0 22px 45px rgba(248,113,22,0.25);
}

/* Lists */
.lpb-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--lpb-gray);
  font-size: 14px;
}

.lpb-list li + li {
  margin-top: 6px;
}

/* Contact */
.lpb-contact-note {
  font-size: 12px;
  color: var(--lpb-gray);
  margin-top: 10px;
}

.lpb-map-placeholder {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px dashed rgba(148,163,184,0.8);
  font-size: 12px;
  color: var(--lpb-gray);
  text-align: center;
}

/* Page default */
.lpb-page-inner {
  padding-block: 40px;
}

.lpb-page-title {
  margin-top: 0;
}

.lpb-page-content {
  margin-top: 16px;
}

/* Footer */
.lpb-footer {
  background: #0f172a;
  color: #9ca3af;
  padding: 16px 0;
  font-size: 13px;
}

.lpb-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

/* Animations */
.lpb-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lpb-fade.lpb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .lpb-grid-3 {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px) {
  .lpb-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .lpb-topbar-left {
    flex-wrap: wrap;
  }
  .lpb-grid-3,
  .lpb-contact-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .lpb-footer-inner {
    flex-direction: column;
  }
  .lpb-hero-inner {
    padding-block: 80px;
  }
}
