/* ===================================
   HOMEPAGE REDESIGN - VISUAL LAYOUTS
   Updated: November 2025
   Brand Colors: #000000 (black), #d1fe17 (lime green)
   No box-shadows, no gradients
   =================================== */

/* ===================================
   2. HERO FEATURES - SPLIT LAYOUTS
   =================================== */

#hero-features {
  padding: 5rem 0;
}

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

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

/* Alternating layouts */
.hero-feature-item.feature-layout-right {
  grid-template-columns: 1fr 1fr;
}

.hero-feature-item.feature-layout-left {
  grid-template-columns: 1fr 1fr;
}

.hero-feature-item.feature-layout-left .hero-feature-content {
  order: 2;
}

.hero-feature-item.feature-layout-left .hero-feature-visual {
  order: 1;
}

/* Feature content */
.hero-feature-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-badge-tag {
  display: inline-block;
  background-color: #d1fe17;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-feature-headline {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin: 0;
}

.hero-feature-outcome {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Perfect for section */
.hero-feature-perfect-for {
  margin-top: 0.5rem;
}

.perfect-for-label {
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.perfect-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.perfect-for-list li {
  color: #4b5563;
  font-size: 0.9375rem;
  padding-left: 1.5rem;
  position: relative;
}

.perfect-for-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d1fe17;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Feature CTA */
.hero-feature-cta {
  display: inline-block;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.2s ease;
  width: fit-content;
  border-bottom: 2px solid #000000;
}

.hero-feature-cta:hover {
  color: #d1fe17;
  border-bottom-color: #d1fe17;
}

/* Feature visual */
.hero-feature-visual {
  position: relative;
}

.hero-feature-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .hero-feature-item,
  .hero-feature-item.feature-layout-left,
  .hero-feature-item.feature-layout-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-feature-item.feature-layout-left .hero-feature-content,
  .hero-feature-item.feature-layout-left .hero-feature-visual {
    order: initial;
  }
  
  .hero-features-list {
    gap: 4rem;
  }
}

@media (max-width: 640px) {
  #hero-features {
    padding: 3rem 0;
  }
  
  .hero-features-list {
    gap: 3rem;
  }
  
  .hero-feature-headline {
    font-size: 1.5rem;
  }
  
  .hero-feature-outcome {
    font-size: 1rem;
  }
}

/* ===================================
   4. SEE IT IN ACTION - CALLOUTS
   =================================== */

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

.action-callout-card {
  background-color: #ffffff;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

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

.callout-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.callout-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.75rem;
}

.callout-card-description {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .see-action-callouts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===================================
   5. PERSONAS - VISUAL CARDS
   =================================== */

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

.persona-card-improved {
  background-color: #ffffff;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

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

.persona-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.4) 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  position: relative;
  z-index: 1;
}

.persona-image-wrapper {
  display: none;
}

.persona-image {
  display: none;
}

.persona-card-improved .persona-badge {
  background-color: #d1fe17;
  color: #000000;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin: 0 0 1rem 0;
  border-radius: 9999px;
  width: fit-content;
}

.persona-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.persona-description {
  font-size: 1rem;
  color: #e5e5e5;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.persona-automation-info {
  margin: 0 0 1.5rem 0;
}

.persona-what-label {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.persona-automate-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.persona-automate-list li {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
}

.persona-learn-more {
  display: inline-block;
  color: #d1fe17;
  font-weight: 600;
  text-decoration: none;
  padding: 0;
  margin: 0;
  transition: opacity 0.2s ease;
  font-size: 0.875rem;
}

.persona-learn-more:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .personas-grid-improved {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===================================
   8. HOW IT WORKS - TIMELINE
   =================================== */

#how-it-works {
  padding: 5rem 0;
}

.how-it-works-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #000000;
  color: #d1fe17;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 2px solid #f3f4f6;
  background-color: #f9fafb;
}

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

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.step-description {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 768px) {
  .how-it-works-timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  #how-it-works {
    padding: 3rem 0;
  }
}

/* ===================================
   9. REAL CONVERSATIONS - PHONE MOCKUPS
   =================================== */

#real-conversations {
  padding: 5rem 0;
}

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

.conversation-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conversation-mockup {
  position: relative;
  background-color: #f9fafb;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease;
}

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

.conversation-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.conversation-overlay {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.conversation-bubble {
  padding: 0.875rem 1.125rem;
  border-radius: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 85%;
  word-wrap: break-word;
}

.conversation-bubble.msg-follower {
  background-color: #e5e7eb;
  color: #1f2937;
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
}

.conversation-bubble.msg-auto {
  background-color: #000000;
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 0.25rem;
}

.conversation-caption {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
}

@media (max-width: 1024px) {
  .conversations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .conversation-mockup {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  #real-conversations {
    padding: 3rem 0;
  }
  
  .conversation-mockup {
    padding: 1.5rem 1rem;
  }
  
  .conversation-bubble {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
}

/* ===================================
   BUTTON STYLES
   =================================== */

.btn-cta-primary-black {
  background-color: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  border: 2px solid #000000;
}

.btn-cta-primary-black:hover {
  background-color: #d1fe17;
  color: #000000;
  border-color: #d1fe17;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

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

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: #f9fafb;
}

.section-white {
  background-color: #ffffff;
}

.section-title-center {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

@media (max-width: 768px) {
  .container-lg,
  .container-md {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-subtitle-center {
    font-size: 1rem;
  }
}
