/* ===================================
   HOMEPAGE CLEAN STYLES
   Based on high-converting landing page anatomy
   Black/White/Lime brand colors, no gradients
   Mobile-first design
   =================================== */

/* ==================================================
   AUTOMATION FEATURES — ALTERNATING SHOWCASE LAYOUT
   LinkDM-inspired feature showcase (No shadows)
   Scoped to #automation-features to avoid regressions
   ================================================== */

/* Section Badge */
#automation-features .section-badge-center {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #d1fe17;
  border: 2px solid #d1fe17;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* Feature Showcase List */
#automation-features .feature-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}

/* Individual Feature Item */
#automation-features .feature-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Layout Variants - Alternating */
#automation-features .feature-showcase-item.layout-image-left {
  grid-template-areas: "visual content";
}

#automation-features .feature-showcase-item.layout-image-right {
  grid-template-areas: "content visual";
}

#automation-features .feature-visual-side {
  grid-area: visual;
  width: 100%;
}

#automation-features .feature-content-side {
  grid-area: content;
  width: 100%;
}

/* Feature Mockup Image */
#automation-features .feature-mockup-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
}

/* Align image based on layout */
#automation-features .layout-image-left .feature-mockup-image {
  margin-left: 0;
  margin-right: auto;
}

#automation-features .layout-image-right .feature-mockup-image {
  margin-left: auto;
  margin-right: 0;
}

/* Feature Content */
#automation-features .feature-showcase-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 1rem;
}

#automation-features .feature-showcase-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 540px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  #automation-features .feature-showcase-list {
    gap: 4rem;
  }
  
  #automation-features .feature-showcase-item {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "visual"
      "content" !important;
    gap: 2rem;
  }
  
  #automation-features .feature-mockup-image {
    margin-left: auto;
    margin-right: auto;
  }
  
  #automation-features .feature-showcase-description {
    max-width: 100%;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  #automation-features .feature-showcase-list {
    gap: 3rem;
    margin-top: 3rem;
  }
  
  #automation-features .feature-showcase-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  #automation-features .feature-showcase-description {
    font-size: 1rem;
  }
}

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

/* ===================================
   NAVIGATION FIXES
   =================================== */
/* Navigation styles moved to creatorflow-modern.css for consistency across all pages */

/* Fix dropdown visibility - make them solid white */
.dropdown-menu {
  background: #ffffff !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid #e5e7eb !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(-50%) translateY(-8px) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.active .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.dropdown-menu-wide {
  min-width: 680px !important;
  background: #ffffff !important;
}

/* Dropdown items */
.dropdown-menu a {
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.dropdown-menu a:hover {
  background: #f9fafb !important;
  transform: translateX(4px) !important;
}

.dropdown-item-title {
  color: #000000 !important;
  font-weight: 600 !important;
}

.dropdown-item-desc {
  color: #6b7280 !important;
  font-size: 0.875rem !important;
}

.dropdown-column-title {
  color: #9ca3af !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.75rem !important;
}

/* Mobile menu overrides - Aligned with creatorflow-modern.css */
/* These override any conflicting styles to ensure consistency */

.mobile-menu-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 16px 12px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  background: #fafbfc !important;
  border-radius: 0 0 20px 20px !important;
}

.mobile-menu-actions .btn {
  padding: 14px 20px !important;
  font-size: 0.9375rem !important;
  line-height: 1.2 !important;
  width: 100% !important;
  font-weight: 600 !important;
  justify-content: center !important;
  text-align: center !important;
  border-radius: 12px !important;
  font-family: "Stack Sans Headline", sans-serif !important;
  transition: all 0.2s ease !important;
}

.mobile-menu-actions .btn-secondary {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

.mobile-menu-actions .btn-secondary:hover {
  background: #f9fafb !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
  color: #000000 !important;
  transform: none !important;
}

.mobile-menu-actions .btn-primary {
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.08) !important;
  font-size: 1rem !important;
}

.mobile-menu-actions .btn-primary:hover {
  background: #d1fe17 !important;
  color: #000000 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Note: Removed .nav-actions display:none override to allow base CSS to handle mobile layout properly */

/* ===================================
   NEW HERO SECTION - INSTANTDM STYLE
   Centered, clean, with product mockup
   =================================== */

.hero-new {
  padding: 8rem 2rem 4rem;
  background: #ffffff; /* Light background */
  text-align: center;
  min-height: auto;
}

.hero-new-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; 
}

/* Hero Badge */
.hero-new .hero-badge {
  font-size: 0.9375rem;
  color: #6b7280; /* Adjusted for light bg */
  font-style: italic;
  margin-bottom: 1rem;
}

/* Hero Title */
.hero-new .hero-title {
  font-size: clamp(2rem, 5vw, 4rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.1;
  color: #000000; /* Dark text */
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

/* Hero Subtitle */
.hero-new .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem); /* Responsive font size */
  line-height: 1.6;
  color: #374151; /* Dark grey for readability */
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Hero CTA */
.hero-new .hero-cta {
  margin: 0 0 1.25rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-hero-primary:hover {
  background: #d1fe17;
  color: #000000;
  transform: translateY(-2px);
}

/* Mobile: Full-width CTA button */
@media (max-width: 640px) {
  .btn-hero-primary {
    width: 100%;
    padding: 1.125rem 2rem;
  }
}

/* Hero Microcopy */
.hero-new .hero-microcopy {
  font-size: 0.9375rem;
  color: #4b5563; /* Dark grey */
  margin: 0 0 0.75rem;
}

/* Social Proof Section */
.hero-new .hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.social-proof-avatars {
  display: flex;
  margin-right: 0.5rem;
}

.social-proof-avatars .avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #e5e7eb; /* Changed from white for light bg */
  margin-left: -12px;
}

.social-proof-avatars .avatar-circle:first-child {
  margin-left: 0;
}

.hero-new .social-proof-text {
  font-size: 0.9375rem;
  color: #374151; /* Dark text */
  font-weight: 500;
  margin-right: 0.75rem;
}

/* Meta Badge Inline */
.hero-new .meta-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #f3f4f6; /* Lighter grey for light bg */
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 0.8125rem;
  color: #374151; /* Darker text */
  font-weight: 500;
}

.hero-new .meta-icon {
  font-size: 0.75rem;
}

/* Product Visual */
.hero-new .hero-product-visual {
  width: 100%;
  max-width: 1100px;
  margin: 4rem auto 0;
  position: relative;
  overflow: visible; /* Ensure content can overflow for lime green background */
  padding: 0 1rem; /* Add padding to prevent edge cutoff */
}

.hero-new .hero-product-visual::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: min(800px, 90vw); /* Responsive width that scales on mobile */
  height: min(500px, 60vw); /* Responsive height */
  background-color: #d1fe17;
  border-radius: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) rotate(-5deg);
  opacity: 1;
}

.hero-mockup {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  object-fit: contain; /* Ensure image scales properly */
}

.mockup-placeholder {
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 1rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mockup-placeholder .placeholder-icon {
  font-size: 4rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.mockup-placeholder p {
  color: #9ca3af;
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-new {
    padding: clamp(4rem, 10vw, 5rem) 1rem 2rem; /* Responsive padding (80% of desktop) */
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .hero-new-container {
    gap: 0;
    padding: 0 0.5rem;
  }

  .hero-badge {
    font-size: 0.8125rem;
    margin-bottom: 0.875rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem); /* Responsive mobile font size */
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1rem; /* Reduced from 1.05rem */
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .hero-cta {
    margin: 0 0 1rem;
  }

  .btn-hero-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .hero-microcopy {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }

  .social-proof-avatars .avatar-circle {
    width: 32px;
    height: 32px;
    margin-left: -8px;
  }

  .social-proof-text {
    font-size: 0.875rem;
  }

  .meta-badge-inline {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
  }

  .hero-social-proof {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem; /* Increased gap */
  }

  .hero-product-visual {
    margin-top: 2.5rem; /* Adjusted top margin for mobile (62.5% of desktop) */
    padding: 0 0.5rem; /* Tighter padding on mobile */
    overflow: visible;
  }
  
  .hero-product-visual::before {
    width: min(600px, 85vw); /* Smaller on mobile tablets */
    height: min(400px, 55vw);
    border-radius: 1.5rem;
  }

  .hero-mockup {
    border-radius: 0.75rem;
    max-width: 100%;
  }
}

/* ===================================
   USE CASE SHOWCASE - ALTERNATING LAYOUT
   =================================== */

.section-light {
  background: #ffffff;
  padding: 6rem 2rem;
}

.use-case-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 4rem;
}

.use-case-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.use-case-item.use-case-right {
  direction: rtl;
}

.use-case-item.use-case-right > * {
  direction: ltr;
}

.use-case-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.use-case-audience {
  font-size: 0.875rem;
  color: #000000;
  background: #d1fe17;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.use-case-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
}

.use-case-visual {
  position: relative;
  max-width: 400px;
}

.use-case-image {
  width: 100%;
  max-height: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.use-case-image:hover {
  transform: scale(1.02);
}

.image-placeholder {
  width: 100%;
  min-height: 400px;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.image-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.image-placeholder .placeholder-label {
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 500;
}

/* Use Case - Responsive */
@media (max-width: 1024px) {
  .use-case-item,
  .use-case-item.use-case-right {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .use-case-content h3 {
    font-size: 1.75rem;
  }

  .use-case-description {
    font-size: 1rem;
  }

  .use-case-list {
    gap: 5rem;
  }
}

@media (max-width: 640px) {
  .section-light {
    padding: 4rem 1.5rem;
  }

  .use-case-list {
    gap: 4rem;
    margin-top: 3rem;
  }

  .use-case-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
  }

  .use-case-audience {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1.25rem;
  }

  .use-case-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .use-case-visual {
    max-width: 100%;
  }

  .use-case-image {
    max-height: 400px;
  }

  .image-placeholder {
    min-height: 280px;
    padding: 2rem;
  }
}

/* Hero Section - Light, Clean, Centered */
.hero.hero-dark {
  padding: 6rem 0 2rem !important;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%) !important;
  min-height: auto !important;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}

.hero-content-center {
  max-width: 900px;
  margin: 0 auto 3rem;
}


.hero-dark .meta-badge {
  display: inline-block;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 1.75rem;
  color: #6b7280;
  font-style: italic;
  transition: none;
}

.hero-dark .meta-badge:hover {
  transform: none;
  border-color: transparent;
}

.hero-dark .meta-badge span:first-child {
  display: none;
}

.hero-dark h1 {
  font-size: 4rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  color: #000000 !important;
  letter-spacing: -0.02em !important;
}

.hero-dark .hero-subheading {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  margin-bottom: 2.5rem !important;
  margin-top: 0 !important;
  font-weight: 400 !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.hero-dark .hero-microcopy {
  font-size: 0.9375rem;
  color: #4b5563;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center;
}

/* Social Proof Section */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.social-avatars {
  display: flex;
  margin-right: -0.5rem;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #ffffff;
  margin-right: -8px;
}

.avatar-circle:first-child {
  z-index: 3;
}

.avatar-circle:nth-child(2) {
  z-index: 2;
}

.avatar-circle:nth-child(3) {
  z-index: 1;
}

.social-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
}

.meta-badge-inline {
  height: 16px;
  width: auto;
  opacity: 0.9;
}

.hero-visual-center {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-product-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual-center .visual-placeholder {
  width: 100%;
  min-height: 400px;
  background: #f9fafb;
  border: 2px dashed #e5e7eb;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.placeholder-content {
  text-align: center;
}

.placeholder-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.placeholder-text {
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 500;
}

/* Section Utilities */
.section {
  padding: clamp(3rem, 6vw, 6rem) 0 !important; /* Responsive: 50-100% of desktop */
}

.section-gray {
  background: #f9fafb !important;
}

.section-dark {
  background: #000000 !important;
  color: white !important;
}

.section-lime {
  background: #000000 !important;
  color: #ffffff !important;
  padding: 6rem 2rem !important;
}

.container-lg {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 1.5rem); /* Responsive horizontal padding */
}

.container-md {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 1.5rem); /* Responsive horizontal padding */
}

h2 {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  text-align: center;
  margin-bottom: 3rem !important;
  color: inherit !important;
  letter-spacing: normal !important;
}

/* HERO ALTERNATIVE SECTION - Split Layout */
.hero-alternative {
  padding: 6rem 0 4rem !important;
  background: #ffffff !important;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-alternative-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-alternative-left {
  max-width: 600px;
}

.meta-badge-alt {
  display: inline-block;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.hero-alternative-left h1 {
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  color: #000000 !important;
  letter-spacing: -0.02em !important;
}

.hero-subheading-alt {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
}

.btn-primary-alt {
  background: #f3f4f6 !important;
  color: #000000 !important;
  border: none !important;
  font-weight: 600 !important;
  padding: 1rem 2rem !important;
  border-radius: 0.5rem !important;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1rem !important;
}

.btn-primary-alt:hover {
  background: #e5e7eb !important;
}

.hero-microcopy-alt {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-social-proof-alt {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-text-alt {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
}

.meta-badge-bottom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f9fafb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
}

.meta-badge-bottom img {
  height: 20px;
  width: auto;
}

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

.hero-product-image-alt {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* Responsive for alternative hero */
@media (max-width: 1024px) {
  .hero-alternative-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-alternative-left {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-alternative-left h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-social-proof-alt {
    justify-content: center;
  }
}

/* Logo Bar - Social Proof */
.logo-bar {
  padding: 1.5rem 0 3rem;
  background: transparent;
  border-top: none;
  position: relative;
  z-index: 2;
}

.logo-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-item img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-text {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Button Styles - Updated with Black Background */
.btn-primary {
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 600 !important;
  padding: 1rem 2.5rem !important;
  border-radius: 0.75rem !important;
  font-family: "Stack Sans Headline", sans-serif !important;
  font-size: 1.125rem !important;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Remove arrows from buttons */
.btn-primary::after,
.btn-primary::before {
  content: none !important;
  display: none !important;
}

.btn-primary:hover {
  background: #d1fe17 !important;
  color: #000000 !important;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  height: 4rem !important;
  padding: 0 2.5rem !important;
  font-size: 1.125rem !important;
}

.btn-secondary,
.hero-dark .btn-secondary {
  background: transparent !important;
  border: 2px solid #000000 !important;
  color: #000000 !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.75rem !important;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-secondary:hover,
.hero-dark .btn-secondary:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent !important;
  border: 2px solid #000 !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.5rem !important;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: #d1fe17 !important;
  border-color: #d1fe17 !important;
  color: #000 !important;
}

/* Niches Grid */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.niche-card {
  background: #d1fe17;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.niche-icon {
  font-size: 1.5rem;
}

/* How It Works */
.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 250px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.5rem !important;
  margin-bottom: 0.5rem !important;
  font-weight: 700 !important;
  color: #000 !important;
}

.step p {
  color: #374151 !important;
  font-size: 1rem !important;
}

.step-arrow {
  font-size: 2rem;
  color: #d1fe17;
  font-weight: 700;
  flex-shrink: 0;
}

.product-demo .demo-placeholder {
  width: 100%;
  height: 400px;
  background: #f3f4f6;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.benefit-column {
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-column h3 {
  font-size: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  font-weight: 700 !important;
  color: #000 !important;
}

.benefit-column ul {
  list-style: none;
  text-align: left;
  padding-left: 0;
}

.benefit-column li {
  padding: 0.5rem 0;
  color: #000000;
  font-size: 1rem;
}

.benefit-column li:before {
  content: "✓ ";
  color: #d1fe17;
  font-weight: 700;
  margin-right: 0.5rem;
}

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

/* Product Demo Grid */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.demo-content h2 {
  text-align: left !important;
  margin-bottom: 1.5rem !important;
}

.demo-content p {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: #000000 !important;
  margin-bottom: 1rem !important;
}

.demo-visual .demo-placeholder {
  background: #f3f4f6;
  height: 400px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* Security Section */
.security-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.security-intro {
  text-align: center;
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 3rem;
}

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

.security-card {
  background: #374151;
  padding: 2rem;
  border-radius: 1rem;
}

.security-card-icon {
  font-size: 2rem;
  color: #d1fe17;
  margin-bottom: 1rem;
}

.security-card h3 {
  font-size: 1.25rem !important;
  margin-bottom: 1rem !important;
  font-weight: 700 !important;
  color: white !important;
}

.security-card p {
  color: #d1d5db !important;
  line-height: 1.6 !important;
}

/* FAQ Section */
/* FAQ styles removed - now using unified faq-unified.css */
/* Old JavaScript-based accordion styles replaced with native HTML details/summary */

/* Final CTA */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: 3rem !important;
  margin-bottom: 1rem !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.final-cta > p {
  font-size: 1.25rem !important;
  margin-bottom: 2.5rem !important;
  color: #9ca3af !important;
}

.btn-cta-inverted {
  background: #d1fe17 !important;
  color: #000000 !important;
  font-weight: 700 !important;
  padding: 1.25rem 3rem !important;
  border-radius: 0.75rem !important;
  border: none !important;
  cursor: pointer;
  font-size: 1.125rem !important;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-inverted:hover {
  transform: translateY(-2px);
  background: #e0ff30 !important;
}

.final-cta-microcopy {
  font-size: 0.9375rem;
  margin-top: 1.25rem;
  color: #d1d5db;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.final-cta-microcopy .cta-icon {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Footer Separation */
.section-lime {
  margin-bottom: 0 !important;
}

footer,
contentinfo {
  margin-top: 0 !important;
  padding-top: 4rem !important;
  background: #1f2937 !important;
  border-top: 2px solid #374151 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero.hero-dark {
    padding: 3.5rem 0 2rem !important; /* Reduced padding */
  }

  .hero-dark h1 {
    font-size: 2rem !important; /* Reduced from 2.5rem */
  }

  .hero-dark .hero-subheading {
    font-size: 1rem !important; /* Reduced from 1.125rem */
  }

  .hero-content-center {
    margin-bottom: 3rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-group .btn-large {
    width: 100%;
    text-align: center;
  }

  .hero-visual-center .visual-placeholder {
    min-height: 300px;
  }

  .logo-bar {
    padding: 2rem 0 3rem;
  }

  .logo-bar-container {
    gap: 2rem;
  }

  .logo-item img {
    height: 32px;
  }

  .demo-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .benefits-grid,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .section {
    padding: 3rem 0 !important;
  }

  h2 {
    font-size: 1.625rem !important; /* Reduced from 1.875rem */
  }

  .final-cta h2 {
    font-size: 1.75rem !important; /* Reduced from 2rem */
    line-height: 1.2;
    margin-bottom: 1rem !important;
  }

  .final-cta > p {
    font-size: 1rem !important; /* Reduced from 1.0625rem */
    margin-bottom: 1.75rem !important;
  }

  .btn-cta-inverted {
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
    width: 100%;
    max-width: 320px;
  }

  .final-cta-microcopy {
    font-size: 0.875rem;
  }

  /* FAQ responsive styles removed - now using unified faq-unified.css */
}

@media (max-width: 1024px) and (min-width: 769px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 3rem !important;
  }
}

/* ===================================
   NEW SECTIONS STYLES
   =================================== */

/* Hero Stats Bar */
.hero-stats-bar {
  display: flex !important;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(209, 254, 23, 0.08);
  border-radius: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* Section Title Center */
.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.section-subtitle-center {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Use Case Showcase Section */
.use-case-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.use-case-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.use-case-item.use-case-right {
  direction: rtl;
}

.use-case-item.use-case-right > * {
  direction: ltr;
}

.use-case-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.use-case-audience {
  font-size: 0.875rem;
  color: #000000;
  background: #d1fe17;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.use-case-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
}

.use-case-visual {
  position: relative;
}

.use-case-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.use-case-item.use-case-right .use-case-image {
  transform: rotate(3deg);
}

.use-case-image:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Image Placeholder Styles */
.image-placeholder {
  width: 100%;
  min-height: 300px;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.image-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.image-placeholder .placeholder-label {
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 500;
}

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

.feature-card {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #d1fe17;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.trust-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
}

.trust-icon {
  font-size: 2rem;
  color: #d1fe17;
  margin-bottom: 1rem;
}

.trust-stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.trust-description {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Step Number */
.step-number {
  width: 64px;
  height: 64px;
  background: #d1fe17;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

.step-image {
  margin-top: 1.5rem;
}

.step-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Benefits List */
.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #374151;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d1fe17;
  font-weight: 700;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-stats-bar {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

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

  .use-case-item,
  .use-case-item.use-case-right {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .use-case-content h3 {
    font-size: 1.5rem;
  }

  .use-case-description {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .section-title-center {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .section-subtitle-center {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 3rem;
  }

  .section {
    padding: 4rem 1.5rem !important;
  }

  .section-gray {
    padding: 4rem 1.5rem !important;
  }
}

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

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

/* ===================================
   PRICING PAGE SPECIFIC STYLES
   =================================== */

/* "Who It's For" subtitle in pricing cards */
.pricing-plan-who-its-for {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  margin: 0.75rem 0 0 0;
  font-weight: 500;
}

/* Best Value Badge */
.pricing-badge-best-value {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.best-value-card {
  border: 2px solid #fbbf24;
  position: relative;
}

.best-value-card:hover {
  border-color: #f59e0b;
  transform: translateY(-4px);
}

/* Trust Strip Section */
.trust-strip-section {
  background: #f9fafb;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.trust-strip-content {
  text-align: center;
}

.trust-strip-text {
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* What You Can Automate Section */
.what-automate-section {
  padding: 5rem 0;
  background: #ffffff;
}

.automate-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.automate-feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.automate-feature-card:hover {
  border-color: #d1fe17;
  transform: translateY(-4px);
}

.feature-emoji {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.automate-feature-card .feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 0.75rem;
}

.automate-feature-card .feature-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Why Creators Love Section */
.why-love-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.love-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.love-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.love-benefit-item:hover {
  border-color: #d1fe17;
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* CTA Buttons Group in Final CTA */
.cta-buttons-group {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.btn-cta-secondary-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-cta-secondary-white:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Pricing Cards - Grid Layout for 3 Plans */
.pricing-modern-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pricing-modern-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Enhanced Feature Comparison Table for 3 Columns */
.comparison-table thead th.featured-column-header {
  background: #f3f4f6;
  color: #000000;
  font-weight: 700;
}

.comparison-table tbody tr td:nth-child(3) {
  background: #fafafa;
}

/* Mobile Responsive Pricing */
@media (max-width: 768px) {
  .pricing-modern-container {
    grid-template-columns: 1fr;
  }
  
  .automate-features-grid,
  .love-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons-group {
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }
  
  .cta-buttons-group .btn {
    width: 100%;
  }
  
  .trust-strip-text {
    font-size: 0.875rem;
  }
  
  .feature-emoji {
    font-size: 2.5rem;
  }
  
  /* All CTA buttons full width on mobile */
  .btn-primary,
  .btn-secondary,
  .btn-large,
  .btn,
  .btn-hero-primary,
  .btn-cta-inverted,
  .btn-cta-primary-white,
  .btn-cta-secondary-white,
  .btn-cta-primary-black,
  .pricing-cta,
  .hero-dark .btn-primary,
  .hero-dark .btn-secondary,
  .about-hero .btn,
  .about-final-cta .btn,
  .hero-new .btn,
  .hero-cta .btn,
  .final-cta-new-content .btn,
  .cta-buttons .btn,
  .hero-buttons .btn,
  .action-buttons .btn {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    text-align: center !important;
  }

  .cta-buttons,
  .hero-buttons,
  .action-buttons,
  .cta-buttons-group {
    flex-direction: column !important;
    width: 100% !important;
  }

  .cta-buttons > *,
  .hero-buttons > *,
  .action-buttons > *,
  .cta-buttons-group > * {
    width: 100% !important;
  }
}

/* ===================================
   NEW HOMEPAGE STYLES - MODERN & CLEAN
   Updated: January 2025
   =================================== */

/* Global Section Spacing */
.section {
  padding: 5rem 0;
}

.section-light {
  background: #f9fafb;
}

.section-white {
  background: #ffffff;
}

.section-dark {
  background: #000000;
  color: #ffffff;
}

/* Container Widths */
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-md {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Titles & Subtitles */
.section-title-center {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle-center {
  font-size: 1.1875rem;
  color: #4b5563;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.section-dark .section-title-center {
  color: #ffffff;
}

.section-dark .section-subtitle-center {
  color: #e5e7eb;
}

/* ===================================
   1. HERO SECTION (Keep existing image)
   =================================== */

.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.trust-badges-images {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}

.trust-creator-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  background: #f3f4f6;
  margin-left: -12px;
}

.trust-creator-image:first-child {
  margin-left: 0;
}

.trust-badges-text {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.trust-badge-text-item {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
}

/* ===================================
   2. AUTOMATION FEATURES GRID (8 cards)
   =================================== */

.automation-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.automation-feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.automation-feature-card:hover {
  border-color: #d1fe17;
  transform: translateY(-4px);
}

.feature-image-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-card-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===================================
   3. HOW IT WORKS SECTION (3 steps)
   =================================== */

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.how-step-card {
  text-align: center;
}

.step-number-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #d1fe17;
  color: #000000;
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.step-title-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-description-text {
  font-size: 1.0625rem;
  color: #6b7280;
  line-height: 1.6;
}

.how-it-works-cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.how-it-works-visual {
  text-align: center;
  margin-top: 4rem;
}

.flow-diagram {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* ===================================
   4. WHAT YOU CAN SEND (4 outcomes)
   =================================== */

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.outcome-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.outcome-card:hover {
  border-color: #d1fe17;
}

.outcome-image-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outcome-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.outcome-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===================================
   5. TRUST & SAFETY SECTION
   =================================== */

.trust-points-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2.5rem auto;
}

.trust-point-item {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #000000;
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-point-item:hover {
  background: #ffffff;
  border-color: #d1fe17;
}

.trust-check-icon {
  color: #10b981;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-point-text {
  flex: 1;
}

.trust-badge-visual {
  text-align: center;
  margin-top: 3rem;
}

.trust-badge-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* ===================================
   6. PERSONAS SECTION (4 cards)
   =================================== */

.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.persona-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.persona-card:hover {
  border-color: #d1fe17;
  transform: translateY(-4px);
}

.persona-image-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  background: #f3f4f6;
}

.persona-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.persona-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.persona-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===================================
   7. WHY CHOOSE SECTION
   =================================== */

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 700px;
  margin: 2.5rem auto;
}

.why-choose-item {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #000000;
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.why-choose-item:hover {
  background: #ffffff;
  border-color: #d1fe17;
  transform: translateX(4px);
}

.why-choose-check-icon {
  color: #10b981;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-choose-text {
  flex: 1;
}

.why-choose-visual {
  text-align: center;
  margin-top: 3rem;
}

.dashboard-preview {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
}

/* ===================================
   8. FAQ SECTION (Improved)
   =================================== */

/* FAQ styles removed - now using unified faq-unified.css */
/* Old JavaScript-based accordion styles replaced with native HTML details/summary */

/* ===================================
   9. FINAL CTA SECTION (Dark)
   =================================== */

.final-cta-section-modern {
  padding: 5rem 0;
  background: #000000;
}

.final-cta-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.final-cta-text-content {
  text-align: left;
}

.final-cta-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: 1.125rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-cta-primary-white {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #000000;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.btn-cta-primary-white:hover {
  background: #d1fe17;
  border-color: #d1fe17;
  color: #000000;
  transform: translateY(-2px);
}

.final-cta-microcopy-text {
  font-size: 0.9375rem;
  color: #9ca3af;
  margin-top: 1rem;
}

.final-cta-image-wrapper {
  border-radius: 1rem;
  overflow: hidden;
}

.final-cta-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */

@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }

  .automation-features-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .final-cta-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .final-cta-text-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }

  .section-title-center {
    font-size: 1.625rem; /* Reduced from 2rem */
    margin-bottom: 0.75rem;
  }

  .section-subtitle-center {
    font-size: 1rem; /* Reduced from 1.0625rem */
    margin-bottom: 2rem;
  }

  .automation-features-grid,
  .how-it-works-steps,
  .outcomes-grid,
  .personas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .automation-feature-card,
  .outcome-card,
  .persona-card {
    padding: 1.5rem;
  }

  .step-number-circle {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .step-title-text {
    font-size: 1.25rem;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust-badges-images {
    margin-right: 0;
  }
  
  .trust-badges-text {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .trust-badge-text-item {
    font-size: 0.875rem;
  }

  .final-cta-section-modern {
    padding: 3rem 0;
  }

  .btn-cta-primary-white {
    width: 100%;
    text-align: center;
  }

  .container-sm,
  .container-md,
  .container-lg {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2rem 0;
  }

  .section-title-center {
    font-size: 1.5rem; /* Reduced from 1.75rem */
  }

  .section-subtitle-center {
    font-size: 0.9375rem; /* Reduced from 1rem */
  }

  .feature-card-title,
  .outcome-title,
  .persona-title {
    font-size: 1.0625rem; /* Reduced from 1.125rem */
  }

  .step-number-circle {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }

  .automation-feature-card,
  .outcome-card,
  .persona-card {
    padding: 1.125rem;
  }

  .hero-new {
    padding: 4.5rem 0.875rem 1.75rem; /* Optimized for small mobile */
  }
  
  .hero-new-container {
    padding: 0;
  }
  
  .hero-new .hero-title {
    font-size: 1.75rem; /* Even smaller for very small screens */
  }

  .hero-new .hero-subtitle {
    font-size: 0.9375rem;
  }
  
  /* Hero product visual - critical fix for small mobile */
  .hero-product-visual {
    margin-top: 2rem !important;
    padding: 0 !important;
    max-width: 100%;
  }
  
  .hero-product-visual::before {
    width: min(400px, 92vw) !important; /* Much smaller on mobile phones */
    height: min(300px, 60vw) !important;
    border-radius: 1rem !important;
    transform: translate(-50%, -40%) rotate(-4deg) !important; /* Slightly less rotation */
  }
  
  .hero-mockup {
    max-width: 95% !important; /* Prevent any edge cutoff */
    margin: 0 auto !important;
  }
}

