/* ============================================================
   Landing.module.css
   Indigo & Slate SaaS Overhaul (2026 Standards)
   Prefix: lp_
   ============================================================ */

:root {
  --lp-font: 'Inter', 'Segoe UI', sans-serif;
  --lp-slate-dark: #0f172a;
  --lp-slate-gray: #475569;
  --lp-slate-light: #94a3b8;
  --lp-white: #ffffff;
  --lp-gray-soft: #f8fafc;
  --lp-gray-border: #e2e8f0;
  --lp-indigo: #4f46e5;
  --lp-indigo-hover: #4338ca;
  --lp-cyan: #06b6d4;
  --lp-indigo-gradient: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  --lp-cyan-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --lp-shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.05);
  --lp-shadow-glow: 0 20px 40px rgba(79, 70, 229, 0.15);
  --lp-shadow-float: 0 30px 60px rgba(15, 23, 42, 0.1);
  --lp-radius: 16px;
  --lp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.lp_landing_page {
  margin: 0;
  font-family: var(--lp-font);
  color: var(--lp-slate-dark);
  background: var(--lp-gray-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

.lp_container {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
}

.lp_section {
  padding: 100px 0;
}

.lp_section_alt {
  background: var(--lp-white);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--lp-slate-dark);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lp_hero_visual_container {
  position: relative;
  height: 500px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-radius: 32px;
}

.lp_hero_visual_glass {
  width: 100%;
  height: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* --- Buttons --- */
.lp_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--lp-transition);
  text-decoration: none;
  border: 1px solid transparent;
}

.lp_btn_indigo {
  background: var(--lp-indigo);
  color: var(--lp-white);
}

.lp_btn_indigo:hover {
  background: var(--lp-indigo-hover);
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-glow);
}

.lp_btn_ghost {
  background: transparent;
  color: var(--lp-slate-dark);
  border-color: var(--lp-gray-border);
}

.lp_btn_ghost:hover {
  background: var(--lp-white);
  border-color: var(--lp-slate-light);
  transform: translateY(-2px);
}

.lp_eyebrow {
  margin: 0 0 12px;
  color: var(--lp-indigo);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
}

/* --- Header / Navbar --- */
.lp_header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: box-shadow var(--lp-transition);
}

.lp_header_scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.lp_shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp_brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  color: var(--lp-slate-dark);
  font-size: 1.2rem;
}

.lp_brand_mark {
  background: var(--lp-indigo-gradient);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.05em;
}

.lp_nav_wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp_nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp_nav a {
  color: var(--lp-slate-gray);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--lp-transition);
  text-decoration: none;
}

.lp_nav a:hover,
.lp_nav a.lp_active {
  color: var(--lp-indigo);
}

.lp_header_actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Hero Section --- */
.lp_hero {
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 30%), var(--lp-gray-soft);
}

.lp_hero_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.lp_hero_copy h1 {
  font-size: clamp(3rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--lp-slate-dark);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.lp_hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px 4px 4px;
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-border);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-slate-gray);
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.lp_hero_badge span {
  background: var(--lp-cyan-gradient);
  color: var(--lp-white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp_hero_lead {
  font-size: 1.25rem;
  color: var(--lp-slate-light);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
}

.lp_hero_actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Floating UI Visual --- */
.lp_hero_visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp_floating_card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-float);
  padding: 24px;
  animation: lp_float 6s ease-in-out infinite;
}

.lp_floating_card_1 {
  top: 15%;
  left: 0%;
  width: 260px;
  z-index: 2;
  animation-delay: 0s;
}

.lp_floating_card_2 {
  bottom: 20%;
  right: 5%;
  width: 280px;
  z-index: 3;
  animation-delay: -2s;
  background: var(--lp-slate-dark);
  color: var(--lp-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.lp_floating_card_3 {
  top: 45%;
  left: 45%;
  width: 300px;
  z-index: 1;
  animation-delay: -4s;
}

@keyframes lp_float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Mini Elements for Hero Mockups */
.lp_mini_badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--lp-indigo);
  color: var(--lp-white);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.lp_mini_avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-cyan-gradient);
  margin-bottom: 16px;
}
.lp_mini_chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  margin-top: 16px;
}
.lp_mini_chart_bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.lp_mini_chart_bar:nth-child(1) { height: 40%; }
.lp_mini_chart_bar:nth-child(2) { height: 70%; }
.lp_mini_chart_bar:nth-child(3) { height: 50%; }
.lp_mini_chart_bar:nth-child(4) { height: 100%; background: var(--lp-cyan); }

/* --- Quick Facts Banner (Task 2) --- */
.lp_banner_dark {
  background: var(--lp-slate-dark);
  color: var(--lp-white);
  padding: 80px 0;
  text-align: center;
}

.lp_banner_dark .lp_eyebrow {
  color: var(--lp-cyan);
}

.lp_banner_dark h2 {
  color: var(--lp-white);
}

.lp_banner_dark p {
  color: var(--lp-slate-light);
  margin-top: 16px;
  font-size: 1.1rem;
}

.lp_stats_innovative {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
  perspective: 1000px;
}

.lp_stat_item_innovative {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

.lp_stat_parallax_layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.lp_stat_item_innovative:nth-child(1) { transform: translateY(-20px); }
.lp_stat_item_innovative:nth-child(2) { transform: translateY(20px); }
.lp_stat_item_innovative:nth-child(3) { transform: translateY(-10px); }

.lp_stat_value_innovative {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 12px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

.lp_text_gradient_1 { background-image: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); }
.lp_text_gradient_2 { background-image: linear-gradient(135deg, #a855f7 0%, #ec4899 100%); }
.lp_text_gradient_3 { background-image: linear-gradient(135deg, #10b981 0%, #3b82f6 100%); }

.lp_stat_label_innovative {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-slate-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp_stat_label_innovative i {
  color: var(--lp-white);
  width: 20px;
}

@keyframes innovativeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.lp_stat_item_innovative:nth-child(1) .lp_stat_value_innovative { animation: innovativeFloat 6s ease-in-out infinite; }
.lp_stat_item_innovative:nth-child(2) .lp_stat_value_innovative { animation: innovativeFloat 7s ease-in-out infinite 1s; }
.lp_stat_item_innovative:nth-child(3) .lp_stat_value_innovative { animation: innovativeFloat 5.5s ease-in-out infinite 2s; }

/* --- Features Section --- */
.lp_section_heading {
  max-width: 600px;
  margin-bottom: 56px;
}

.lp_section_heading_center {
  margin: 0 auto 56px;
  text-align: center;
}

.lp_section_heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.lp_feature_galaxy {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--lp-slate-dark);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.lp_orb {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.lp_orb_core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lp-cyan-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.5);
  color: var(--lp-white);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.lp_orb_core i {
  width: 32px;
  height: 32px;
}

.lp_orb_info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 20px;
  width: 320px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--lp-white);
  z-index: 1;
}

.lp_orb_info h3 {
  color: var(--lp-white);
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.lp_orb_info p {
  color: var(--lp-slate-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.lp_orb:hover {
  z-index: 10;
}

.lp_orb:hover .lp_orb_core {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.lp_orb:hover .lp_orb_info {
  opacity: 1;
  transform: translateX(0);
}

/* Animations */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -40px); }
  66% { transform: translate(-20px, 20px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, 30px); }
  66% { transform: translate(20px, -20px); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, 40px); }
  66% { transform: translate(-30px, -30px); }
}
@keyframes float4 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-30px, -20px); }
  66% { transform: translate(10px, 30px); }
}
@keyframes float5 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, 20px); }
  66% { transform: translate(-20px, -40px); }
}
@keyframes float6 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-20px, -40px); }
  66% { transform: translate(30px, 10px); }
}
@keyframes float7 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(25px, -25px); }
  66% { transform: translate(-25px, 25px); }
}

.lp_orb_1 { top: 15%; left: 10%; animation: float1 12s ease-in-out infinite; }
.lp_orb_2 { top: 40%; right: 10%; animation: float2 14s ease-in-out infinite; flex-direction: row-reverse; }
.lp_orb_2 .lp_orb_info { transform: translateX(20px); }
.lp_orb_3 { bottom: 15%; left: 35%; animation: float3 16s ease-in-out infinite; }
.lp_orb_4 { top: 20%; left: 50%; animation: float4 15s ease-in-out infinite; }
.lp_orb_5 { bottom: 20%; right: 30%; animation: float5 13s ease-in-out infinite; flex-direction: row-reverse; }
.lp_orb_5 .lp_orb_info { transform: translateX(20px); }
.lp_orb_6 { top: 60%; left: 15%; animation: float6 17s ease-in-out infinite; }
.lp_orb_7 { top: 10%; right: 30%; animation: float7 14s ease-in-out infinite; flex-direction: row-reverse; }
.lp_orb_7 .lp_orb_info { transform: translateX(20px); }

/* --- Course Cards Redesign (Task 3) --- */
.lp_courses {
  padding: 100px 0;
}

.lp_course_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.lp_course_card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 320px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  background: var(--lp-slate-dark);
  display: block;
}

.lp_course_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lp_course_cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.lp_course_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lp_course_card:hover .lp_course_img {
  transform: scale(1.1);
}

.lp_course_gradient {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.lp_course_card:hover .lp_course_gradient {
  opacity: 0;
}

.lp_course_basic_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lp_course_card:hover .lp_course_basic_info {
  opacity: 0;
  transform: translateY(10px);
}

.lp_course_category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--lp-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.lp_course_basic_info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lp-white);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp_course_reveal {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.lp_course_card:hover .lp_course_reveal {
  opacity: 1;
  transform: translateY(0);
}

.lp_reveal_price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-white);
  margin-bottom: 24px;
}

.lp_reveal_meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--lp-slate-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.lp_reveal_meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp_reveal_meta i {
  width: 16px;
  height: 16px;
  color: var(--lp-cyan);
}

.lp_hover_btn {
  background: var(--lp-indigo);
  color: var(--lp-white);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.lp_hover_btn:hover {
  background: var(--lp-indigo-dark);
}

/* Search bar styling */
.lp_course_search_container {
  margin: 0 auto 56px;
  max-width: 600px;
}

.lp_course_search {
  display: flex;
  align-items: center;
  background: var(--lp-white);
  border: 2px solid var(--lp-gray-border);
  border-radius: 999px;
  padding: 8px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lp_course_search:focus-within {
  border-color: var(--lp-indigo);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
}

.lp_course_search i {
  color: var(--lp-slate-gray);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.lp_course_search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--lp-slate-dark);
  outline: none;
}

.lp_course_search input::placeholder {
  color: var(--lp-slate-light);
}

.lp_course_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}

.lp_page_btn {
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-border);
  color: var(--lp-slate-dark);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lp_page_btn:hover:not(:disabled) {
  border-color: var(--lp-indigo);
  color: var(--lp-indigo);
  background: rgba(79, 70, 229, 0.05);
}

.lp_page_btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--lp-gray-soft);
}

.lp_page_indicator {
  font-weight: 700;
  color: var(--lp-slate-light);
  font-size: 0.95rem;
}

/* --- Interactive Verification Block (Task 4) --- */
.lp_verify_wrapper {
  background: var(--lp-slate-dark);
  color: var(--lp-white);
  border-radius: 32px;
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lp_verify_wrapper h2 {
  color: var(--lp-white);
  font-size: clamp(2.5rem, 4vw, 3rem);
}

.lp_verify_watermark {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transform: rotate(15deg);
}

.lp_verify_console {
  max-width: 640px;
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
}

.lp_verify_search_bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.lp_verify_search_bar:focus-within {
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.lp_verify_search_bar i {
  color: var(--lp-slate-light);
  margin-right: 12px;
}

.lp_verify_input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-family: monospace;
  color: var(--lp-white);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.lp_verify_input:focus {
  outline: none;
}

.lp_verify_input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.lp_verify_btn {
  background: var(--lp-cyan-gradient);
  color: var(--lp-white);
  border: none;
  border-radius: 999px;
  padding: 0 32px;
  height: 52px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--lp-transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp_verify_btn i {
  color: white;
  margin: 0;
  transition: transform var(--lp-transition);
}

.lp_verify_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}

.lp_verify_btn:hover i {
  transform: translateX(4px);
}

/* --- Footer Redesign --- */
.lp_footer {
  background: var(--lp-slate-dark);
  color: var(--lp-white);
  padding: 100px 0 40px;
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Subtle glow behind the footer */
.lp_footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}

.lp_footer_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.lp_footer_col_brand .lp_brand_text {
  color: var(--lp-white);
}

.lp_footer_col_brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 300px;
}

.lp_footer_socials {
  display: flex;
  gap: 16px;
}

.lp_footer_socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--lp-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 0 !important;
}

.lp_footer_socials a svg,
.lp_footer_socials a i {
  width: 20px;
  height: 20px;
}

.lp_footer_socials a:hover {
  background: var(--lp-cyan-gradient);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.lp_footer_title {
  display: block;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 24px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp_footer_col a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 16px;
  font-weight: 500;
  transition: all var(--lp-transition);
}

.lp_footer_col a:hover {
  color: var(--lp-cyan);
  transform: translateX(4px);
}

.lp_footer_bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
}

.lp_footer_bottom_links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lp_footer_bottom_links a:hover {
  color: var(--lp-white);
}

/* Modal Fix */
.lp_modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}
.lp_modal.is-open {
  display: flex;
}
.lp_modal_dialog {
  background: var(--lp-white);
  border-radius: var(--lp-radius);
  max-width: 500px;
  width: 100%;
  padding: 32px;
  box-shadow: var(--lp-shadow-float);
  position: relative;
}

/* --- Mobile Nav / Hamburger --- */
.lp_hamburger {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--lp-slate-dark);
  cursor: pointer;
}

@media (max-width: 768px) {
  .lp_nav_wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 16px);
    left: 16px;
    right: 16px;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.05);
    z-index: 90;
    padding: 32px 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .lp_header.lp_mobile_open .lp_nav_wrapper {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  
  .lp_nav {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    width: 100%;
  }
  
  .lp_nav a {
    color: var(--lp-slate-dark);
    font-size: 1.25rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-radius: 12px;
    transition: background 0.3s;
  }
  
  .lp_nav a:active {
    background: rgba(15, 23, 42, 0.05);
  }
  
  .lp_header_actions {
    flex-direction: column;
    width: 100%;
    margin-top: 32px;
    gap: 16px;
  }

  .lp_header_actions .lp_btn {
    width: 100%;
    min-height: 56px;
    font-size: 1.05rem;
  }

  .lp_hamburger {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 100;
    transition: transform 0.3s ease;
  }
  
  .lp_header.lp_mobile_open .lp_hamburger {
    transform: rotate(90deg);
  }
}

@media (max-width: 992px) {
  .lp_hero_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp_hero_copy {
    text-align: center;
  }
  .lp_hero_actions {
    justify-content: center;
  }
  .lp_stats_grid, .lp_feature_grid, .lp_footer_grid, .lp_course_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp_stats_innovative {
    gap: 40px;
  }
  .lp_stats_grid, .lp_feature_grid, .lp_footer_grid, .lp_course_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lp_hero {
    padding: 100px 0 60px;
  }
  .lp_hero_copy h1 {
    font-size: 2.5rem;
  }
  .lp_hero_actions {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  .lp_hero_actions .lp_btn {
    width: auto;
    padding: 0 32px;
    min-height: 44px;
    font-size: 0.9rem;
  }
  .lp_hero_visual {
    height: 350px;
  }
  
  /* Features Galaxy Responsiveness */
  .lp_feature_galaxy {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 20px;
    gap: 24px;
    border-radius: 24px;
  }
  .lp_orb {
    position: relative !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    animation: none !important;
    flex-direction: column !important;
    text-align: center;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .lp_orb_core {
    width: 50px;
    height: 50px;
    margin: 0;
    flex-shrink: 0;
  }
  .lp_orb_core i {
    width: 20px;
    height: 20px;
  }
  .lp_orb_info {
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
    width: 100%;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
  }
  .lp_orb_info h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .lp_orb_info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
  }

  
  /* Verification section responsiveness */
  .lp_verify_wrapper {
    padding: 60px 24px;
    border-radius: 20px;
  }
  .lp_verify_wrapper h2 {
    font-size: 2rem;
  }
  .lp_verify_search_bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 16px;
    align-items: stretch;
  }
  .lp_verify_search_bar i {
    display: none; /* Hide magnifying glass on mobile stack */
  }
  .lp_verify_input {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  .lp_verify_btn {
    width: 100%;
    justify-content: center;
    height: 56px;
    border-radius: 12px;
  }
  
  /* Footer mobile */
  .lp_footer_bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .lp_footer_col_brand {
    text-align: center;
  }
  .lp_footer_col_brand p {
    margin: 0 auto 24px;
  }
  .lp_footer_socials {
    justify-content: center;
  }
}

