@import url("components.css");

/* =============================================
   LANDING PAGE CSS - Portal Apresiasi Bunda PAUD
   Warna: Pink-to-Purple-to-Blue gradient (sesuai screenshot)
   ============================================= */

:root {
  /* Brand Colors - sesuai screenshot navbar */
  --lp-pink: #e8b4b8;
  --lp-purple: #d4989d;
  --lp-blue: #b87878;
  --lp-navy: #1e2d5a;
  --lp-gold: #f9a826;
  --lp-green: #2e9e6e;
  --lp-peach-blush: #b46d6d;

  /* Gradient utama */
  --lp-grad: linear-gradient(135deg, #e8b4b8 0%, #d4989d 50%, #b87878 100%);
  --lp-grad-h: linear-gradient(to right, #e8b4b8, #d4989d, #b87878);
  --lp-grad-v: linear-gradient(to bottom, #e8b4b8, #d4989d, #b87878);
  --lp-grad-soft: linear-gradient(
    135deg,
    rgba(232, 180, 184, 0.12) 0%,
    rgba(232, 117, 90, 0.1) 50%,
    rgba(184, 120, 120, 0.08) 100%
  );

  /* Neutrals */
  --lp-white: #ffffff;
  --lp-gray50: #f8f9fc;
  --lp-gray100: #f1f3f9;
  --lp-gray200: #e5e7f0;
  --lp-gray300: #d1d5e0;
  --lp-gray500: #6b7280;
  --lp-gray700: #374151;
  --lp-gray900: #111827;

  /* Shadows */
  --lp-shadow-sm: 0 2px 8px rgba(184, 120, 120, 0.1);
  --lp-shadow: 0 4px 20px rgba(184, 120, 120, 0.15);
  --lp-shadow-lg: 0 8px 40px rgba(184, 120, 120, 0.2);
  --lp-shadow-xl: 0 20px 60px rgba(232, 117, 90, 0.2);

  /* Radius */
  --lp-r: 12px;
  --lp-r-lg: 20px;
  --lp-r-xl: 32px;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--lp-gray900);
  background: var(--lp-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.lp-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(232, 180, 184, 0.1);
  color: var(--lp-pink);
  margin-bottom: 14px;
}
.lp-section-label.blue {
  background: rgba(184, 120, 120, 0.1);
  color: var(--lp-blue);
}
.lp-section-label.navy {
  background: rgba(30, 45, 90, 0.08);
  color: var(--lp-navy);
}
.lp-section-label.gold {
  background: rgba(249, 168, 38, 0.12);
  color: #b87a0a;
}
.lp-section-label.green {
  background: rgba(46, 158, 110, 0.1);
  color: var(--lp-green);
}

.lp-gold-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-pink), var(--lp-gold));
  border-radius: 2px;
  margin: 16px auto 0;
}
.lp-gold-line.left {
  margin-left: 0;
}

/* ---- LAYOUT ---- */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-section {
  padding: 88px 0;
}
.lp-section-sm {
  padding: 56px 0;
}

/* ---- NAVBAR ---- */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s;
}
.lp-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(232, 117, 90, 0.15);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  font-family: "Playfair Display", serif;
  flex-shrink: 0;
}
.lp-nav-brand-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--lp-navy);
  font-family: "Playfair Display", serif;
}
.lp-nav-brand-text span {
  font-size: 0.7rem;
  color: var(--lp-gray500);
  font-weight: 500;
}
.lp-nav.on-hero .lp-nav-brand-text strong {
  color: #fff;
}
.lp-nav.on-hero .lp-nav-brand-text span {
  color: rgba(255, 255, 255, 0.75);
}

.lp-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.lp-nav-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--lp-gray700);
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.lp-nav.on-hero .lp-nav-menu a {
  color: rgba(255, 255, 255, 0.85);
}
.lp-nav-menu a:hover,
.lp-nav-menu a.active {
  background: rgba(232, 180, 184, 0.1);
  color: var(--lp-pink);
}
.lp-nav.on-hero .lp-nav-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Dropdown */
.lp-dropdown {
  position: relative;
}
.lp-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: var(--lp-r);
  box-shadow: var(--lp-shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  border: 1px solid var(--lp-gray100);
  z-index: 100;
}
.lp-dropdown:hover .lp-dropdown-menu,
.lp-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lp-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.84rem;
  border-radius: 8px;
  color: var(--lp-gray700) !important;
  background: none !important;
}
.lp-dropdown-menu a:hover {
  background: var(--lp-gray50) !important;
  color: var(--lp-pink) !important;
}
.lp-dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 2px;
  transition: transform 0.2s;
}
.lp-dropdown:hover .lp-dropdown-arrow {
  transform: rotate(180deg);
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--lp-grad);
  color: #fff !important;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(232, 180, 184, 0.3);
}
.lp-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.4);
}

.lp-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.lp-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.lp-nav.scrolled .lp-nav-toggle span {
  background: var(--lp-navy);
}

/* ---- HERO ---- */
.lp-hero {
  min-height: 100vh;
  background: var(--lp-grad);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}
.lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.lp-hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 70%
  );
  top: -20%;
  right: -10%;
}
.lp-hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(249, 168, 38, 0.18) 0%,
    transparent 70%
  );
  bottom: -15%;
  left: -8%;
}
.lp-hero-orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  top: 30%;
  left: 30%;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 120px 28px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.lp-hero h1 em {
  color: var(--lp-gold);
  font-style: italic;
}
.lp-hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 550px;
  text-align: justify;
}
.lp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--lp-gold);
  color: #7a5c00;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--lp-r);
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(249, 168, 38, 0.35);
}
.lp-btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 168, 38, 0.45);
}
.lp-btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--lp-r);
  text-decoration: none;
  transition: all 0.25s;
}
.lp-btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Hero stats */
.lp-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.lp-hero-stat {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--lp-r);
  padding: 16px 20px;
}
.lp-hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.lp-hero-stat-num span {
  font-size: 1rem;
  opacity: 0.8;
}
.lp-hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

/* Hero visual */
.lp-hero-visual {
  position: relative;
}
.lp-hero-cards-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.lp-hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-xl);
}
.lp-hero-card-header {
  height: 6px;
  background: var(--lp-grad);
}
.lp-hero-card-body {
  padding: 24px;
}
.lp-hero-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 14px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(232, 117, 90, 0.3);
}
.lp-hero-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--lp-navy);
  margin-bottom: 4px;
}
.lp-hero-card-role {
  font-size: 0.8rem;
  color: var(--lp-gray500);
  margin-bottom: 14px;
}
.lp-hero-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lp-hero-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(232, 180, 184, 0.1);
  color: var(--lp-pink);
}

.lp-hero-card-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: var(--lp-r);
  padding: 14px 18px;
  box-shadow: var(--lp-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.lp-hero-float-icon {
  width: 36px;
  height: 36px;
  background: rgba(46, 158, 110, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.lp-hero-float-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lp-navy);
  line-height: 1;
}
.lp-hero-float-label {
  font-size: 0.7rem;
  color: var(--lp-gray500);
}

/* ---- STATS BAR ---- */
.lp-stats-bar {
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
  margin-top: -40px;
  border-radius: var(--lp-r-xl);
  overflow: hidden;
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lp-stat-item {
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--lp-gray100);
  position: relative;
  transition: all 0.2s;
}
.lp-stat-item:last-child {
  border-right: none;
}
.lp-stat-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lp-grad);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.lp-stat-item:hover::after {
  transform: scaleX(1);
}
.lp-stat-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.lp-stat-num {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  background: var(--lp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.lp-stat-label {
  font-size: 0.78rem;
  color: var(--lp-gray500);
  margin-top: 4px;
}

/* ---- HERO SLIDER ---- */
.lp-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-r-lg);
}
.lp-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-slide {
  min-width: 100%;
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.lp-slide-bg {
  position: absolute;
  inset: 0;
  background: var(--lp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.lp-slide-bg.s2 {
  background: linear-gradient(135deg, #2e9e6e, #b87878);
}
.lp-slide-bg.s3 {
  background: linear-gradient(135deg, #1e2d5a, #d4989d);
}
.lp-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}
.lp-slide-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  color: #fff;
}
.lp-slide-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.lp-slide-content p {
  font-size: 0.88rem;
  opacity: 0.85;
}

.lp-slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.lp-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-gray200);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.lp-slider-dot.active {
  background: var(--lp-pink);
  width: 24px;
  border-radius: 4px;
}
.lp-slider-prev,
.lp-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--lp-navy);
  box-shadow: var(--lp-shadow);
  z-index: 2;
  transition: all 0.2s;
}
.lp-slider-prev {
  left: 12px;
}
.lp-slider-next {
  right: 12px;
}
.lp-slider-prev:hover,
.lp-slider-next:hover {
  background: var(--lp-pink);
  color: #fff;
}

/* ---- ABOUT SECTION ---- */
.lp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: normal;
}
.lp-about-visual {
  position: relative;
}
.lp-about-img-main {
  border-radius: var(--lp-r-xl);
  overflow: hidden;
  background: var(--lp-grad);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 5rem;
  box-shadow: var(--lp-shadow-xl);
  padding-left: 15px;
}
.lp-about-img-float {
  position: absolute;
  bottom: 200px;
  right: -24px;
  background: #fff;
  border-radius: var(--lp-r);
  padding: 20px 24px;
  box-shadow: var(--lp-shadow-lg);
  min-width: 200px;
}
.lp-about-float-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  background: var(--lp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.lp-about-float-stat-label {
  font-size: 0.82rem;
  color: var(--lp-gray500);
  margin-top: 4px;
}

.lp-about-points {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-about-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--lp-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.lp-about-point h4 {
  font-size: 0.95rem;
  color: var(--lp-navy);
  margin-bottom: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}
.lp-about-point p {
  font-size: 0.82rem;
  color: var(--lp-gray500);
}

/* ---- PANDUAN SECTION ---- */
.lp-panduan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.lp-panduan-card {
  background: #fff;
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid var(--lp-gray100);
  transition: all 0.3s;
}
.lp-panduan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: rgba(232, 180, 184, 0.2);
}
.lp-panduan-card-top {
  height: 5px;
  background: var(--lp-grad);
}
.lp-panduan-card-top.green {
  background: linear-gradient(90deg, var(--lp-green), var(--lp-blue));
}
.lp-panduan-card-top.gold {
  background: linear-gradient(90deg, var(--lp-gold), var(--lp-pink));
}
.lp-panduan-card-body {
  padding: 28px;
}
.lp-panduan-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lp-grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.lp-panduan-card h3 {
  font-size: 1.05rem;
  color: var(--lp-navy);
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}
.lp-panduan-card p {
  font-size: 0.85rem;
  color: var(--lp-gray500);
  line-height: 1.65;
  margin-bottom: 20px;
}
.lp-panduan-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-pink);
  text-decoration: none;
  transition: gap 0.2s;
}
.lp-panduan-card-link:hover {
  gap: 10px;
}

/* ---- LINIMASA ---- */
.lp-timeline {
  position: relative;
  margin-top: 48px;
}
.lp-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lp-pink), var(--lp-blue));
  transform: translateX(-50%);
}
.lp-timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.lp-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.lp-timeline-item:nth-child(even) .lp-timeline-content {
  text-align: right;
}
.lp-timeline-dot {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(232, 117, 90, 0.3);
  z-index: 1;
  align-self: flex-start;
  margin-top: 8px;
}
.lp-timeline-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(232, 117, 90, 0.2);
}
.lp-timeline-content {
  flex: 1;
  background: #fff;
  border-radius: var(--lp-r-lg);
  padding: 24px 28px;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid var(--lp-gray100);
  transition: all 0.3s;
}
.lp-timeline-content:hover {
  box-shadow: var(--lp-shadow);
  border-color: rgba(232, 180, 184, 0.15);
}
.lp-timeline-period {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-pink);
  margin-bottom: 8px;
}
.lp-timeline-content h3 {
  font-size: 1.1rem;
  color: var(--lp-navy);
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}
.lp-timeline-content p {
  font-size: 0.85rem;
  color: var(--lp-gray500);
}
.lp-timeline-spacer {
  flex: 1;
}

/* ---- PROFIL CARDS (index) ---- */
.lp-profil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.lp-profil-card {
  background: #fff;
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid var(--lp-gray100);
  transition: all 0.3s;
}
.lp-profil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}
.lp-profil-card-hero {
  height: 120px;
  background: var(--lp-grad);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 20px;
}
.lp-profil-card-hero.v2 {
  background: linear-gradient(135deg, #2e9e6e, #b87878);
}
.lp-profil-card-hero.v3 {
  background: linear-gradient(135deg, #1e2d5a, #d4989d);
}
.lp-profil-card-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transform: translateY(30px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.lp-profil-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-profil-card-body {
  padding: 40px 20px 20px;
}
.lp-profil-card-code {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lp-gray500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.lp-profil-card-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--lp-navy);
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}
.lp-profil-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.lp-profil-card-meta span {
  font-size: 0.78rem;
  color: var(--lp-gray500);
}
.lp-profil-card-btn {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1.5px solid var(--lp-gray200);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-navy);
  text-decoration: none;
  transition: all 0.2s;
}
.lp-profil-card-btn:hover {
  background: var(--lp-grad);
  color: #fff;
  border-color: transparent;
}

/* Search bar */
.lp-search-bar {
  background: #fff;
  border-radius: var(--lp-r-xl);
  padding: 24px 28px;
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-gray100);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}
.lp-search-input {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--lp-gray50);
  border: 1.5px solid var(--lp-gray200);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--lp-gray700);
}
.lp-search-input input {
  border: none;
  background: none;
  outline: none;
  flex: 1;
  font-size: 0.88rem;
  color: var(--lp-gray700);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lp-search-select {
  padding: 10px 16px;
  background: var(--lp-gray50);
  border: 1.5px solid var(--lp-gray200);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--lp-gray700);
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  cursor: pointer;
}
.lp-search-btn {
  padding: 10px 24px;
  background: var(--lp-grad);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(232, 180, 184, 0.25);
}
.lp-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.35);
}

/* ---- ARTIKEL CARDS ---- */
.lp-artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.lp-artikel-card {
  background: #fff;
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid var(--lp-gray100);
  transition: all 0.3s;
}
.lp-artikel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}
.lp-artikel-thumb {
  height: 180px;
  background: var(--lp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.lp-artikel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-artikel-thumb.g2 {
  background: linear-gradient(135deg, #2e9e6e, #b87878);
}
.lp-artikel-thumb.g3 {
  background: linear-gradient(135deg, #f9a826, #e8b4b8);
}
.lp-artikel-body {
  padding: 20px;
}
.lp-artikel-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.lp-artikel-cat {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(232, 180, 184, 0.1);
  color: var(--lp-pink);
}
.lp-artikel-date {
  font-size: 0.72rem;
  color: var(--lp-gray500);
}
.lp-artikel-card h3 {
  font-size: 0.95rem;
  color: var(--lp-navy);
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.lp-artikel-card p {
  font-size: 0.82rem;
  color: var(--lp-gray500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.lp-artikel-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--lp-gray100);
}
.lp-artikel-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
}
.lp-artikel-author-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lp-gray700);
}

/* ---- CTA SECTION ---- */
.lp-cta {
  background: var(--lp-grad);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E")
    repeat;
}
.lp-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.lp-cta h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 16px;
}
.lp-cta h2 em {
  color: var(--lp-gold);
}
.lp-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}
.lp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.lp-footer {
  background: var(--lp-peach-blush);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.lp-footer-brand h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}
.lp-footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-top: 10px;
}
.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.lp-footer-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--lp-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  font-family: "Playfair Display", serif;
}
.lp-footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lp-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer ul a:hover {
  color: #fff;
}

.lp-footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.lp-footer-social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-footer-social:hover {
  background: var(--lp-pink);
  border-color: var(--lp-pink);
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- BUTTONS ---- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--lp-r);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.lp-btn-primary {
  background: var(--lp-grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 180, 184, 0.25);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 180, 184, 0.35);
}
.lp-btn-outline-grad {
  background: transparent;
  color: var(--lp-pink);
  border: 1.5px solid var(--lp-pink);
}
.lp-btn-outline-grad:hover {
  background: rgba(232, 180, 184, 0.06);
}
.lp-btn-white {
  background: #fff;
  color: var(--lp-navy);
}
.lp-btn-white:hover {
  background: var(--lp-gray50);
}
.lp-btn-gold {
  background: var(--lp-gold);
  color: #7a5c00;
  box-shadow: 0 4px 16px rgba(249, 168, 38, 0.3);
}
.lp-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 168, 38, 0.4);
}

/* ── LP-BTN ALIASES → mapped ke .btn dari components.css ── */
/* Semua class .btn-* dari components.css langsung bisa dipakai di landing page */
/* Alias lp-btn-* disediakan untuk backward compatibility */

.lp-btn-primary,
.lp-btn-blush {
  background: linear-gradient(135deg, #e8b4b8 0%, #d4989d 50%, #b87878 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 180, 184, 0.35);
}
.lp-btn-primary:hover,
.lp-btn-blush:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 180, 184, 0.45);
  filter: brightness(1.05);
}

.lp-btn-success {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}
.lp-btn-success:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.4);
}

.lp-btn-danger {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.28);
}
.lp-btn-danger:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.lp-btn-info {
  background: #0ea5e9;
  color: #fff;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.lp-btn-info:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

.lp-btn-warning {
  background: #f59e0b;
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.lp-btn-warning:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.lp-btn-dark {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.32);
}
.lp-btn-dark:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.lp-btn-light {
  background: #fff;
  color: #374151;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}
.lp-btn-light:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.lp-btn-plum {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}
.lp-btn-plum:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

/* Outline variants */
.lp-btn-outline-blush {
  background: transparent;
  color: #d4989d;
  border: 2px solid #e8b4b8;
}
.lp-btn-outline-blush:hover {
  background: linear-gradient(135deg, #e8b4b8, #b87878);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(232, 180, 184, 0.35);
}

.lp-btn-outline-dark {
  background: transparent;
  color: #1e293b;
  border: 2px solid #334155;
}
.lp-btn-outline-dark:hover {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  border-color: transparent;
}

.lp-btn-outline-success {
  background: transparent;
  color: #16a34a;
  border: 2px solid #16a34a;
}
.lp-btn-outline-success:hover {
  background: #16a34a;
  color: #fff;
}

/* ---- ANIMATION ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s !important;
}
.delay-2 {
  transition-delay: 0.2s !important;
}
.delay-3 {
  transition-delay: 0.3s !important;
}
.delay-4 {
  transition-delay: 0.4s !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
  }
  .lp-hero-visual {
    display: none;
  }
  .lp-about-grid {
    grid-template-columns: 1fr;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp-panduan-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp-profil-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp-artikel-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .lp-nav-menu {
    display: none;
  }
  .lp-nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px;
    box-shadow: var(--lp-shadow);
  }
  .lp-nav-toggle {
    display: flex;
  }
  .lp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp-timeline::before {
    left: 24px;
  }
  .lp-timeline-item,
  .lp-timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 64px;
  }
  .lp-timeline-item:nth-child(even) .lp-timeline-content {
    text-align: left;
  }
  .lp-timeline-dot {
    position: absolute;
    left: 0;
  }
  .lp-timeline-spacer {
    display: none;
  }
  .lp-timeline-item {
    position: relative;
  }
  .lp-panduan-grid,
  .lp-profil-grid,
  .lp-artikel-grid {
    grid-template-columns: 1fr;
  }
  .lp-hero-inner {
    padding-top: 100px;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
  .lp-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
