/* --- Variables & Theming --- */
:root {
  --primary: #001B40; /* Navy Blue */
  --primary-light: #0A2F6B;
  --accent: #E84824; /* Vermilion / Orange */
  --accent-hover: #C63818;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --text-main: #333333;
  --text-muted: #666666;
  --text-light: #F8F9FA;
  
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

/* --- Reset & Global --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  width: 100%;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 4px 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--primary);
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary);
  transition: var(--transition);
}

/* --- Sections & SPA Logic --- */
main {
  margin-top: 80px; /* offset for fixed navbar */
  min-height: calc(100vh - 80px - 200px); /* rough viewport minus nav and footer */
}

.page-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.page-section.active-section {
  display: block;
}

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

.page-header {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary);
  color: var(--bg-white);
  margin-bottom: 50px;
}

.page-header h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Home: Hero --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIyIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLz4KPC9zdmc+') repeat;
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--accent);
  font-size: 4rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--font-sans);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* --- Features --- */
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.feature-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* --- About --- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.mission-vision-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent);
}

.icon-wrapper {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.company-story {
  background: var(--bg-white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 60px;
  border-left: 4px solid var(--primary);
}

/* --- Products --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.placeholder-img {
  height: 200px;
  background-color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.2rem;
  font-family: var(--font-serif);
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-card-btn {
  display: inline-block;
  margin-top: 16px;
}

.product-card-btn:disabled,
.product-card-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.payhip-notice {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

.e-commerce-badges {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.badges-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.badge {
  background: var(--bg-light);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid #E2E8F0;
  transition: var(--transition);
}

.badge:hover {
  background: var(--primary);
  color: var(--bg-white);
}

/* --- Blogs --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  font-weight: 600;
}

.read-more:hover {
  color: var(--accent);
}

/* --- Contact --- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.contact-info p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.contact-details {
  margin-top: 30px;
}

.contact-details li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 72, 36, 0.1);
}

.form-success {
  margin-top: 20px;
  padding: 15px;
  background-color: #D1FAE5;
  color: #065F46;
  border-radius: 4px;
  text-align: center;
}

.hidden {
  display: none;
}

/* --- Footer --- */
.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 60px 20px 20px;
}

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

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
  background-color: white; /* to make dark logo visible if transparent, though it has white bg in img */
  padding: 5px;
  border-radius: 4px;
}

.footer h4 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* --- Animations --- */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* --- Utility Classes --- */
.mt-15 { margin-top: 15px; }
.mt-60 { margin-top: 60px; }
.brand-statement {
  font-size: 1.5rem !important;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 30px !important;
}
.styled-list {
  padding-left: 20px;
  list-style: disc;
}
.styled-list li {
  margin-bottom: 8px;
}
.section-title-centered {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.feature-box {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-box h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* Services & Trust */
.services-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
.services-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.services-list-wrapper h3 {
  text-align: center;
  margin-bottom: 30px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.services-grid li, .trust-grid li {
  background: var(--bg-white);
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.check-icon {
  color: #10B981;
  font-weight: bold;
}
.trust-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 60px 40px;
  border-radius: 12px;
  margin-top: 60px;
}
.trust-content h3 {
  color: var(--bg-white);
  text-align: center;
  margin-bottom: 20px;
}
.trust-content p {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.9;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.trust-grid li {
  color: var(--text-main);
}

/* --- Follow Us / Social Media --- */
.footer-social {
  width: 100%;
  padding: 30px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  text-align: center;
}

.footer-social h4 {
  color: var(--bg-white);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.85;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

/* Per-brand hover colours */
#social-facebook:hover {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.5);
  transform: translateY(-4px) scale(1.1);
}

#social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(214, 36, 159, 0.5);
  transform: translateY(-4px) scale(1.1);
}

#social-youtube:hover {
  background: #FF0000;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 0, 0, 0.5);
  transform: translateY(-4px) scale(1.1);
}

#social-linkedin:hover {
  background: #0A66C2;
  color: #fff;
  box-shadow: 0 4px 18px rgba(10, 102, 194, 0.5);
  transform: translateY(-4px) scale(1.1);
}

/* --- Blog Article View --- */
.clickable-card {
  cursor: pointer;
}

.clickable-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.btn-back {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 30px;
  transition: var(--transition);
  display: inline-block;
}

.btn-back:hover {
  background: var(--primary);
  color: var(--bg-white);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.article-category {
  background: var(--accent);
  color: var(--bg-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 30px;
  line-height: 1.3;
}

.article-body {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.9;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h4 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-size: 1.2rem;
  margin: 30px 0 12px;
}

.article-footer {
  margin-top: 40px;
  padding: 25px 30px;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.article-footer p {
  color: var(--text-muted);
}

/* --- Legal Pages (Terms / Privacy) --- */
.terms-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.legal-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E2E8F0;
  line-height: 1.8;
}

.legal-section {
  padding: 25px 0;
  border-bottom: 1px solid #F1F5F9;
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.legal-section p,
.legal-section address {
  color: var(--text-muted);
  line-height: 1.8;
  font-style: normal;
}

.legal-section address a {
  color: var(--accent);
  font-weight: 500;
}

.legal-section address a:hover {
  text-decoration: underline;
}

.legal-acknowledgement {
  margin-top: 40px;
  padding: 25px 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 8px;
  text-align: center;
}

.legal-acknowledgement p {
  color: var(--bg-white);
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

/* --- Performance: Content Visibility --- */
html {
  scroll-behavior: smooth;
}

.page-section:not(.active-section) {
  content-visibility: hidden;
}

/* SEO blog content - visible to crawlers, replaced by JS */
.seo-blog-content .blog-card {
  cursor: default;
}

/* --- PromptFlow Pro Landing Page --- */
#promptflowpro {
  background: var(--bg-white);
  padding: 0 0 80px;
}

.landing-hero {
  background: linear-gradient(135deg, #0b1e36 0%, #1a365d 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: left;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-image-wrapper {
  flex: 1;
  text-align: right;
}

.hero-product-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-large {
  font-size: 1.2rem;
  padding: 16px 40px;
  box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-massive {
  font-size: 1.4rem;
  padding: 20px 50px;
  border-radius: 50px;
  margin: 20px 0;
  display: inline-block;
}

.landing-problem, .landing-solution, .landing-benefits, .landing-modules, .landing-target, .landing-faq, .landing-cta {
  padding: 60px 20px;
  text-align: center;
}

.landing-problem { background: #f8fafc; }
.landing-solution { background: #fff; }
.landing-benefits { background: #f0fdf4; }
.landing-modules { background: #fff; }
.landing-target { background: #f8fafc; }
.landing-faq { background: #fff; }
.landing-cta { 
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.3);
}
.landing-cta h2 { color: #fff; }

.section-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.problem-content, .landing-solution p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-main);
}

.highlight-text {
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 30px;
}

.benefits-grid {
  display: flex;
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
}

.benefit-card {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.benefit-card.negative {
  border-top: 5px solid #ef4444;
}

.benefit-card.negative h3 { color: #ef4444; }

.benefit-card.positive {
  border-top: 5px solid #10b981;
}

.benefit-card.positive h3 { color: #10b981; }

.benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-card li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.module-card {
  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s;
}

.module-card:hover { transform: translateY(-5px); }

.module-card .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.features-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0;
}

.target-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: 30px auto;
}

.target-tags .tag {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
}

.faq-question.active::after { content: '-'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--text-main);
  line-height: 1.6;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.secure-text {
  font-size: 0.95rem;
  opacity: 0.9;
}




@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }
  .hero-image-wrapper {
    text-align: center;
  }
  .benefits-grid {
    flex-direction: column;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-out;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM LANDING PAGE — NEW STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Launch Banner */
.launch-banner {
  background: linear-gradient(90deg, #7c3aed, #4f46e5, #0ea5e9);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  position: sticky;
  top: 70px;
  z-index: 90;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(135deg, #0f0c29, #302b63, #1a1a2e);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-badge {
  display: inline-block;
  background: rgba(124,58,237,0.25);
  border: 1px solid rgba(124,58,237,0.5);
  color: #a78bfa;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.lp-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.lp-highlight { color: #a78bfa; }
.lp-hero-sub {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lp-checklist li {
  color: #86efac;
  font-size: 0.95rem;
  font-weight: 600;
}
.lp-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.lp-hero-image { position: relative; display: flex; justify-content: center; align-items: center; max-width: 320px; margin: 0 auto; }

/* ── EBOOK CAROUSEL ──────────────────────────────────────────────────────────── */
.ebook-carousel {
  position: relative;
  width: 260px;
  max-width: 100%;
  user-select: none;
  flex-shrink: 0;
}
.ebook-carousel-track {
  position: relative;
  width: 260px;
  max-width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.ebook-carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: ebookFadeIn 0.45s ease;
}
.ebook-carousel-slide.active {
  display: block;
  width: 100%;
  height: 100%;
}
@keyframes ebookFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
.ebook-carousel .hero-product-img {
  width: 260px;
  height: 360px;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 14px;
  animation: lpFloat 4s ease-in-out infinite;
}
@keyframes lpFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Prev / Next Buttons */
.ebook-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
  padding: 0;
}
.ebook-carousel-btn:hover {
  background: rgba(124,58,237,0.7);
  transform: translateY(-50%) scale(1.12);
}
.ebook-carousel-prev { left: -20px; }
.ebook-carousel-next { right: -20px; }

/* Dots */
.ebook-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.ebook-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.ebook-dot.active {
  background: #a78bfa;
  transform: scale(1.35);
}
.ebook-dot:hover { background: rgba(167,139,250,0.7); }

.lp-guarantee-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 14px;
  border-radius: 50%;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
  line-height: 1.3;
}

/* ── STATS BAR ─────────────────────────────────────────────────────────────── */
.lp-stats-bar {
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  padding: 28px 0;
}
.lp-stats-inner {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.lp-stat { color: #fff; }
.lp-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.lp-stat-suffix { font-size: 1.5rem; font-weight: 700; }
.lp-stat p { font-size: 0.85rem; opacity: 0.85; margin-top: 4px; }

/* ── TRUST BAR ─────────────────────────────────────────────────────────────── */
.lp-trust-bar {
  background: #f8f9fb;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
  text-align: center;
}
.lp-trust-label { font-size: 0.8rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; font-weight: 600; }
.lp-trust-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.lp-trust-tags span { font-size: 0.9rem; font-weight: 600; color: #4f46e5; background: rgba(79,70,229,0.08); padding: 5px 14px; border-radius: 50px; }

/* ── SECTIONS GENERIC ──────────────────────────────────────────────────────── */
.lp-section { padding: 80px 0; }
.lp-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 12px;
}
.lp-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}
.lp-h2-sm { font-size: 1.5rem; font-weight: 700; color: #0f172a; margin-bottom: 14px; }
.lp-section-intro { font-size: 1.05rem; color: #475569; line-height: 1.7; max-width: 700px; margin: 0 auto 40px; text-align: center; }

/* ── PROBLEM ──────────────────────────────────────────────────────────────── */
.lp-problem { background: #0f172a; }
.lp-problem .lp-section-label { color: #f87171; }
.lp-problem .lp-h2 { color: #f1f5f9; }
.lp-problem .lp-section-intro { color: #94a3b8; }
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.lp-problem-item {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fca5a5;
  font-size: 0.95rem;
  font-weight: 500;
}
.lp-problem-callout {
  text-align: center;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 16px;
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
}
.lp-problem-callout p { color: #e2e8f0; margin-bottom: 12px; font-size: 1rem; }
.lp-big-quote {
  font-size: 1.25rem;
  font-weight: 700;
  color: #a78bfa;
  font-style: italic;
  margin: 0 !important;
}

/* ── COMPARE ──────────────────────────────────────────────────────────────── */
.lp-compare-section { background: #f8f9fb; }
.lp-compare-section .lp-h2 { text-align: center; }
.lp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.lp-compare-col {
  border-radius: 16px;
  padding: 28px;
}
.lp-compare-before { background: #fff0f0; border: 2px solid #fca5a5; }
.lp-compare-after  { background: #f0fdf4; border: 2px solid #86efac; }
.lp-compare-header { font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; }
.lp-compare-before .lp-compare-header { color: #dc2626; }
.lp-compare-after  .lp-compare-header { color: #16a34a; }
.lp-compare-col ul { list-style: none; padding: 0; }
.lp-compare-col li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem; color: #374151; }
.lp-compare-col li:last-child { border-bottom: none; }

/* ── INTRODUCING ──────────────────────────────────────────────────────────── */
.lp-introducing {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  text-align: center;
}
.lp-introducing .lp-section-label { color: #c4b5fd; }
.lp-introducing .lp-h2 { color: #fff; }
.lp-introducing .lp-section-intro { color: #ddd6fe; }

/* ── COLLECTION ───────────────────────────────────────────────────────────── */
.lp-collection-section { background: #0f172a; }
.lp-collection-section .lp-section-label { color: #a78bfa; }
.lp-collection-section .lp-h2 { color: #f1f5f9; text-align: center; }
.lp-books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.lp-book-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.lp-book-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lp-book-featured {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124,58,237,0.3);
}
.lp-book-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.lp-book-icon { font-size: 2.5rem; margin-bottom: 14px; }
.lp-book-card h3 { font-size: 1.2rem; font-weight: 700; color: #f1f5f9; margin-bottom: 6px; }
.lp-book-tagline { color: #a78bfa; font-size: 0.88rem; font-style: italic; margin-bottom: 14px; }
.lp-book-card p { color: #94a3b8; font-size: 0.9rem; margin-bottom: 10px; }
.lp-book-list { list-style: none; padding: 0; margin: 0 0 16px; }
.lp-book-list li { color: #86efac; font-size: 0.88rem; padding: 4px 0; }
.lp-book-for { font-size: 0.82rem; color: #64748b; margin-bottom: 20px; }
.lp-book-btn { width: 100%; text-align: center; display: block; }

/* ── WHY DIFFERENT ────────────────────────────────────────────────────────── */
.lp-why-section { background: #f8f9fb; text-align: center; }
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.lp-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s;
}
.lp-why-card:hover { transform: translateY(-4px); }
.lp-why-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.lp-why-card h4 { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.lp-why-card p { font-size: 0.88rem; color: #64748b; line-height: 1.6; }
.lp-consultant-line { font-size: 1.1rem; font-weight: 600; color: #4f46e5; font-style: italic; }

/* ── WHAT YOU'LL LEARN ────────────────────────────────────────────────────── */
.lp-learn-section { background: #fff; }
.lp-learn-section .lp-h2 { text-align: center; }
.lp-learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.lp-learn-card {
  background: linear-gradient(135deg, #f8faff, #f0f4ff);
  border: 1px solid #e0e7ff;
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s;
}
.lp-learn-card:hover { transform: translateY(-4px); }
.lp-learn-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.lp-learn-card h4 { font-size: 1rem; font-weight: 700; color: #3730a3; margin-bottom: 12px; }
.lp-learn-card ul { list-style: none; padding: 0; }
.lp-learn-card li { font-size: 0.85rem; color: #475569; padding: 3px 0; }

/* ── WHO IT'S FOR ─────────────────────────────────────────────────────────── */
.lp-who-section {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  text-align: center;
}
.lp-who-section .lp-section-label { color: #a5b4fc; }
.lp-who-section .lp-h2 { color: #f1f5f9; }
.lp-who-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.lp-who-tags span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #e0e7ff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.lp-who-tags span:hover { background: rgba(255,255,255,0.18); }

/* ── WHAT YOU RECEIVE ────────────────────────────────────────────────────── */
.lp-receive-section { background: #f0fdf4; text-align: center; }
.lp-receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.lp-receive-item {
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #065f46;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(16,185,129,0.08);
}

/* ── URGENCY ─────────────────────────────────────────────────────────────── */
.lp-urgency-section {
  background: linear-gradient(135deg, #7f1d1d, #991b1b, #7f1d1d);
  text-align: center;
}
.lp-urgency-section .lp-section-label { color: #fca5a5; }
.lp-urgency-section .lp-h2 { color: #fff; }
.lp-urgency-section p { color: #fecaca; margin-bottom: 24px; }
.lp-urgency-visual { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 32px 0; }
.lp-urgency-step {
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  max-width: 280px;
}
.lp-urgency-step.bad  { background: rgba(0,0,0,0.3); color: #fca5a5; border: 1px solid rgba(252,165,165,0.3); }
.lp-urgency-step.good { background: rgba(16,185,129,0.2); color: #86efac; border: 1px solid rgba(134,239,172,0.3); }
.lp-urgency-arrow { font-size: 1.5rem; font-weight: 800; color: #fbbf24; }
.lp-urgency-close { font-style: italic; color: #fde68a !important; font-size: 1.1rem; margin-bottom: 32px !important; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.lp-faq-section { background: #f8f9fb; }
.lp-faq-section .lp-h2 { text-align: center; }
.lp-faq-list { max-width: 760px; margin: 36px auto 0; }

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.lp-about-section { background: #fff; }
.lp-about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.lp-about-text p { color: #475569; line-height: 1.7; margin-bottom: 12px; }
.lp-about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-about-badge {
  background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
  border: 1px solid #c7d2fe;
  color: #3730a3;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 12px;
  text-align: center;
}

/* ── FINAL CTA ───────────────────────────────────────────────────────────── */
.lp-final-cta {
  background: linear-gradient(135deg, #0f0c29, #302b63, #1a1a2e);
  padding: 80px 0;
  text-align: center;
}
.lp-final-h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.lp-final-cta p { color: #cbd5e1; font-size: 1.05rem; margin-bottom: 28px; }
.lp-final-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.lp-final-list li { color: #86efac; font-weight: 600; font-size: 0.95rem; }
.lp-final-btn { font-size: 1.15rem; padding: 18px 40px; }
.lp-final-cta .secure-text { margin-top: 20px; color: #64748b; font-size: 0.85rem; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-image { display: none; }
  .lp-checklist { grid-template-columns: 1fr; }
  .lp-compare-grid { grid-template-columns: 1fr; }
  .lp-about-inner { grid-template-columns: 1fr; }
  .lp-about-badges { grid-template-columns: 1fr 1fr; }
  .lp-urgency-visual { flex-direction: column; }
  .lp-hero-btns { flex-direction: column; }
  .lp-stats-inner { gap: 30px; }
  .lp-scroll-btn { display: none; }
  .lp-persona-grid { grid-template-columns: 1fr 1fr; }
  .lp-choose-grid { grid-template-columns: 1fr; }
  .lp-imagine-list { grid-template-columns: 1fr; }
  .lp-aiwork-grid { grid-template-columns: 1fr; }
  .lp-library-grid { grid-template-columns: 1fr 1fr; }
  .lp-results-grid { grid-template-columns: 1fr; }
  .lp-hero-value-props { flex-direction: column; }
}

@media (max-width: 480px) {
  .lp-persona-grid { grid-template-columns: 1fr; }
  .lp-library-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE V2 — PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── HERO V2 — PARTICLES ──────────────────────────────────────────────────── */
.lp-hero-v2 {
  position: relative;
  overflow: hidden;
}
.lp-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lp-hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(167, 139, 250, 0.35);
  border-radius: 50%;
  animation: lpParticleFloat 8s infinite ease-in-out;
}
.lp-hero-particles span:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; animation-duration: 7s; }
.lp-hero-particles span:nth-child(2) { top: 20%; left: 60%; animation-delay: 1s; animation-duration: 9s; width: 4px; height: 4px; }
.lp-hero-particles span:nth-child(3) { top: 50%; left: 80%; animation-delay: 2s; animation-duration: 6s; }
.lp-hero-particles span:nth-child(4) { top: 70%; left: 30%; animation-delay: 0.5s; animation-duration: 10s; width: 8px; height: 8px; }
.lp-hero-particles span:nth-child(5) { top: 85%; left: 70%; animation-delay: 3s; animation-duration: 8s; }
.lp-hero-particles span:nth-child(6) { top: 40%; left: 10%; animation-delay: 1.5s; animation-duration: 7.5s; width: 5px; height: 5px; }
.lp-hero-particles span:nth-child(7) { top: 60%; left: 50%; animation-delay: 2.5s; animation-duration: 9.5s; }
.lp-hero-particles span:nth-child(8) { top: 15%; left: 90%; animation-delay: 4s; animation-duration: 11s; width: 3px; height: 3px; }

@keyframes lpParticleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(15px, -20px) scale(1.3); opacity: 0.7; }
  50% { transform: translate(-10px, 15px) scale(0.8); opacity: 0.5; }
  75% { transform: translate(20px, 10px) scale(1.1); opacity: 0.8; }
}

.lp-hero-v2 .container { position: relative; z-index: 1; }

/* ── GRADIENT TEXT ─────────────────────────────────────────────────────────── */
.lp-gradient-text {
  background: linear-gradient(135deg, #a78bfa, #818cf8, #60a5fa, #a78bfa);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lpGradientShift 6s ease-in-out infinite;
}

@keyframes lpGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── BADGE GLOW ───────────────────────────────────────────────────────────── */
.lp-badge-glow {
  animation: lpBadgePulse 3s ease-in-out infinite;
}
@keyframes lpBadgePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.6), 0 0 40px rgba(124, 58, 237, 0.2); }
}

/* ── HERO ACCENT LINE ─────────────────────────────────────────────────────── */
.lp-hero-accent {
  color: #a78bfa !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  font-style: italic;
}

/* ── VALUE CHIPS ──────────────────────────────────────────────────────────── */
.lp-hero-value-props {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 8px;
}
.lp-value-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.35);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e0e7ff;
  transition: all 0.3s ease;
}
.lp-value-chip:hover {
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.6);
  transform: translateY(-2px);
}

/* ── BUTTON GLOW ──────────────────────────────────────────────────────────── */
.lp-btn-glow {
  position: relative;
  overflow: hidden;
  animation: lpBtnGlow 3s ease-in-out infinite;
}
.lp-btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  animation: lpBtnShine 4s ease-in-out infinite;
}
@keyframes lpBtnShine {
  0% { transform: translateX(-100%) rotate(45deg); }
  40%, 100% { transform: translateX(100%) rotate(45deg); }
}
@keyframes lpBtnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 6px 30px rgba(124, 58, 237, 0.5), 0 0 60px rgba(124, 58, 237, 0.15); }
}

/* ── BADGE PULSE ──────────────────────────────────────────────────────────── */
.lp-badge-pulse {
  animation: lpFloat 4s ease-in-out infinite, lpBadgePulse2 2s ease-in-out infinite;
}
@keyframes lpBadgePulse2 {
  0%, 100% { box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(16, 185, 129, 0.7), 0 0 50px rgba(16, 185, 129, 0.2); }
}

/* ── STATS BAR V2 ─────────────────────────────────────────────────────────── */
.lp-stats-bar-v2 {
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #6d28d9);
  position: relative;
  overflow: hidden;
}
.lp-stats-bar-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 25%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.03) 50%
  );
}

/* ── PUT AI TO WORK SECTION ───────────────────────────────────────────────── */
.lp-aiwork-section {
  background: #fff;
  text-align: center;
}
.lp-aiwork-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.lp-aiwork-item {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #065f46;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-align: left;
}
.lp-aiwork-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  border-color: #86efac;
}
.lp-aiwork-check {
  color: #16a34a;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── ONE LIBRARY SECTION ──────────────────────────────────────────────────── */
.lp-library-section {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  text-align: center;
}
.lp-library-section .lp-section-label { color: #a5b4fc; }
.lp-library-section .lp-h2 { color: #f1f5f9; }
.lp-library-section .lp-section-intro { color: #94a3b8; }
.lp-library-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px auto 0;
  max-width: 900px;
}
.lp-library-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 20px 16px;
  color: #e0e7ff;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: default;
}
.lp-library-card span {
  font-size: 1.8rem;
}
.lp-library-card:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.2);
}
.lp-library-goal {
  color: #a5b4fc;
  font-size: 1.1rem;
  margin-top: 40px;
  line-height: 1.7;
}
.lp-library-goal strong {
  color: #fff;
  font-size: 1.2rem;
}

/* ── BUILT FOR RESULTS SECTION ────────────────────────────────────────────── */
.lp-results-section {
  background: #f8f9fb;
  text-align: center;
}
.lp-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.lp-results-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: all 0.3s ease;
}
.lp-results-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: #c7d2fe;
}
.lp-results-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.lp-results-card p {
  color: #374151;
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.lp-results-cta-text {
  font-size: 1.1rem;
  color: #475569;
  margin-top: 36px;
  font-weight: 500;
}
.lp-results-cta-text strong {
  color: #4f46e5;
}

/* ── PERSONA CARDS ────────────────────────────────────────────────────────── */
.lp-persona-section {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
}
.lp-persona-section .lp-section-label { color: #a5b4fc; }
.lp-persona-section .lp-h2 { color: #f1f5f9; }
.lp-persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.lp-persona-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: default;
}
.lp-persona-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(167, 139, 250, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
}
.lp-persona-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
}
.lp-persona-card h4 {
  color: #e0e7ff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.lp-persona-card p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── WHY READERS CHOOSE SECTION ───────────────────────────────────────────── */
.lp-choose-section {
  background: #fff;
  text-align: center;
}
.lp-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.lp-choose-card {
  background: linear-gradient(135deg, #faf5ff, #f0f0ff);
  border: 1px solid #e9d5ff;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.35s ease;
}
.lp-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.12);
  border-color: #c4b5fd;
}
.lp-choose-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}
.lp-choose-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 10px;
}
.lp-choose-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
}

/* ── IMAGINE SECTION ──────────────────────────────────────────────────────── */
.lp-imagine-section {
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #6d28d9);
  text-align: center;
}
.lp-imagine-section .lp-section-label { color: #c4b5fd; }
.lp-imagine-section .lp-h2 { color: #fff; }
.lp-imagine-inner { max-width: 900px; margin: 0 auto; }
.lp-imagine-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.lp-imagine-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all 0.3s ease;
}
.lp-imagine-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.lp-imagine-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.lp-imagine-item p {
  color: #e0e7ff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.lp-imagine-item strong {
  color: #fff;
}
.lp-imagine-close {
  color: #c4b5fd;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 32px 0 28px;
}
.lp-imagine-close strong {
  color: #fff;
}

/* ── URGENCY V2 ───────────────────────────────────────────────────────────── */
.lp-urgency-v2 .lp-urgency-lead {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: #fde68a !important;
  margin-bottom: 12px !important;
}

/* ── FINAL CTA V2 ─────────────────────────────────────────────────────────── */
.lp-final-cta-v2 {
  background: linear-gradient(135deg, #0f0c29, #1a1a3e, #302b63);
  position: relative;
  overflow: hidden;
}
.lp-final-cta-v2::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.lp-final-cta-v2::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.lp-final-tagline {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: #a78bfa !important;
  font-style: italic;
  margin-bottom: 16px !important;
}
.lp-final-motto {
  font-size: 1.15rem;
  font-weight: 700;
  color: #a78bfa;
  margin-top: 20px !important;
  letter-spacing: 0.03em;
}

/* ── STICKY CTA ENHANCEMENTS ──────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.4);
  display: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 14px 28px;
  animation: lpStickyPulse 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
}
.sticky-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.6);
}

#digitalproductslanding.active-section .sticky-cta {
  display: block;
}

@keyframes lpStickyPulse {
  0%, 100% { box-shadow: 0 10px 35px rgba(124, 58, 237, 0.4); }
  50% { box-shadow: 0 10px 45px rgba(124, 58, 237, 0.65), 0 0 80px rgba(124, 58, 237, 0.15); }
}
