/* Base Styles & Variables */
:root {
  --primary: #4361EE;
  --primary-dark: #3A0CA3;
  --secondary: #F72585;
  --accent: #4CC9F0;
  --text-dark: #212529;
  --text-medium: #495057;
  --text-light: #6C757D;
  --background: #F8F9FA;
  --light-gray: #E9ECEF;
  --lighter-gray: #F1F3F5;
  --white: #FFFFFF;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --transition: all 0.3s ease;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

a:hover {
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-align: center;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

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

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

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--lighter-gray);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.mobile-btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

nav {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-medium);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-medium);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  padding: 1.5rem;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-medium);
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-links a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: var(--background);
  overflow: hidden;
}

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

.hero-content {
  max-width: 540px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.stat-text {
  font-size: 0.875rem;
  color: var(--text-light);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Trust Badges Section */
.trust-badges {
  padding: 2rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.trust-badges h5 {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.badge-item {
  opacity: 0.8;
  transition: var(--transition);
}

.badge-item:hover {
  opacity: 1;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.feature-card {
  background-color: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
}

/* Workflow Section */
.workflow {
  padding: 5rem 0;
  background-color: var(--background);
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50%;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-light);
}

.workflow-connector {
  width: 2px;
  height: 2rem;
  background-color: var(--light-gray);
  margin-left: 1.5rem;
}

.step-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Rotating circle animation */
.rotating-circle {
  animation: rotate 2s linear infinite;
  transform-origin: center;
  opacity: 0.7;
}

@keyframes rotate {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.checkmark {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Playground Section */
.playground {
  padding: 5rem 0;
  background-color: var(--white);
}

.playground-container {
  max-width: 900px;
  margin: 0 auto;
}

.playground-card {
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.playground-header {
  background-color: var(--white);
  padding: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.playground-tabs {
  display: flex;
  gap: 1rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.tab-btn:hover {
  background-color: var(--lighter-gray);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.playground-content {
  padding: 2rem;
}

.playground-tab {
  display: none;
}

.playground-tab.active {
  display: block;
}

.url-input-container {
  margin-bottom: 2rem;
}

.url-input-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.url-input-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.url-input-wrapper input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.url-input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.url-input-hint {
  font-size: 0.875rem;
  color: var(--text-light);
}

.analysis-loading {
  text-align: center;
  padding: 3rem 0;
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(67, 97, 238, 0.2);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

.demo-examples {
  margin-top: 2rem;
}

.demo-examples h4 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.example-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.example-btn {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.example-btn:hover {
  background-color: var(--lighter-gray);
  border-color: var(--text-light);
}

.result-empty {
  text-align: center;
  padding: 3rem 0;
}

.result-content {
  display: grid;
  gap: 2rem;
}

.color-palette, .typography-preview, .layout-preview, .components-preview {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.color-palette h5, .typography-preview h5, .layout-preview h5, .components-preview h5 {
  margin-bottom: 1rem;
  color: var(--text-medium);
  font-weight: 500;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.download-prompt {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--lighter-gray);
  border-radius: var(--radius);
}

.download-prompt p {
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--background);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: none;
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 9999px;
}

.filter-btn:hover {
  background-color: var(--light-gray);
}

.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item-inner {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-inner {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.gallery-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--light-gray);
}

.comparison-before, .comparison-after {
  position: relative;
  padding: 1rem;
  background-color: var(--white);
}

.comparison-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  z-index: 1;
}

.gallery-info {
  padding: 1.25rem;
}

.gallery-info h4 {
  margin-bottom: 0.5rem;
}

.gallery-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.gallery-cta {
  text-align: center;
}

/* Competitor Comparison Section */
.competitor-comparison {
  padding: 5rem 0;
  background-color: var(--white);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
  background-color: var(--lighter-gray);
  font-weight: 600;
  color: var(--text-dark);
}

.comparison-table .feature-column {
  text-align: left;
  min-width: 200px;
}

.comparison-table .visionflow-column {
  background-color: var(--background);
}

.product-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}

.comparison-table td.highlight {
  color: var(--primary);
  font-weight: 500;
}

.comparison-table .fa-check {
  color: var(--primary);
}

.comparison-table .fa-times {
  color: var(--text-light);
}

.comparison-cta {
  text-align: center;
}

/* Pain Points Section */
.pain-points {
  padding: 5rem 0;
  background-color: var(--background);
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pain-point-card {
  display: flex;
  gap: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pain-point-card:hover {
  box-shadow: var(--shadow);
}

.pain-point-icon {
  flex-shrink: 0;
}

.pain-point-content h3 {
  margin-bottom: 0.75rem;
}

.pain-description {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.solution {
  background-color: var(--lighter-gray);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.solution h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.solution p {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.pain-points-cta {
  text-align: center;
}

/* Experience Comparison Section */
.experience-comparison {
  padding: 5rem 0;
  background-color: var(--white);
}

.experience-demo {
  max-width: 900px;
  margin: 0 auto;
}

.experience-input {
  margin-bottom: 2rem;
}

.experience-input label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.experience-results {
  background-color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2rem;
}

.results-tabs {
  display: flex;
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.result-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  background: none;
  border: none;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}

.result-tab:hover {
  background-color: var(--lighter-gray);
}

.result-tab.active {
  background-color: var(--primary);
  color: var(--white);
}

.results-content {
  padding: 2rem;
}

.result-panel {
  display: none;
}

.result-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.result-preview {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.result-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.result-details h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.result-details p {
  margin-bottom: 1.5rem;
}

.extraction-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-item h5 {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
}

.color-dots {
  display: flex;
  gap: 0.5rem;
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
}

.complexity-meter {
  width: 100%;
  height: 8px;
  background-color: var(--light-gray);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background-color: var(--primary);
  border-radius: 4px;
}

.experience-loading {
  text-align: center;
  padding: 3rem 0;
}

.experience-cta {
  text-align: center;
  background-color: var(--lighter-gray);
  padding: 2rem;
  border-radius: var(--radius);
}

.experience-cta p {
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--background);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.testimonial-slide {
  padding: 1rem;
}

.testimonial-content {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.testimonial-prev, .testimonial-next {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
  color: var(--primary);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-gray);
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--primary);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.save-badge {
  position: absolute;
  top: -15px;
  right: 220px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background-color: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.pricing-card.popular {
  transform: scale(1.05);
  box-shadow: var(--shadow);
  z-index: 1;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.card-header {
  background-color: var(--white);
  padding: 2rem;
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
}

.card-header h3 {
  margin-bottom: 1rem;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.amount.annually {
  display: none;
}

.period {
  font-size: 0.875rem;
  color: var(--text-light);
}

.card-body {
  padding: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 0.75rem 0;
  color: var(--text-medium);
  position: relative;
  display: flex;
  align-items: center;
}

.features-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.75rem;
  color: var(--primary);
  font-size: 0.875rem;
}

.card-footer {
  padding: 2rem;
  text-align: center;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-medium);
  margin-top: 2rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--background);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.125rem;
  padding-right: 1rem;
}

.toggle-btn {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-answer p {
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .toggle-btn .fa-plus:before {
  content: "\f068";
}

.faq-contact {
  text-align: center;
}

.faq-contact p {
  margin-bottom: 1rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--white);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}

.cta-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--light-gray);
  margin-bottom: 2rem;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-gray);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: var(--light-gray);
  font-size: 0.875rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-gray);
}

.language-selector select {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--white);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.language-selector select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-column:last-child {
    grid-column: span 4;
    margin-top: 2rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .workflow-step {
    grid-template-columns: auto 1fr;
  }
  
  .step-image {
    display: none;
  }
  
  .result-panel.active {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .pain-points-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-card.popular {
    transform: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-column:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-buttons .btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .trust-badges {
    padding: 1rem 0;
  }
  
  .badges-container {
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-form {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-column:first-child {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .workflow-step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-number {
    margin-bottom: 0.5rem;
  }
  
  .url-input-wrapper {
    flex-direction: column;
  }
  
  .example-buttons {
    justify-content: center;
  }
  
  .pain-point-card {
    flex-direction: column;
  }
  
  .testimonial-controls {
    gap: 1rem;
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.cta-main {
  animation: pulse 2s infinite;
}

