/* Landing Page V2 Styles */

/* Base body styles for landing page v2 */
body.controller-landing_pages.action-v2 {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body.controller-landing_pages.action-v2 header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.08);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

body.controller-landing_pages.action-v2 main {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  max-width: none;
}

/* Hero Section */
.landing-v2__hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.landing-v2__hero::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.landing-v2__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.landing-v2__hero-headline {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
  line-height: 1.1;
}

.landing-v2__hero-subheadline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-in 1s ease-out 0.3s forwards;
  line-height: 1.5;
}

.landing-v2__hero-cta {
  opacity: 0;
  animation: fade-in 1s ease-out 0.6s forwards;
}

.landing-v2__hero-no-cc {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #718096;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* Button Styles */
.btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-v2--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-v2--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  color: #fff !important;
}

.btn-v2--secondary {
  background: #fff;
  color: #667eea !important;
  border: 2px solid #667eea;
}

.btn-v2--secondary:hover {
  background: #667eea;
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-v2--large {
  font-size: 1.25rem;
  padding: 1.125rem 2.5rem;
}

/* Section Styles */
.landing-v2__section {
  padding: 5rem 0;
  position: relative;
}

.landing-v2__section-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Problem Section */
.landing-v2__problem {
  background: #fff;
}

.landing-v2__problem-image {
  margin: 2rem 0;
}

.landing-v2__problem-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.landing-v2__problem-list li {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.landing-v2__problem-list li::before {
  content: '❓';
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

/* Solution Section */
.landing-v2__solution {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.landing-v2__solution-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.landing-v2__solution-list li {
  font-size: 1.125rem;
  color: #2d3748;
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

.landing-v2__solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 1.75rem;
  color: #667eea;
  font-weight: bold;
}

/* How It Works Section */
.landing-v2__how-it-works {
  background: #fff;
}

.landing-v2__step {
  text-align: center;
}

.landing-v2__step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.landing-v2__step-image {
  margin-bottom: 1.5rem;
}

.landing-v2__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.75rem;
}

.landing-v2__step-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Features Section */
.landing-v2__features {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.landing-v2__feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.landing-v2__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.3);
}

.landing-v2__feature-icon {
  color: #667eea;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

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

.landing-v2__feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.75rem;
}

.landing-v2__feature-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Use Cases Section */
.landing-v2__use-cases {
  background: #fff;
}

.landing-v2__use-case-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.landing-v2__use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.landing-v2__use-case-image {
  overflow: hidden;
}

.landing-v2__use-case-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin: 1.25rem 1.5rem 0.75rem;
}

.landing-v2__use-case-description {
  font-size: 1rem;
  color: #4a5568;
  margin: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

/* Social Proof Section */
.landing-v2__social-proof {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.landing-v2__stat-badge {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.landing-v2__stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.landing-v2__stat-label {
  font-size: 0.95rem;
  color: #4a5568;
}

.landing-v2__testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.landing-v2__testimonial-avatar {
  margin-bottom: 1.5rem;
}

.landing-v2__testimonial-text {
  font-size: 1.05rem;
  color: #2d3748;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.landing-v2__testimonial-author {
  font-size: 0.95rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 0;
}

/* Trust Section */
.landing-v2__trust {
  background: #fff;
}

.landing-v2__trust-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.landing-v2__trust-list li {
  font-size: 1.125rem;
  color: #2d3748;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-v2__trust-list li i {
  font-size: 1.5rem;
}

/* Pricing Section */
.landing-v2__pricing {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.landing-v2__pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.landing-v2__pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.landing-v2__pricing-list li {
  font-size: 1.125rem;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-v2__pricing-list li i {
  font-size: 1.5rem;
}

/* Final CTA Section */
.landing-v2__final-cta {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 6rem 0;
}

.landing-v2__final-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.landing-v2__benefit-item {
  font-size: 1.125rem;
  color: #2d3748;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.landing-v2__benefit-item i {
  font-size: 1.5rem;
}

.landing-v2__final-trust {
  margin-top: 1.5rem;
}

/* Placeholder Styles */
.landing-v2__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .landing-v2__hero {
    padding: 5rem 1rem 3rem;
    min-height: 90vh;
  }

  .landing-v2__section {
    padding: 3rem 0;
  }

  .landing-v2__problem-list li,
  .landing-v2__solution-list li,
  .landing-v2__trust-list li,
  .landing-v2__pricing-list li {
    font-size: 1rem;
  }

  .landing-v2__final-cta {
    padding: 4rem 0;
  }

  .landing-v2__final-benefits {
    align-items: flex-start;
  }
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Footer styling for landing page v2 */
body.controller-landing_pages.action-v2 .footer-public {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  padding: 2rem 0;
}
