@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Lora:ital@0;1&display=swap");

:root {
  --red-deep: #991b1b;
  --red-main: #dc2626;
  --red-bright: #ef4444;
  --red-soft: #fca5a5;
  --red-pale: #fef2f2;
  --red-border: #fecaca;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f1f5f9;
  --border: #e2e8f0;
}

* {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ── NAVBAR ── */
.lp-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.lp-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red-pale);
  border: 1px solid var(--red-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}
.lp-logo-accent {
  color: var(--red-main);
}

.lp-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.lp-nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red-main);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.lp-nav-link:hover {
  color: var(--red-main);
}
.lp-nav-link:hover::after {
  transform: scaleX(1);
}

.lp-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red-main);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  letter-spacing: 0.1px;
}
.lp-nav-btn:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

/* ── HERO ── */
.lp-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.lp-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(220, 38, 38, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(220, 38, 38, 0.04) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.lp-hero-bg-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(220, 38, 38, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.lp-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-pale);
  border: 1px solid var(--red-border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red-deep);
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.lp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-main);
  flex-shrink: 0;
  animation: lp-pulse 2s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.lp-hero-title {
  font-size: clamp(30px, 5.5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.lp-hero-title-accent {
  color: var(--red-main);
  position: relative;
  display: inline-block;
}
.lp-hero-title-accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-main), var(--red-soft));
  border-radius: 2px;
}

.lp-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
}

.lp-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red-main);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
}
.lp-btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--red-main);
  border: 2px solid var(--red-main);
  border-radius: 12px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-btn-outline:hover {
  background: var(--red-pale);
  transform: translateY(-2px);
}

.lp-hero-divider {
  width: 48px;
  height: 2px;
  background: var(--border);
  margin: 0 auto 32px;
}

.lp-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  max-width: 480px;
  margin: 0 auto;
}

.lp-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  flex: 1;
  min-width: 100px;
}

.lp-stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--red-main);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.lp-stat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.lp-section {
  padding: 88px 0;
}
.lp-section-light {
  background: var(--surface-2);
}
.lp-section-white {
  background: #fff;
}

.lp-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.lp-section-tag {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red-deep);
  border: 1px solid var(--red-border);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lp-section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.lp-section-sub {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── PAKET ── */
.lp-paket-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.lp-paket-card {
  background: #fff;
  border-radius: 24px;
  border: 2px solid var(--red-main);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(220, 38, 38, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

.lp-paket-header {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red-main) 100%);
  padding: 28px 32px;
  text-align: center;
  position: relative;
}

.lp-paket-badge-popular {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.lp-paket-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.lp-paket-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.lp-paket-body {
  padding: 32px;
}

.lp-price-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.lp-price-main {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.lp-price-main span {
  font-size: 44px;
  font-weight: 800;
  color: var(--red-main);
  letter-spacing: -1px;
}

.lp-price-old {
  font-size: 15px;
  color: var(--text-faint);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.lp-price-save {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
}

.lp-paket-features {
  margin-bottom: 24px;
}

.lp-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.lp-feature-row:last-child {
  border-bottom: none;
}

.lp-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2px;
}

.lp-feature-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
}

.lp-bonus-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-light);
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 20px;
}

.lp-paket-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red-main) 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  letter-spacing: 0.1px;
}
.lp-paket-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.45);
}

.lp-paket-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  margin: 12px 0 0;
}

/* ── QUOTES ── */
.lp-quotes-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--red-deep) 0%, #7f1d1d 100%);
  position: relative;
  overflow: hidden;
}
.lp-quotes-section::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 5%;
  font-size: 240px;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Lora", Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.lp-quotes-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-quotes-icon {
  font-family: "Lora", Georgia, serif;
  font-size: 72px;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
  display: block;
}

.lp-quotes-text {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 2.5vw, 22px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
}

.lp-quotes-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 16px;
}

.lp-quotes-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-soft);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ── FEATURES ── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.lp-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-main), var(--red-soft));
  opacity: 0;
  transition: opacity 0.25s;
}
.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  border-color: var(--red-border);
}
.lp-feature-card:hover::before {
  opacity: 1;
}

.lp-feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--red-pale);
  border: 1px solid var(--red-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-main);
  margin-bottom: 12px;
}

.lp-feature-tag-small {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--red-main);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-feature-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.lp-feature-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── HOW IT WORKS ── */
.lp-how-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lp-how-card {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.lp-how-step-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.lp-how-icon {
  width: 64px;
  height: 64px;
  background: var(--red-pale);
  border: 1.5px solid var(--red-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-main);
  margin: 0 auto 14px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.lp-how-card:hover .lp-how-icon {
  background: var(--red-main);
  color: #fff;
  border-color: var(--red-main);
}

.lp-how-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.lp-how-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.lp-how-arrow {
  position: absolute;
  top: 52px;
  right: -14px;
  font-size: 20px;
  color: var(--text-faint);
  z-index: 1;
}

/* ── TESTIMONIALS ── */
.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.lp-testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lp-testi-stars {
  font-size: 15px;
  color: #f59e0b;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.lp-testi-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 20px;
}

.lp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-main), var(--red-deep));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2px;
}

.lp-testi-role {
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
  margin: 0;
}

/* ── CTA ── */
.lp-cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--red-deep) 0%, #450a0a 100%);
  position: relative;
  overflow: hidden;
}

.lp-cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 80%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.lp-cta-flag {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
  animation: lp-flag-bounce 3s ease-in-out infinite;
}
@keyframes lp-flag-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.lp-cta-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.lp-cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 36px;
  max-width: 440px;
  line-height: 1.6;
}

.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--red-deep);
  border: none;
  border-radius: 14px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.lp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.lp-cta-small {
  margin: 20px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

/* ── GALLERY ── */
.lp-gallery-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 8px;
}

.lp-gallery-placeholder {
  background: var(--surface-3);
  color: var(--text-faint);
  font-size: 14px;
}

.lp-gallery-caption {
  background: #fff;
  border-top: 1px solid var(--border);
}

.lp-gallery-zoom {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--red-main);
  margin-top: 4px;
  font-weight: 600;
}

/* ── FOOTER ── */
.lp-footer {
  background: #0f172a;
  padding: 60px 0 0;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lp-how-arrow {
    display: none;
  }
  .lp-stat-sep {
    display: none;
  }
  .lp-stats-row {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
}

.lp-footer-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.lp-footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 16px;
}

.lp-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-footer-list li {
  font-size: 13.5px;
  color: #64748b;
}

.lp-footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
  color: #475569;
}
