/* ============================================
   LANDING PAGE STYLES
   Modern Landing Page for Branding Hero
   ============================================ */

/* ==========================================
   GLOBAL STYLES
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Noto Sans JP',
    sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: #ffffff;
  overflow-x: hidden;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.lp-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.lp-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-nav-logo {
  font-family: 'Comfortaa', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.lp-nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.lp-nav-menu li a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.lp-nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.lp-nav-menu li a:hover {
  color: #3b82f6;
}

.lp-nav-menu li a:hover::after {
  width: 100%;
}

.lp-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #1e293b;
  padding: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .lp-nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .lp-nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .lp-nav-toggle {
    display: block;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.lp-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
  z-index: -1;
  overflow: hidden;
}

/* Animated gradient orbs */
.lp-hero-background::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background-image:
    radial-gradient(ellipse 600px 600px at 20% 30%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 500px 500px at 70% 20%, rgba(14, 165, 233, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 400px 400px at 40% 80%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 350px 350px at 80% 70%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
  animation: heroOrbs 20s ease-in-out infinite;
}

/* Dot pattern overlay */
.lp-hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  opacity: 0.6;
}

/* Floating geometric shapes container */
.lp-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-hero-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-hero-shape-1 {
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  left: 5%;
  animation: heroFloat1 15s ease-in-out infinite;
}

.lp-hero-shape-2 {
  width: 150px;
  height: 150px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 60%;
  right: 10%;
  animation: heroFloat2 18s ease-in-out infinite;
}

.lp-hero-shape-3 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 30%;
  right: 20%;
  animation: heroFloat3 12s ease-in-out infinite;
}

.lp-hero-shape-4 {
  width: 80px;
  height: 80px;
  border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
  bottom: 20%;
  left: 15%;
  animation: heroFloat1 20s ease-in-out infinite reverse;
}

/* Wave decoration at bottom */
.lp-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.lp-hero-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lp-hero-wave-path {
  fill: #ffffff;
}

/* Floating particles */
.lp-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.lp-hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.lp-hero-particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 10s;
}
.lp-hero-particle:nth-child(2) {
  left: 20%;
  top: 40%;
  animation-delay: 1s;
  animation-duration: 12s;
}
.lp-hero-particle:nth-child(3) {
  left: 30%;
  top: 60%;
  animation-delay: 2s;
  animation-duration: 8s;
}
.lp-hero-particle:nth-child(4) {
  left: 60%;
  top: 30%;
  animation-delay: 0.5s;
  animation-duration: 14s;
}
.lp-hero-particle:nth-child(5) {
  left: 70%;
  top: 50%;
  animation-delay: 1.5s;
  animation-duration: 9s;
}
.lp-hero-particle:nth-child(6) {
  left: 80%;
  top: 70%;
  animation-delay: 2.5s;
  animation-duration: 11s;
}
.lp-hero-particle:nth-child(7) {
  left: 90%;
  top: 25%;
  animation-delay: 3s;
  animation-duration: 13s;
}
.lp-hero-particle:nth-child(8) {
  left: 50%;
  top: 80%;
  animation-delay: 0.8s;
  animation-duration: 10s;
}

@keyframes heroOrbs {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2%, 3%) rotate(5deg);
  }
  50% {
    transform: translate(-2%, 2%) rotate(-5deg);
  }
  75% {
    transform: translate(3%, -2%) rotate(3deg);
  }
}

@keyframes heroFloat1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(15deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-10deg);
  }
}

@keyframes heroFloat2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-40px, 20px) rotate(-20deg);
  }
  66% {
    transform: translate(20px, -40px) rotate(10deg);
  }
}

@keyframes heroFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-40px) translateX(20px);
    opacity: 1;
  }
  50% {
    transform: translateY(-80px) translateX(-10px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-40px) translateX(10px);
    opacity: 0.8;
  }
}

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

.lp-hero-content {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-hero-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.lp-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 400;
}

.lp-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   BUTTONS
   ========================================== */

.lp-btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.lp-btn-primary {
  background: white;
  color: #3b82f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.lp-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.lp-btn-outline:hover {
  background: white;
  color: #3b82f6;
}

.lp-btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* ==========================================
   SECTIONS
   ========================================== */

.lp-section {
  padding: 6rem 2rem;
  position: relative;
}

.lp-section-alt {
  background: #f8fafc;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.lp-section-bg-text {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
}

.lp-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.lp-section-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================
   FEATURES
   ========================================== */

.lp-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.lp-feature:last-child {
  margin-bottom: 0;
}

.lp-feature-number {
  width: 80px;
  height: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #3b82f6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  flex-shrink: 0;
}

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

.lp-feature-reverse .lp-feature-content {
  grid-template-columns: 1fr 1fr;
}

.lp-feature-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.lp-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.lp-feature-image:hover img {
  transform: scale(1.05);
}

.lp-feature-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.lp-feature-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* Reverse layout for alternating features */
.lp-feature-reverse .lp-feature-content {
  direction: rtl;
}

.lp-feature-reverse .lp-feature-text {
  direction: ltr;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .lp-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-feature-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto;
  }

  .lp-feature-content,
  .lp-feature-reverse .lp-feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
}

/* ==========================================
   GALLERY
   ========================================== */

.lp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lp-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lp-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.lp-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lp-gallery-item:hover img {
  transform: scale(1.1);
}

.lp-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.lp-gallery-item:hover .lp-gallery-caption {
  transform: translateY(0);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.lp-cta {
  padding: 6rem 2rem;
  background: #3b82f6;
  color: white;
  text-align: center;
}

.lp-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.lp-cta-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */

.lp-footer {
  background: #1e293b;
  color: #94a3b8;
  padding: 4rem 2rem 2rem;
}

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

.lp-footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-footer-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.lp-footer-description {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

.lp-footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.lp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}

.lp-footer-link svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lp-footer-link:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.lp-footer-link:hover svg {
  opacity: 1;
}

.lp-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.lp-footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.lp-footer-social {
  display: flex;
  gap: 1rem;
}

.lp-footer-social-link {
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lp-footer-social-link:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-4px);
}

.lp-footer-social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Mobile Responsive */
@media (max-width: 992px) {
  .lp-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .lp-footer {
    padding: 3rem 1.5rem 1.5rem;
  }

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

  .lp-footer-section {
    text-align: center;
  }

  .lp-footer-links {
    align-items: center;
  }

  .lp-footer-link:hover {
    transform: none;
  }

  .lp-footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 1.5rem;
  }

  .lp-footer-social {
    justify-content: center;
  }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */

.lp-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #3b82f6;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 999;
}

.lp-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lp-scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.lp-scroll-top svg {
  flex-shrink: 0;
  max-width: 20px;
  max-height: 20px;
}

/* ==========================================
   LIGHTBOX MODAL
   ========================================== */

.lp-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lp-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lp-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lp-lightbox-close:hover {
  background: #f8fafc;
  transform: scale(1.05);
}

.lp-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  animation: lightboxZoom 0.3s ease-out;
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lp-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   MOBILE-SPECIFIC OPTIMIZATIONS
   ========================================== */

/* Touch device optimizations */
.touch-device * {
  /* Prevent text selection on touch devices for better UX */
  -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
  -webkit-touch-callout: none;
}

.touch-device .lp-btn,
.touch-device .lp-nav-toggle,
.touch-device .lp-scroll-top,
.touch-device .lp-lightbox-close,
.touch-device .lp-gallery-item {
  /* Allow selection for interactive elements */
  -webkit-touch-callout: default;
}

/* Ensure minimum touch target size (44x44px for accessibility) */
.lp-btn,
.lp-nav-toggle,
.lp-scroll-top,
.lp-lightbox-close {
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation; /* Disable double-tap zoom */
}

.lp-nav-menu li a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Improve scrolling performance on iOS */
.lp-nav-menu,
.lp-lightbox {
  -webkit-overflow-scrolling: touch;
}

/* Prevent zoom on input focus (iOS) */
@media (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
  .lp-header {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .lp-nav {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }

  .lp-scroll-top {
    bottom: max(2rem, calc(2rem + env(safe-area-inset-bottom)));
    right: max(2rem, calc(2rem + env(safe-area-inset-right)));
  }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  /* Larger touch targets on mobile */
  .lp-btn {
    min-height: 48px;
    padding: 1.2rem 2rem;
  }

  .lp-nav-toggle {
    min-width: 48px;
    min-height: 48px;
  }

  /* Better spacing for mobile */
  .lp-section {
    padding: 4rem 1.5rem;
  }

  .lp-section-bg-text {
    font-size: 4rem;
    top: -10px;
  }

  /* Improved gallery grid on mobile */
  .lp-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lp-gallery-item img {
    height: 250px;
  }

  /* Always show gallery captions on mobile */
  .lp-gallery-caption {
    transform: translateY(0);
    font-size: 0.9rem;
    padding: 1rem;
  }

  /* Improve button layout */
  .lp-hero-actions {
    width: 100%;
  }

  .lp-btn {
    width: 100%;
    max-width: 320px;
  }

  /* Optimize feature layout for mobile */
  .lp-section-header {
    margin-bottom: 3rem;
  }

  /* Better lightbox on mobile */
  .lp-lightbox-content {
    max-width: 95%;
  }

  .lp-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .lp-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .lp-hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .lp-section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .lp-feature-number {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  .lp-feature-text h3 {
    font-size: 1.4rem;
  }
}

/* Landscape mobile optimization */
@media (max-height: 600px) and (orientation: landscape) {
  .lp-hero {
    min-height: auto;
    padding: 8rem 2rem 4rem;
  }

  .lp-hero-content {
    padding: 2rem 1rem;
  }

  .lp-section {
    padding: 3rem 2rem;
  }
}

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================
   MODERN HERO SECTION
   ========================================== */

.lp-hero-modern {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 4rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  overflow: hidden;
}

.lp-hero-bg-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.lp-hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float-orb 20s ease-in-out infinite;
}

.lp-hero-orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.lp-hero-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
}

.lp-hero-orb-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.lp-hero-modern .lp-hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.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: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.lp-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.lp-hero-modern .lp-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: white;
}

.lp-gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.lp-hide-mobile {
  display: inline;
}

.lp-hero-modern .lp-hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.lp-btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.lp-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lp-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lp-hero-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.lp-hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.lp-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual / Mockup */
.lp-hero-visual {
  position: relative;
  z-index: 1;
}

.lp-hero-mockup {
  perspective: 1000px;
}

.lp-mockup-browser {
  background: #1e293b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.lp-mockup-browser:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.lp-mockup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-mockup-dots {
  display: flex;
  gap: 6px;
}

.lp-mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.lp-mockup-dots span:nth-child(1) {
  background: #ef4444;
}

.lp-mockup-dots span:nth-child(2) {
  background: #eab308;
}

.lp-mockup-dots span:nth-child(3) {
  background: #22c55e;
}

.lp-mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.lp-mockup-content {
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 300px;
}

.lp-mockup-sidebar {
  background: #0f172a;
  padding: 1rem 0.5rem;
}

.lp-mockup-main {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-mockup-chart {
  height: 120px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.lp-mockup-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.4));
  clip-path: polygon(
    0 100%,
    10% 60%,
    25% 80%,
    40% 40%,
    55% 70%,
    70% 30%,
    85% 50%,
    100% 20%,
    100% 100%
  );
}

.lp-mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lp-mockup-card {
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================
   MODERN FEATURES SECTION
   ========================================== */

.lp-features-modern {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.lp-section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.lp-section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.lp-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.lp-section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.lp-features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-feature-card-modern {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.lp-feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.lp-feature-icon-svg {
  color: #ffffff;
}

.lp-feature-card-modern .lp-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.lp-feature-card-modern .lp-feature-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lp-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.lp-feature-link:hover {
  gap: 0.75rem;
}

.lp-feature-link svg {
  transition: transform 0.3s ease;
}

.lp-feature-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================
   MODERN BUTTONS
   ========================================== */

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-btn-primary {
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.lp-btn-secondary {
  padding: 0.875rem 1.75rem;
  background: white;
  color: #1e293b;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
}

.lp-btn-secondary:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

/* Outline button for light/colored backgrounds */
.lp-btn-outline-light {
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lp-btn-outline-light:hover {
  background: white;
  color: var(--lp-primary, #3b82f6);
  border-color: white;
}

/* ==========================================
   RESPONSIVE - MODERN SECTIONS
   ========================================== */

@media (max-width: 1024px) {
  .lp-hero-modern {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    text-align: center;
  }

  .lp-hero-modern .lp-hero-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .lp-hero-modern .lp-hero-buttons {
    justify-content: center;
  }

  .lp-hero-stats {
    justify-content: center;
  }

  .lp-hero-visual {
    display: none;
  }

  .lp-features-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-hero-modern {
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .lp-hero-title {
    font-size: 2rem;
  }

  .lp-hero-subtitle {
    font-size: 1rem;
  }

  .lp-hide-mobile {
    display: none;
  }

  .lp-hero-modern .lp-hero-buttons {
    flex-direction: column;
  }

  .lp-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .lp-hero-stat-divider {
    display: none;
  }

  .lp-features-modern {
    padding: 4rem 1.5rem;
  }

  .lp-features-grid-3 {
    grid-template-columns: 1fr;
  }

  .lp-section-title {
    font-size: 1.75rem;
  }
}

/* ==========================================
   MODERN PRICING SECTION
   ========================================== */

.lp-pricing-modern {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.lp-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.lp-toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  transition: color 0.3s ease;
}

.lp-toggle-label.lp-toggle-active {
  color: #0f172a;
  font-weight: 600;
}

/* Standard Toggle Switch using checkbox */
.lp-toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lp-toggle-switch:hover {
  background: #94a3b8;
}

.lp-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

/* Toggle Active State */
.lp-toggle-switch.active {
  background: #3b82f6;
}

.lp-toggle-switch.active .lp-toggle-slider {
  transform: translateX(24px);
}

.lp-toggle-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
}

.lp-pricing-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-pricing-card-modern {
  position: relative;
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-pricing-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.lp-pricing-featured {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-color: transparent;
  transform: scale(1.05);
}

.lp-pricing-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.lp-pricing-featured .lp-pricing-title,
.lp-pricing-featured .lp-pricing-desc,
.lp-pricing-featured .lp-pricing-currency,
.lp-pricing-featured .lp-pricing-amount,
.lp-pricing-featured .lp-pricing-period,
.lp-pricing-featured .lp-pricing-features li {
  color: white;
}

.lp-pricing-featured .lp-pricing-features svg {
  color: #22c55e;
}

.lp-pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
}

.lp-pricing-header {
  margin-bottom: 1.5rem;
}

.lp-pricing-card-modern .lp-pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.lp-pricing-desc {
  font-size: 0.9rem;
  color: #64748b;
}

.lp-pricing-price-wrapper {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.lp-pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.lp-pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.lp-pricing-period {
  font-size: 1rem;
  color: #64748b;
  margin-left: 0.25rem;
}

.lp-pricing-custom {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
}

.lp-pricing-features-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.lp-pricing-features-modern li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.lp-pricing-features-modern li:last-child {
  border-bottom: none;
}

.lp-pricing-features-modern svg {
  flex-shrink: 0;
  color: #22c55e;
}

.lp-btn-outline {
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lp-btn-outline:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

.lp-btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ==========================================
   BUTTON OVERRIDES FOR COLORED BACKGROUNDS
   ========================================== */

/* Override button colors on hero sections and gradient backgrounds */
.lp-hero .lp-btn-secondary,
.lp-hero .lp-btn-outline,
.lp-hero-modern .lp-btn-secondary,
.lp-hero-modern .lp-btn-outline,
section[style*='linear-gradient'] .lp-btn-secondary,
section[style*='linear-gradient'] .lp-btn-outline,
section[style*='background:'][style*='color: white'] .lp-btn-secondary,
section[style*='background:'][style*='color: white'] .lp-btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
}

.lp-hero .lp-btn-secondary:hover,
.lp-hero .lp-btn-outline:hover,
.lp-hero-modern .lp-btn-secondary:hover,
.lp-hero-modern .lp-btn-outline:hover,
section[style*='linear-gradient'] .lp-btn-secondary:hover,
section[style*='linear-gradient'] .lp-btn-outline:hover {
  background: white;
  color: var(--lp-primary, #3b82f6);
  border-color: white;
}

/* ==========================================
   MODERN TESTIMONIALS SECTION
   ========================================== */

.lp-testimonials-modern {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.lp-testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.lp-testimonial-card-modern {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-testimonial-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.lp-testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: #fbbf24;
}

.lp-testimonial-card-modern .lp-testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1.5rem;
}

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

.lp-testimonial-card-modern .lp-testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.lp-testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.125rem;
}

.lp-testimonial-role {
  font-size: 0.85rem;
  color: #64748b;
}

.lp-testimonials-logos {
  text-align: center;
}

.lp-logos-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.lp-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.lp-logo-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: -0.02em;
}

/* Responsive - Pricing & Testimonials */
@media (max-width: 1024px) {
  .lp-pricing-grid-modern {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .lp-pricing-featured {
    transform: none;
    order: -1;
  }

  .lp-pricing-featured:hover {
    transform: translateY(-8px);
  }

  .lp-testimonials-grid-modern {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .lp-pricing-modern,
  .lp-testimonials-modern {
    padding: 4rem 1.5rem;
  }

  .lp-pricing-toggle {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .lp-pricing-card-modern {
    padding: 2rem;
  }

  .lp-pricing-amount {
    font-size: 2.5rem;
  }

  .lp-logos-grid {
    gap: 2rem;
  }
}

/* ==========================================
   MODERN CTA SECTION
   ========================================== */

.lp-cta-modern {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #db2777 100%);
  overflow: hidden;
}

.lp-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.lp-cta-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.lp-cta-orb-1 {
  width: 600px;
  height: 600px;
  background: #60a5fa;
  top: -200px;
  right: -200px;
  animation: float-orb 15s ease-in-out infinite;
}

.lp-cta-orb-2 {
  width: 500px;
  height: 500px;
  background: #f472b6;
  bottom: -200px;
  left: -100px;
  animation: float-orb 18s ease-in-out infinite reverse;
}

.lp-cta-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.lp-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.lp-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-cta-badge svg {
  color: #fbbf24;
}

.lp-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.lp-gradient-text-white {
  background: linear-gradient(135deg, #fbbf24, #f472b6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.lp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.lp-btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  color: #1e40af;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lp-btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.lp-btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lp-btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.lp-cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.lp-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.lp-cta-trust-item svg {
  color: #4ade80;
}

/* ==========================================
   MODERN STATS SECTION
   ========================================== */

.lp-stats-modern {
  position: relative;
  padding: 6rem 2rem;
  background: #0f172a;
  overflow: hidden;
}

.lp-stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-stats-gradient-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
  background-size: 200% 100%;
  animation: gradient-shift 8s linear infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.lp-stats-modern .lp-section-title {
  color: white;
}

.lp-stats-modern .lp-section-subtitle {
  color: #94a3b8;
}

.lp-stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.lp-stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.lp-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lp-stat-card-featured {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(99, 102, 241, 0.3);
}

.lp-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  color: white;
}

.lp-stat-number-modern {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.lp-stat-unit {
  font-size: 1.5rem;
  opacity: 0.8;
}

.lp-stat-label-modern {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.lp-stat-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 999px;
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 500;
}

.lp-stat-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.lp-stat-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  border-radius: 3px;
  transition: width 1s ease;
}

.lp-stat-countries {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.lp-country-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
}

.lp-stat-online {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.lp-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

/* Responsive - CTA & Stats */
@media (max-width: 1024px) {
  .lp-stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-cta-modern,
  .lp-stats-modern {
    padding: 4rem 1.5rem;
  }

  .lp-cta-title {
    font-size: 2rem;
  }

  .lp-cta-description {
    font-size: 1rem;
  }

  .lp-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lp-btn-cta-primary,
  .lp-btn-cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .lp-cta-trust {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .lp-stats-grid-modern {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-stat-number-modern {
    font-size: 2rem;
  }
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.lp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.lp-team-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.lp-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.lp-team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.lp-team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.lp-team-role {
  font-size: 0.9rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 1rem;
}

.lp-team-card p:last-child {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .lp-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lp-team-grid {
    grid-template-columns: 1fr;
  }

  .lp-team-card {
    padding: 1.5rem;
  }
}

/* ==========================================
   CLASSIC FAQ SECTION
   ========================================== */

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
}

.lp-faq-list .lp-faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.lp-faq-list .lp-faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.lp-faq-list .lp-faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.lp-faq-list .lp-faq-answer {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .lp-faq-list {
    margin-top: 2rem;
  }

  .lp-faq-list .lp-faq-item {
    padding: 1.25rem 1.5rem;
  }

  .lp-faq-list .lp-faq-question {
    font-size: 1rem;
  }
}

/* ==========================================
   MODERN FAQ SECTION
   ========================================== */

.lp-faq-modern {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.lp-faq-header {
  margin-bottom: 4rem;
}

.lp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 999px;
  color: #6366f1;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.lp-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lp-faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.lp-faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.lp-faq-details {
  width: 100%;
}

.lp-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}

.lp-faq-summary::-webkit-details-marker {
  display: none;
}

.lp-faq-summary:hover {
  background: #f8fafc;
}

.lp-faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  flex: 1;
  text-align: left;
  padding-right: 1rem;
}

.lp-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 10px;
  color: #64748b;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lp-faq-details[open] .lp-faq-icon {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  transform: rotate(45deg);
}

.lp-faq-answer {
  padding: 0 2rem 1.5rem;
  animation: fadeIn 0.3s ease;
}

.lp-faq-answer p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-faq-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.lp-faq-cta p {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.lp-btn-outline-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lp-btn-outline-modern:hover {
  background: #3b82f6;
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* Responsive - FAQ */
@media (max-width: 768px) {
  .lp-faq-modern {
    padding: 4rem 1.5rem;
  }

  .lp-faq-summary {
    padding: 1.25rem 1.5rem;
  }

  .lp-faq-question {
    font-size: 0.95rem;
  }

  .lp-faq-answer {
    padding: 0 1.5rem 1.25rem;
  }

  .lp-faq-cta {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================
   MODERN GRAPHIC ELEMENTS
   ========================================== */

/* Gradient Border Cards */
.lp-gradient-border {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
}

.lp-gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Glassmorphism Effect */
.lp-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.lp-glass-dark {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism Mode - Applied via toggle */
.lp-container.glassmorphism .lp-feature-card,
.lp-container.glassmorphism .lp-feature-card-modern,
.lp-container.glassmorphism .lp-pricing-card,
.lp-container.glassmorphism .lp-pricing-card-modern,
.lp-container.glassmorphism .lp-testimonial-card,
.lp-container.glassmorphism .lp-testimonial-card-modern,
.lp-container.glassmorphism .lp-team-card,
.lp-container.glassmorphism .lp-faq-item,
.lp-container.glassmorphism .lp-stat-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.lp-container.glassmorphism .lp-hero-content,
.lp-container.glassmorphism .lp-cta-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-container.glassmorphism .lp-btn,
.lp-container.glassmorphism .lp-btn-primary {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lp-container.glassmorphism .lp-section {
  position: relative;
}

.lp-container.glassmorphism .lp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

/* Modern Button Styles */
.lp-btn-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  background-size: 200% 200%;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: gradient-flow 4s ease infinite;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.lp-btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.lp-btn-glow {
  position: relative;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  overflow: visible;
  transition: all 0.3s ease;
}

.lp-btn-glow::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  border-radius: 14px;
  filter: blur(12px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.lp-btn-glow:hover::before {
  opacity: 0.7;
}

.lp-btn-glow:hover {
  transform: translateY(-2px);
}

/* Floating Badges */
.lp-float-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6366f1;
  animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Dot Pattern Background */
.lp-dot-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
}

.lp-dot-pattern-light {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
  background-size: 24px 24px;
}

/* Mesh Gradient */
.lp-mesh-gradient {
  background:
    radial-gradient(at 40% 20%, rgba(59, 130, 246, 0.3) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(139, 92, 246, 0.3) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(236, 72, 153, 0.2) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(34, 197, 94, 0.2) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.2) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(251, 191, 36, 0.2) 0px, transparent 50%);
}

/* Noise Texture Overlay */
.lp-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Animated Border */
.lp-animated-border {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
}

.lp-animated-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b, #22c55e, #3b82f6);
  border-radius: 18px;
  animation: rotate-border 4s linear infinite;
  z-index: -1;
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lp-animated-border::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: white;
  border-radius: 14px;
  z-index: -1;
}

/* Icon Wrapper Styles */
.lp-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.lp-icon-wrapper:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
}

.lp-icon-wrapper-soft {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  color: #6366f1;
  box-shadow: none;
}

.lp-icon-wrapper-soft:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
}

/* Decorative Lines */
.lp-line-gradient {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

.lp-line-gradient-animated {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
  background-size: 300% 100%;
  animation: line-flow 3s linear infinite;
}

@keyframes line-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 300% 0%;
  }
}

/* Avatar Styles */
.lp-avatar-stack {
  display: flex;
}

.lp-avatar-stack .lp-avatar {
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.lp-avatar-stack .lp-avatar:first-child {
  margin-left: 0;
}

.lp-avatar-stack .lp-avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 10;
}

/* Rating Stars */
.lp-rating {
  display: flex;
  gap: 0.25rem;
}

.lp-rating svg {
  width: 18px;
  height: 18px;
  color: #fbbf24;
  fill: currentColor;
}

/* Progress Indicators */
.lp-progress-ring {
  transform: rotate(-90deg);
}

.lp-progress-ring-circle {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 4;
}

.lp-progress-ring-fill {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

/* Blur Shapes */
.lp-blur-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.lp-blur-shape-blue {
  background: #3b82f6;
}

.lp-blur-shape-purple {
  background: #8b5cf6;
}

.lp-blur-shape-pink {
  background: #ec4899;
}

.lp-blur-shape-green {
  background: #22c55e;
}

/* Card Shadows */
.lp-shadow-soft {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06);
}

.lp-shadow-medium {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.1);
}

.lp-shadow-hard {
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.18);
}

.lp-shadow-color {
  box-shadow:
    0 10px 30px rgba(59, 130, 246, 0.2),
    0 20px 60px rgba(139, 92, 246, 0.15);
}

/* Text Enhancements */
.lp-text-gradient {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-text-glow {
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

/* Dividers */
.lp-divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.lp-divider-fade {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.1) 80%,
    transparent
  );
}

/* Skeleton Loading */
.lp-skeleton {
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Focus Ring */
.lp-focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.lp-focus-ring:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* ==========================================
   EDITABLE IMAGES (Preview Mode)
   ========================================== */

/* Editable images have a hover effect */
img[data-editable='true'] {
  cursor: pointer;
  transition:
    filter 0.2s ease,
    outline 0.2s ease;
}

img[data-editable='true']:hover {
  filter: brightness(0.9);
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

/* Editable background image elements */
[data-editable='true'][style*='background'] {
  cursor: pointer;
  transition: filter 0.2s ease;
}

[data-editable='true'][style*='background']:hover {
  filter: brightness(0.9);
}

/* ==========================================
   FORM COMPONENTS
   ========================================== */

/* Contact Form Container */
.lp-contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.lp-contact-form.lp-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
}

/* Form Group */
.lp-form-group {
  margin-bottom: 1.5rem;
}

.lp-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .lp-form-row {
    grid-template-columns: 1fr;
  }
}

/* Form Labels */
.lp-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.lp-form-label.required::after {
  content: '*';
  color: #ef4444;
  margin-left: 0.25rem;
}

/* Base Input Styles */
.lp-form-input,
.lp-form-textarea,
.lp-form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: none;
}

.lp-form-input::placeholder,
.lp-form-textarea::placeholder {
  color: #9ca3af;
}

.lp-form-input:hover,
.lp-form-textarea:hover,
.lp-form-select:hover {
  border-color: #9ca3af;
}

.lp-form-input:focus,
.lp-form-textarea:focus,
.lp-form-select:focus {
  border-color: var(--lp-primary, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Textarea */
.lp-form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Select */
.lp-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Input Variants - Filled */
.lp-form-input.lp-input-filled,
.lp-form-textarea.lp-input-filled,
.lp-form-select.lp-input-filled {
  background: #f3f4f6;
  border-color: transparent;
}

.lp-form-input.lp-input-filled:focus,
.lp-form-textarea.lp-input-filled:focus,
.lp-form-select.lp-input-filled:focus {
  background: #ffffff;
  border-color: var(--lp-primary, #3b82f6);
}

/* Input Variants - Underline */
.lp-form-input.lp-input-underline,
.lp-form-textarea.lp-input-underline,
.lp-form-select.lp-input-underline {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #d1d5db;
  padding-left: 0;
  padding-right: 0;
}

.lp-form-input.lp-input-underline:focus,
.lp-form-textarea.lp-input-underline:focus,
.lp-form-select.lp-input-underline:focus {
  border-bottom-color: var(--lp-primary, #3b82f6);
  box-shadow: none;
}

/* Input Sizes */
.lp-form-input.lp-input-sm,
.lp-form-select.lp-input-sm {
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
}

.lp-form-input.lp-input-lg,
.lp-form-select.lp-input-lg {
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
}

/* Validation States */
.lp-form-input.lp-input-error,
.lp-form-textarea.lp-input-error,
.lp-form-select.lp-input-error {
  border-color: #ef4444;
}

.lp-form-input.lp-input-error:focus,
.lp-form-textarea.lp-input-error:focus,
.lp-form-select.lp-input-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.lp-form-input.lp-input-success,
.lp-form-textarea.lp-input-success,
.lp-form-select.lp-input-success {
  border-color: #10b981;
}

.lp-form-input.lp-input-success:focus,
.lp-form-textarea.lp-input-success:focus,
.lp-form-select.lp-input-success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Error/Success Messages */
.lp-form-error,
.lp-form-success {
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.lp-form-error {
  color: #ef4444;
}

.lp-form-success {
  color: #10b981;
}

/* Helper Text */
.lp-form-hint {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.375rem;
}

/* Checkbox & Radio */
.lp-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.lp-form-check input[type='checkbox'],
.lp-form-check input[type='radio'] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  accent-color: var(--lp-primary, #3b82f6);
  cursor: pointer;
}

.lp-form-check-label {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.5;
}

/* Custom Checkbox */
.lp-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.lp-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-checkbox-mark {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lp-checkbox input:checked + .lp-checkbox-mark {
  background: var(--lp-primary, #3b82f6);
  border-color: var(--lp-primary, #3b82f6);
}

.lp-checkbox-mark svg {
  width: 14px;
  height: 14px;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.lp-checkbox input:checked + .lp-checkbox-mark svg {
  opacity: 1;
  transform: scale(1);
}

.lp-checkbox:hover .lp-checkbox-mark {
  border-color: #9ca3af;
}

/* Custom Radio */
.lp-radio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.lp-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-radio-mark {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lp-radio-mark::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--lp-primary, #3b82f6);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.lp-radio input:checked + .lp-radio-mark {
  border-color: var(--lp-primary, #3b82f6);
}

.lp-radio input:checked + .lp-radio-mark::after {
  opacity: 1;
  transform: scale(1);
}

.lp-radio:hover .lp-radio-mark {
  border-color: #9ca3af;
}

/* Toggle Switch */
.lp-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.lp-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lp-toggle-track {
  width: 2.75rem;
  height: 1.5rem;
  background: #d1d5db;
  border-radius: 1rem;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lp-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.25rem;
  height: 1.25rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.lp-toggle input:checked + .lp-toggle-track {
  background: var(--lp-primary, #3b82f6);
}

.lp-toggle input:checked + .lp-toggle-track .lp-toggle-thumb {
  transform: translateX(1.25rem);
}

/* Input with Icon */
.lp-input-group {
  position: relative;
}

.lp-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.lp-input-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lp-input-group .lp-form-input {
  padding-left: 2.75rem;
}

.lp-input-group.lp-input-icon-right .lp-input-icon {
  left: auto;
  right: 1rem;
}

.lp-input-group.lp-input-icon-right .lp-form-input {
  padding-left: 1rem;
  padding-right: 2.75rem;
}

/* Input with Button */
.lp-input-addon {
  display: flex;
  gap: 0;
}

.lp-input-addon .lp-form-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.lp-input-addon .lp-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  white-space: nowrap;
}

/* Floating Label */
.lp-floating-label {
  position: relative;
}

.lp-floating-label .lp-form-input,
.lp-floating-label .lp-form-textarea {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.lp-floating-label .lp-form-label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.2s ease;
  margin-bottom: 0;
}

.lp-floating-label .lp-form-textarea ~ .lp-form-label {
  top: 1rem;
  transform: none;
}

.lp-floating-label .lp-form-input:focus ~ .lp-form-label,
.lp-floating-label .lp-form-input:not(:placeholder-shown) ~ .lp-form-label,
.lp-floating-label .lp-form-textarea:focus ~ .lp-form-label,
.lp-floating-label .lp-form-textarea:not(:placeholder-shown) ~ .lp-form-label {
  top: 0.5rem;
  transform: none;
  font-size: 0.75rem;
  color: var(--lp-primary, #3b82f6);
}

/* File Input */
.lp-file-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.lp-file-input:hover {
  border-color: var(--lp-primary, #3b82f6);
  background: #f0f9ff;
}

.lp-file-input input {
  display: none;
}

.lp-file-input-icon {
  width: 3rem;
  height: 3rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.lp-file-input-text {
  font-size: 0.9375rem;
  color: #374151;
}

.lp-file-input-hint {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* Form Actions */
.lp-form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.lp-form-actions.lp-actions-center {
  justify-content: center;
}

.lp-form-actions.lp-actions-right {
  justify-content: flex-end;
}

.lp-form-actions.lp-actions-between {
  justify-content: space-between;
}

/* Disabled State */
.lp-form-input:disabled,
.lp-form-textarea:disabled,
.lp-form-select:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}
