/* ============================================================================
   Jasa Landing Page - Modern Conversion Design
   Teal (#0f766e) + Amber (#f59e0b)
   ============================================================================ */

:root {
  --lp-primary: #0f766e;
  --lp-primary-light: #14b8a6;
  --lp-primary-dark: #0f4c45;
  --lp-accent: #f59e0b;
  --lp-accent-light: #fbbf24;
  --lp-dark: #0b1214;
  --lp-darker: #05090a;
  --lp-slate: #121b1e;
  --lp-text: #cbd5e1;
  --lp-text-light: #e2e8f0;
  --lp-border: rgba(148, 163, 184, 0.12);
}

.lp-single {
  background: linear-gradient(180deg, var(--lp-darker) 0%, var(--lp-dark) 55%, var(--lp-slate) 100%);
  color: var(--lp-text);
  overflow: hidden;
}

.lp-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  gap: 8px;
}

.lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.35);
}

.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 118, 110, 0.45);
}

.lp-btn--ghost {
  background: transparent;
  color: var(--lp-accent-light);
  border-color: var(--lp-accent);
}

.lp-btn--ghost:hover {
  background: rgba(245, 158, 11, 0.1);
}

.lp-btn--large {
  padding: 16px 40px;
  font-size: 16px;
}

.lp-btn--block {
  width: 100%;
}

/* Breadcrumb */
.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.lp-breadcrumb a {
  color: var(--lp-accent-light);
  text-decoration: none;
}

.lp-breadcrumb a:hover {
  text-decoration: underline;
}

.lp-breadcrumb span {
  color: var(--lp-text);
  opacity: 0.6;
}

/* Hero */
.lp-hero {
  position: relative;
  padding: 80px 0;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.18), transparent 40%);
  pointer-events: none;
}

.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.lp-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(15, 118, 110, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.5);
  color: var(--lp-primary-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.lp-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: var(--lp-text-light);
}

.lp-lead {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  color: var(--lp-text);
}

.lp-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--lp-border);
}

.lp-stat {
  text-align: left;
}

.lp-stat__num {
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-text-light);
}

.lp-stat__label {
  font-size: 12px;
  color: var(--lp-text);
  opacity: 0.8;
}

.lp-hero__image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  background: rgba(15, 118, 110, 0.06);
}

.lp-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.lp-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp-section--soft {
  background: rgba(15, 118, 110, 0.04);
}

.lp-section--alt {
  background: rgba(245, 158, 11, 0.04);
}

.lp-section--content {
  background: rgba(20, 184, 166, 0.03);
}

.lp-section--cta {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
}

.lp-section__head {
  text-align: center;
  margin-bottom: 48px;
}

.lp-section__head h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--lp-text-light);
}

.lp-section__head p {
  margin: 0 auto;
  max-width: 640px;
  font-size: 16px;
  color: var(--lp-text);
}

/* Outcomes */
.lp-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lp-card {
  padding: 28px;
  border-radius: 14px;
  background: rgba(18, 27, 30, 0.7);
  border: 1px solid var(--lp-border);
}

.lp-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--lp-text-light);
}

.lp-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Structure grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lp-panel {
  padding: 24px;
  border-radius: 12px;
  background: rgba(18, 27, 30, 0.7);
  border: 1px solid var(--lp-border);
}

.lp-panel h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--lp-text-light);
}

.lp-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.lp-step {
  padding: 24px;
  border-radius: 12px;
  background: rgba(18, 27, 30, 0.7);
  border: 1px solid var(--lp-border);
}

.lp-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  color: var(--lp-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.lp-step__content h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--lp-text-light);
}

.lp-step__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Pricing */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lp-price {
  position: relative;
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(18, 27, 30, 0.75);
  border: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
}

.lp-price--popular {
  border-color: var(--lp-accent);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
}

.lp-price__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-accent);
  color: #1f1300;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 12px;
}

.lp-price__header h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--lp-text-light);
}

.lp-price__header p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--lp-text);
}

.lp-price__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.lp-price__amount span {
  font-size: 28px;
  font-weight: 800;
  color: var(--lp-text-light);
}

.lp-price__amount small {
  font-size: 13px;
  opacity: 0.8;
}

.lp-price__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-price__features li {
  font-size: 13px;
}

/* Stack */
.lp-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lp-stack__item {
  padding: 20px;
  border-radius: 12px;
  background: rgba(18, 27, 30, 0.7);
  border: 1px solid var(--lp-border);
}

.lp-stack__item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--lp-text-light);
}

.lp-stack__item p {
  margin: 0;
  font-size: 13px;
}

/* Content */
.lp-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

.lp-content h2:not(:first-of-type) {
  display: none;
}

.lp-content p {
  margin: 0 0 18px;
}

.lp-content a {
  color: var(--lp-accent-light);
  text-decoration: none;
}

.lp-content a:hover {
  text-decoration: underline;
}

/* FAQ */
.lp-faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq__item {
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  background: rgba(18, 27, 30, 0.7);
  overflow: hidden;
}

.lp-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--lp-text-light);
  list-style: none;
}

.lp-faq__summary::-webkit-details-marker {
  display: none;
}

.lp-faq__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.lp-faq__item[open] .lp-faq__icon {
  transform: rotate(45deg);
}

.lp-faq__answer {
  padding: 0 20px 18px;
  border-top: 1px solid var(--lp-border);
  font-size: 14px;
  line-height: 1.7;
}

/* CTA */
.lp-cta {
  text-align: center;
  padding: 60px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lp-cta h2 {
  margin: 0 0 10px;
  font-size: 32px;
  color: #ffffff;
}

.lp-cta p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 1024px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-outcomes,
  .lp-grid,
  .lp-steps,
  .lp-pricing,
  .lp-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lp-shell {
    padding: 0 16px;
  }

  .lp-title {
    font-size: 32px;
  }

  .lp-lead {
    font-size: 16px;
  }

  .lp-hero__cta {
    flex-direction: column;
  }

  .lp-btn {
    width: 100%;
  }

  .lp-outcomes,
  .lp-grid,
  .lp-steps,
  .lp-pricing,
  .lp-stack {
    grid-template-columns: 1fr;
  }

  .lp-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .lp-title {
    font-size: 26px;
  }

  .lp-section__head h2 {
    font-size: 24px;
  }

  .lp-cta h2 {
    font-size: 24px;
  }
}
