/* ===== Reset & Base Styles (scoped to landing page) ===== */
html:has(.landing-page),
html:has(.landing-page) body {
  overflow-x: hidden;
}

.landing-page {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: #ffffff;
  color: #1a1a2e;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

/* ===== CSS Variables ===== */
:root {
  --lp-primary: #2946b8;
  --lp-primary-light: #4a5fb8;
  --lp-primary-dark: #1a2d8f;
  --lp-primary-foreground: #ffffff;
  --lp-accent: #f4a322;
  --lp-accent-light: #f4b040;
  --lp-accent-dark: #d68a1a;
  --lp-accent-foreground: #1a1a2e;
  --lp-secondary: #f5f5f8;
  --lp-secondary-foreground: #2946b8;
  --lp-muted: #f0f0f5;
  --lp-muted-foreground: #6b7280;
  --lp-border: #e5e7eb;
  --lp-foreground: #1a1a2e;
  --lp-background: #ffffff;
  --lp-gradient-hero: linear-gradient(180deg, #1a397b 0%, #0053ff 150%);
  --lp-gradient-accent: linear-gradient(135deg, #f4a322 0%, #f48a00 100%);
  --lp-shadow-sm: 0 1px 2px rgba(0 0 0 / 0.05);
  --lp-shadow-md: 0 4px 6px rgba(0 0 0 / 0.07);
  --lp-shadow-lg: 0 10px 15px rgba(0 0 0 / 0.1);
  --lp-shadow-xl: 0 20px 25px rgba(0 0 0 / 0.1);
  --lp-radius-sm: 0.5rem;
  --lp-radius-md: 0.75rem;
  --lp-radius-lg: 1rem;
  --lp-radius-xl: 1.5rem;
  --lp-radius-2xl: 2rem;
  --lp-radius-full: 9999px;
}

/* ===== Typography ===== */
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  margin-top: 0;
}

.landing-page h1 { font-size: 2.5rem; }
.landing-page h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.landing-page h3 { font-size: 1.25rem; }

.landing-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  margin-top: 0;
}

.landing-page a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.landing-page img {
  max-width: 100%;
  height: auto;
}

.landing-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== Container ===== */
.lp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Navbar ===== */
.lp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.lp-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-border);
}

.lp-navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.lp-navbar-logo,
.landing-page .lp-navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.125rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.lp-navbar.scrolled .lp-navbar-logo,
.landing-page .lp-navbar.scrolled .lp-navbar-logo {
  color: var(--lp-foreground);
}

.lp-navbar-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0.25rem;
}

.lp-navbar-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .lp-navbar-menu { display: flex; }
}

.lp-nav-link,
.landing-page .lp-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.lp-navbar.scrolled .lp-nav-link,
.landing-page .lp-navbar.scrolled .lp-nav-link {
  color: var(--lp-muted-foreground);
}

.lp-nav-link:hover,
.landing-page .lp-nav-link:hover {
  color: var(--lp-primary-foreground);
}

.lp-navbar.scrolled .lp-nav-link:hover,
.landing-page .lp-navbar.scrolled .lp-nav-link:hover {
  color: var(--lp-foreground);
}

.lp-nav-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--lp-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--lp-gradient-accent);
  color: var(--lp-accent-foreground);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.lp-nav-btn:hover {
  opacity: 0.9;
  color: var(--lp-accent-foreground);
}

.lp-navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

@media (min-width: 768px) {
  .lp-navbar-toggle { display: none; }
}

.lp-hamburger-line {
  width: 1.5rem;
  height: 0.2rem;
  background: var(--lp-primary-foreground);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.lp-navbar.scrolled .lp-hamburger-line {
  background: var(--lp-foreground);
}

.lp-navbar-toggle.active .lp-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.lp-navbar-toggle.active .lp-hamburger-line:nth-child(2) {
  opacity: 0;
}

.lp-navbar-toggle.active .lp-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

.lp-navbar-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 2rem;
  background: rgba(41, 70, 184, 0.95);
  backdrop-filter: blur(10px);
}

.lp-navbar.scrolled .lp-navbar-mobile {
  background: var(--lp-background);
  border-bottom: 1px solid var(--lp-border);
}

.lp-navbar-mobile.active {
  display: flex;
}

@media (min-width: 768px) {
  .lp-navbar-mobile { display: none !important; }
}

.lp-nav-link-mobile,
.landing-page .lp-nav-link-mobile {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  display: block;
}

.lp-navbar.scrolled .lp-nav-link-mobile,
.landing-page .lp-navbar.scrolled .lp-nav-link-mobile {
  color: var(--lp-muted-foreground);
}

.lp-nav-btn-mobile {
  padding: 0.75rem 1.25rem;
  border-radius: var(--lp-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--lp-gradient-accent);
  color: var(--lp-accent-foreground);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

/* ===== Hero Section ===== */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: rgb(245, 245, 248);
}

.lp-hero-content {
  background: var(--lp-gradient-hero);
  position: relative;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lp-hero-content { padding: 8rem 1.5rem 6rem; }
}

.lp-hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 1024px) {
  .lp-hero-grid { min-height: 420px; }
}

@media (min-width: 1280px) {
  .lp-hero-grid { min-height: 460px; }
}

.lp-hero-text {
  color: white;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--lp-radius-full);
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.lp-hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .lp-hero-text h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .lp-hero-text h1 { font-size: 3.75rem; }
}

.lp-accent-text {
  color: #fbe66a;
}

.lp-hero-text > p {
  font-size: 1.125rem;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 500px;
}

.lp-hero-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.lp-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .lp-hero-buttons { flex-direction: row; }
}

.lp-hero-image {
  display: none;
  position: absolute;
  bottom: 0;
  right: 10%;
  z-index: 10;
}

@media (min-width: 1024px) {
  .lp-hero-image { display: block; }
}

@media (min-width: 1280px) {
  .lp-hero-image { right: 8%; }
}

@media (min-width: 1440px) {
  .lp-hero-image { right: 10%; }
}

.lp-hero-image::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(195, 255, 0, 0.3) 0%, rgba(239, 255, 15, 0.1) 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lp-hero-image img {
  width: 650px;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

@media (min-width: 1280px) {
  .lp-hero-image img { width: 780px; }
}

@media (min-width: 1440px) {
  .lp-hero-image img { width: 900px; }
}

/* Stats Box */
.lp-stats-box {
  max-width: 1280px;
  margin: -3.5rem auto 0;
  padding: 0 1.5rem;
  gap: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0 0 0 / 0.1);
  border: 1px solid var(--lp-border);
  position: relative;
  z-index: 20;
}

@media (min-width: 768px) {
  .lp-stats-box { grid-template-columns: repeat(4, 1fr); }
}

.lp-stat-item {
  margin: 2rem 0;
  text-align: center;
  padding: 0 0.5rem;
  border-right: 2px solid #1a1a1a;
  position: relative;
}

.lp-stat-item:nth-child(2) {
  border-right: none;
}

@media (min-width: 768px) {
  .lp-stat-item:nth-child(2) { border-right: 2px solid #1a1a1a; }
  .lp-stat-item:nth-child(4) { border-right: none; }
}

.lp-stat-item:last-child {
  border-right: none;
}

.lp-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-primary);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .lp-stat-value { font-size: 2.25rem; }
}

.lp-stat-label {
  font-size: 0.875rem;
  color: var(--lp-muted-foreground);
  margin-top: 0.25rem;
}

/* ===== Buttons ===== */
.lp-btn {
  padding: 1rem 2rem;
  border-radius: var(--lp-radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.lp-btn-primary {
  background: var(--lp-gradient-accent);
  color: var(--lp-accent-foreground);
  box-shadow: 0 10px 20px rgba(244, 163, 34, 0.3);
}

.lp-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--lp-accent-foreground);
}

.lp-btn-secondary,
.landing-page .lp-btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
}

.lp-btn-secondary:hover,
.landing-page .lp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.lp-btn-gradient {
  background: var(--lp-gradient-accent);
  color: var(--lp-accent-foreground);
  box-shadow: 0 10px 20px rgba(244, 163, 34, 0.3);
}

.lp-btn-gradient:hover {
  opacity: 0.9;
  color: var(--lp-accent-foreground);
}

.lp-btn-cta-secondary,
.landing-page .lp-btn-cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: transparent;
}

.lp-btn-cta-secondary:hover,
.landing-page .lp-btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.lp-btn-blue {
  background: var(--lp-primary);
  color: white;
  box-shadow: 0 10px 20px rgba(41, 70, 184, 0.3);
}

.lp-btn-blue:hover {
  color: white;
  opacity: 0.9;
}

/* ===== Section Badges ===== */
.lp-section-badge {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lp-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* ===== Why Section ===== */
.lp-why-section {
  padding: 5rem 0 3rem;
  background: rgb(245, 245, 248);
}

.lp-why-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .lp-why-header { grid-template-columns: 1fr 1fr; }
}

.lp-why-header h2 {
  font-size: 1.875rem;
  margin-top: 0.75rem;
  color: var(--lp-primary);
}

@media (min-width: 768px) {
  .lp-why-header h2 { font-size: 2.25rem; }
}

.lp-why-header-desc {
  color: var(--lp-muted-foreground);
  max-width: 500px;
}

.lp-why-images {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.lp-why-images img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--lp-shadow-lg);
  transition: transform 0.3s ease;
}

.lp-why-images img:first-child {
  transform: translateY(-15px);
}

@media (min-width: 640px) {
  .lp-why-images { gap: 0.75rem; }
  .lp-why-images img { width: 180px; height: 180px; }
  .lp-why-images img:first-child { transform: translateY(-20px); }
}

@media (min-width: 768px) {
  .lp-why-images { gap: 1rem; }
  .lp-why-images img { width: 250px; height: 250px; }
  .lp-why-images img:first-child { transform: translateY(-25px); }
}

@media (min-width: 1024px) {
  .lp-why-images { justify-content: flex-end; gap: 1.5rem; }
  .lp-why-images img { width: 300px; height: 300px; }
  .lp-why-images img:first-child { transform: translateY(-30px); }
}

/* Features Grid */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .lp-features-grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-feature-card {
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--lp-border);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  text-align: left;
}

.lp-feature-card:hover {
  box-shadow: var(--lp-shadow-md);
}

.lp-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgb(230, 230, 248);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.lp-feature-card h3 {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--lp-foreground);
  margin-bottom: 0.25rem;
}

.lp-feature-card p {
  font-size: 0.75rem;
  color: var(--lp-muted-foreground);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===== Enrollment Banner ===== */
.lp-enrollment-banner {
  background: linear-gradient(135deg, #16165a 0%, #41288a 100%);
  padding: 1rem 0;
  position: relative;
}

.lp-enrollment-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-enrollment-icon {
  font-size: 1.5rem;
}

.lp-enrollment-text {
  display: flex;
  flex-direction: column;
  color: white;
}

.lp-enrollment-label {
  font-weight: 700;
  font-size: 0.875rem;
}

.lp-enrollment-count {
  font-size: 0.75rem;
  opacity: 0.8;
}

.lp-enrollment-progress-bar {
  width: 150px;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--lp-radius-full);
  overflow: hidden;
}

.lp-progress-fill {
  height: 100%;
  background: var(--lp-gradient-accent);
  border-radius: var(--lp-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--lp-accent-foreground);
  transition: width 0.5s ease;
}

.lp-enrollment-cta {
  padding: 0.5rem 1.25rem;
  background: var(--lp-gradient-accent);
  color: var(--lp-accent-foreground);
  border-radius: var(--lp-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.lp-enrollment-cta:hover {
  opacity: 0.9;
  color: var(--lp-accent-foreground);
}

.lp-enrollment-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.25rem;
}

.lp-enrollment-close:hover {
  color: white;
}

/* ===== Program Section ===== */
.lp-program-section {
  padding: 5rem 0;
  position: relative;
  background: white;
}

.lp-program-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(41, 70, 184, 0.02) 20px, rgba(41, 70, 184, 0.02) 21px);
  pointer-events: none;
}

.lp-program-section::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 320px; height: 320px;
  background: rgb(230, 230, 248);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  transform: translateY(-50%);
  pointer-events: none;
}

.lp-program-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 10;
}

.lp-program-header h2 {
  margin: 0.75rem 0;
  font-size: 2rem;
  color: var(--lp-primary);
}

@media (min-width: 768px) {
  .lp-program-header h2 { font-size: 2.25rem; }
}

.lp-program-header p {
  color: var(--lp-muted-foreground);
  max-width: 500px;
  margin: 1rem auto 0;
}

.lp-table-wrapper {
  overflow-x: auto;
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--lp-shadow-xl);
  position: relative;
  z-index: 10;
}

.lp-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.lp-pricing-table thead {
  background: linear-gradient(135deg, #362c8c 0%, #391d72 50%, #381c54 100%);
  color: white;
}

.lp-pricing-table th {
  padding: 1rem;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.lp-pricing-table th:last-child {
  text-align: right;
}

.lp-pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  vertical-align: middle;
}

.lp-pricing-table tbody tr {
  transition: background-color 0.3s ease;
}

.lp-pricing-table tbody tr:nth-child(odd) {
  background: rgba(230, 230, 248, 0.3);
}

.lp-pricing-table tbody tr:hover {
  background: rgba(41, 70, 184, 0.05);
}

.lp-pricing-table tbody tr.lp-popular {
  background: rgba(244, 163, 34, 0.15);
}

.lp-pricing-table tbody tr.lp-popular:hover {
  background: rgba(244, 163, 34, 0.2);
}

.lp-pricing-table tbody tr.lp-popular td:first-child {
  border-left: 4px solid var(--lp-accent);
  padding-left: calc(1rem - 4px);
}


.lp-pricing-table td > div {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(41, 70, 184, 0.1);
}

.lp-pricing-table td > div:last-child {
  border-bottom: none;
}

.lp-pricing-table .lp-total {
  text-align: right;
  color: var(--lp-primary);
  font-weight: bold;
}

.lp-duration-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgb(230, 230, 248);
  color: var(--lp-primary);
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.75rem;
}

.lp-duration-label {
  font-size: 0.7rem;
  color: var(--lp-muted-foreground);
  margin-top: 0.125rem;
}

.lp-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  margin-left: 0.5rem;
  background: var(--lp-gradient-accent);
  color: var(--lp-accent-foreground);
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pricing Table Footer */
.lp-pricing-footer {
  background: linear-gradient(135deg, #362c8c 0%, #391d72 50%, #381c54 100%);
  border-radius: 0 0 1rem 1rem;
  padding: 1.5rem 2rem;
}

.lp-pricing-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.lp-pricing-footer-content p {
  color: white;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.lp-pricing-footer-btn {
  background: var(--lp-accent);
  color: #1a1a1a;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
}

.lp-pricing-footer-btn:hover {
  background: #f59c0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 163, 34, 0.3);
  color: #1a1a1a;
}

@media (max-width: 640px) {
  .lp-pricing-footer-content { flex-direction: column; align-items: flex-start; }
  .lp-pricing-footer { padding: 1.5rem 1rem; }
  .lp-pricing-footer-content p { font-size: 0.875rem; }
  .lp-pricing-footer-btn { width: 100%; text-align: center; }
}

/* Empty programs state */
.lp-empty-programs {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--lp-shadow-xl);
  position: relative;
  z-index: 10;
}

.lp-empty-programs p {
  color: var(--lp-muted-foreground);
}

/* ===== Testimoni Section ===== */
.lp-testimoni-section {
  padding: 5rem 0;
  background: rgb(245, 245, 248);
}

.lp-testimoni-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .lp-testimoni-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.lp-testimoni-left h2 {
  font-size: 1.875rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  color: var(--lp-primary);
}

@media (min-width: 768px) {
  .lp-testimoni-left h2 { font-size: 2.25rem; }
}

.lp-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.lp-stars {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

.lp-rating-text {
  font-size: 0.875rem;
  color: var(--lp-muted-foreground);
}

.lp-testimoni-image {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}

.lp-testimoni-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-view-reviews,
.landing-page .lp-view-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-primary);
  margin-top: 1rem;
}

.lp-view-reviews:hover,
.landing-page .lp-view-reviews:hover {
  color: var(--lp-primary-dark);
}

.lp-testimoni-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0.5rem;
}

@media (min-width: 1024px) {
  .lp-testimoni-right {
    max-height: 580px;
    overflow-y: auto;
  }
}

.lp-testimoni-right::-webkit-scrollbar { width: 4px; }
.lp-testimoni-right::-webkit-scrollbar-track { background: transparent; }
.lp-testimoni-right::-webkit-scrollbar-thumb { background: var(--lp-border); border-radius: 2px; }
.lp-testimoni-right::-webkit-scrollbar-thumb:hover { background: var(--lp-muted-foreground); }

.lp-testimonial-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--lp-border);
}

.lp-testimonial-stars {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.lp-testimonial-card p {
  font-size: 0.875rem;
  color: var(--lp-muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-author-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--lp-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.lp-author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-foreground);
}

/* ===== Inhouse Section ===== */
.lp-inhouse-section {
  padding: 5rem 0;
  background: white;
}

.lp-inhouse-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lp-inhouse-grid { grid-template-columns: 1fr 1fr; }
}

.lp-inhouse-image {
  width: 100%;
  height: 300px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}

@media (min-width: 768px) {
  .lp-inhouse-image { height: 350px; }
}

.lp-inhouse-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-inhouse-content h2 {
  font-size: 1.875rem;
  color: var(--lp-primary);
}

@media (min-width: 768px) {
  .lp-inhouse-content h2 { font-size: 2.25rem; }
}

.lp-inhouse-content > p {
  color: var(--lp-muted-foreground);
  margin: 1.25rem 0;
}

.lp-inhouse-benefits {
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-inhouse-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--lp-foreground);
}

.lp-check {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--lp-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent-foreground);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ===== CTA Section ===== */
.lp-cta-section {
  padding: 4rem 0;
  background: rgb(245, 245, 248);
}

.lp-cta-box {
  background: linear-gradient(135deg, #16165a 0%, #41288a 100%);
  border-radius: 2.5rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lp-cta-box { padding: 4rem; }
}

.lp-cta-box::before,
.lp-cta-box::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.lp-cta-box::before {
  width: 6rem; height: 6rem;
  top: 50%; left: 2rem;
  transform: translateY(-50%);
}

.lp-cta-box::after {
  width: 8rem; height: 8rem;
  top: 50%; right: 2rem;
  transform: translateY(-50%);
}

.lp-cta-box h2 {
  color: white;
  position: relative;
  z-index: 10;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .lp-cta-box h2 { font-size: 2.25rem; }
}

.lp-cta-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 2rem;
  position: relative;
  z-index: 10;
}

.lp-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .lp-cta-buttons { flex-direction: row; justify-content: center; }
}

/* ===== FAQ Section ===== */
.lp-faq-section {
  padding: 5rem 0;
  background: rgb(245, 245, 248);
}

.lp-faq-header {
  text-align: center;
  margin: 0 auto 3rem;
}

.lp-faq-header h2 {
  font-size: 1.875rem;
  margin: 0.75rem 0;
  color: var(--lp-primary);
}

@media (min-width: 768px) {
  .lp-faq-header h2 { font-size: 2.25rem; }
}

.lp-faq-header p {
  color: var(--lp-muted-foreground);
}

.lp-faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.lp-accordion-item {
  background: white;
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.lp-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-foreground);
  transition: all 0.3s ease;
  text-align: left;
  font-family: inherit;
}

.lp-accordion-header:hover {
  background: rgba(41, 70, 184, 0.05);
}

.lp-accordion-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.lp-accordion-item.active .lp-accordion-icon {
  transform: rotate(45deg);
}

.lp-accordion-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--lp-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.lp-accordion-item.active .lp-accordion-content {
  display: block;
  border-top: 1px solid var(--lp-border);
  padding-top: 1.25rem;
}

/* ===== Footer ===== */
.lp-footer {
  background: var(--lp-foreground);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .lp-footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.lp-footer-logo-img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.25rem;
}

.lp-footer-col > p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.lp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.lp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.lp-contact-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.lp-contact-item a,
.landing-page .lp-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.lp-contact-item a:hover,
.landing-page .lp-contact-item a:hover {
  color: #ffffff;
}

.lp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.lp-footer-links a,
.landing-page .lp-footer-links a,
.lp-footer-links span {
  color: rgba(255, 255, 255, 0.7);
}

.lp-footer-links a:hover,
.landing-page .lp-footer-links a:hover {
  color: #ffffff;
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.lp-footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.lp-footer-bottom-links a,
.landing-page .lp-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.lp-footer-bottom-links a:hover,
.landing-page .lp-footer-bottom-links a:hover {
  color: #ffffff;
}

.lp-footer-bottom p {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
}

.lp-footer-bottom p:first-of-type {
  color: white;
  font-weight: 600;
}

/* ===== WhatsApp Float ===== */
.lp-whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}

.lp-whatsapp-float,
.landing-page .lp-whatsapp-float {
  color: #ffffff;
}

.lp-whatsapp-float:hover,
.landing-page .lp-whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.lp-whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
}


/* ===== Responsive Table (Card Layout on Mobile) ===== */
@media (max-width: 768px) {
  .lp-pricing-table thead {
    display: none;
  }

  .lp-pricing-table,
  .lp-pricing-table tbody {
    display: block;
  }

  .lp-pricing-table tbody tr {
    display: block;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    background: #fff;
  }

  .lp-pricing-table tbody tr:nth-child(odd) {
    background: rgba(230, 230, 248, 0.15);
  }

  .lp-pricing-table tbody tr.lp-popular {
    border: 2px solid var(--lp-accent);
  }

  .lp-pricing-table tbody tr.lp-popular td:first-child {
    border-left: none;
    padding-left: 0;
  }

  .lp-pricing-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    font-size: 0.875rem;
  }

  .lp-pricing-table td:last-child {
    border-bottom: none;
  }

  .lp-pricing-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--lp-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    margin-right: 1rem;
  }

  .lp-pricing-table .lp-td-no {
    display: none;
  }

  .lp-pricing-table .lp-td-program {
    display: block;
    font-size: 1rem;
    color: var(--lp-primary);
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 2px solid var(--lp-primary);
  }

  .lp-pricing-table .lp-td-program::before {
    display: none;
  }

  .lp-pricing-table .lp-total {
    text-align: right;
    font-size: 1rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .landing-page h1 { font-size: 1.875rem; }
  .landing-page h2 { font-size: 1.5rem; }
  .lp-btn { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
}
