/* ========================================
   PRICING PAGE FIXES - NO SHADOWS, NO HOVER EFFECTS
   ========================================
   
   Following CLAUDE.md guidelines:
   - NO box-shadows anywhere
   - NO hover transforms/lifts
   - ONLY color changes on hover
   - #000000 for all dark backgrounds
   ======================================== */

/* ===== REMOVE ALL BOX-SHADOWS ===== */
.pricing-card,
.pricing-card.featured-card,
.pricing-card:hover,
.pricing-card.featured-card:hover,
.pricing-modern-card,
.pricing-modern-card:hover,
.pricing-cta,
.pricing-cta:hover,
.testimonial-card,
.testimonial-card:hover,
.testimonial-avatar img,
.automate-feature-card,
.automate-feature-card:hover,
.hero-mockup,
.pricing-mockup,
.comparison-table-wrapper,
.faq-item,
.faq-item:hover,
.trust-badge-item,
.billing-toggle,
.billing-option {
  box-shadow: none !important;
}

/* ===== REMOVE ALL HOVER TRANSFORMS ===== */
.pricing-card:hover,
.pricing-card.featured-card:hover,
.pricing-modern-card:hover,
.testimonial-card:hover,
.automate-feature-card:hover,
.pricing-cta:hover,
.btn:hover {
  transform: none !important;
}

/* ===== FIX FEATURED CARD BUTTON VISIBILITY ===== */
/* The Pro card (black background) MUST have visible lime green button */
.pricing-card.featured-card .pricing-cta {
  background: #d1fe17 !important;
  color: #000000 !important;
  border: 2px solid #d1fe17 !important;
  font-weight: 700 !important;
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
  border-radius: 0.5rem !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, border-color 0.2s ease !important;
  display: inline-block !important;
  text-align: center !important;
  text-decoration: none !important;
}

.pricing-card.featured-card .pricing-cta:hover {
  background: #bfe615 !important;
  border-color: #bfe615 !important;
  color: #000000 !important;
}

/* ===== FREE PLAN BUTTON (White card) ===== */
.pricing-card:not(.featured-card) .pricing-cta {
  background: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #000000 !important;
  font-weight: 700 !important;
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
  border-radius: 0.5rem !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
  display: inline-block !important;
  text-align: center !important;
  text-decoration: none !important;
}

.pricing-card:not(.featured-card) .pricing-cta:hover {
  background: #d1fe17 !important;
  border-color: #d1fe17 !important;
  color: #000000 !important;
}

/* ===== PRICING CARDS - CLEAN BORDERS ONLY ===== */
.pricing-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  border-color: #d1d5db;
}

/* Featured Pro Card - Black background with lime green border + LARGER */
.pricing-card.featured-card {
  background: #000000 !important;
  border: 3px solid #d1fe17 !important;
  border-radius: 16px;
  transform: scale(1.05);
  padding: 1.75rem 1.5rem;
}

.pricing-card.featured-card:hover {
  border-color: #d1fe17 !important;
}

/* Pricing card internal spacing - REDUCED */
.pricing-header {
  margin-bottom: 1rem;
}

.pricing-price-section {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.pricing-card.featured-card .pricing-price-section {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-button-section {
  margin-bottom: 1.5rem;
}

.pricing-features-section {
  margin-top: 0;
}

.pricing-features-section .features-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: #6b7280;
}

.pricing-card.featured-card .features-heading {
  color: #d1d5db;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.pricing-plan-name {
  font-size: 1.5rem;
    font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-plan-who-its-for,
.pricing-plan-tagline {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #6b7280;
}

.pricing-card.featured-card .pricing-plan-who-its-for,
.pricing-card.featured-card .pricing-plan-tagline {
  color: #d1d5db;
}

.pricing-note {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  color: #6b7280;
}

.pricing-card.featured-card .pricing-note {
  color: #d1d5db;
}

/* ===== TESTIMONIAL CARDS - CLEAN STYLE ===== */
.testimonial-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

.testimonial-card:hover {
  border-color: #d1d5db;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid #f3f4f6;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== WHAT YOU CAN AUTOMATE - CLEAN CARDS ===== */
.automate-feature-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.automate-feature-card:hover {
  border-color: #d1d5db;
}

.automate-feature-card .feature-visual {
  margin-bottom: 1.5rem;
}

.automate-feature-card .feature-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* ===== IMAGES - CLEAN BORDERS ===== */
.hero-mockup,
.pricing-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
}

/* ===== BILLING TOGGLE - CLEAN STYLE ===== */
.billing-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding: 0.375rem;
  background: #f3f4f6;
  border-radius: 0.75rem;
  width: fit-content;
  border: 1px solid #e5e7eb;
}

.billing-option {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Stack Sans Headline", sans-serif;
}

.billing-option.active {
  background: #ffffff;
  color: #000000;
  border: 1px solid #e5e7eb;
}

.billing-option:hover:not(.active) {
  color: #000000;
}

.savings-badge {
  background: #d1fe17;
  color: #000000;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

/* ===== COMPARISON TABLE - CLEAN STYLE ===== */
.comparison-table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  overflow: hidden;
  margin-top: 3rem;
}

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

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
  background: #f9fafb;
  font-weight: 700;
  color: #000000;
}

.comparison-table .featured-column-header,
.comparison-table .featured-column {
  background: #f9fafb;
}

/* ===== HERO SECTION - CLEAN SPACING & CONSISTENT TYPOGRAPHY ===== */
.hero-section {
  padding: 4rem 0 3rem;
  text-align: center;
}

/* CRITICAL: Consistent H1 sizing across ALL pages (matches homepage) */
.hero-section .hero-title,
.hero-title {
  font-family: "Stack Sans Headline", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: #000000 !important;
  margin-bottom: 1.5rem !important;
}

.hero-section .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: #4b5563;
  margin-top: 1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .trust-badges-row {
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #4b5563;
}

.hero-visual {
  max-width: 800px;
  margin: 3rem auto 0;
}

/* ===== PRICING VISUAL PREVIEW ===== */
.pricing-visual-preview {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pricing-image-caption {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #6b7280;
  font-style: italic;
}

/* ===== PRICING SECTION SPACING ===== */
.pricing-card-section .section-header-pricing {
  margin-bottom: 2.5rem;
}

.section-header-pricing .section-description-pricing {
  margin-bottom: 0.5rem;
}

/* ===== COMPARISON LINK ===== */
.comparison-link-wrapper {
  margin-top: 1rem;
  text-align: center;
}

.comparison-link {
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.comparison-link:hover {
  color: #000000;
  text-decoration: underline;
}

/* ===== WHY CREATORS LOVE - WITH IMAGE ===== */
.why-love-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-love-visual {
  text-align: center;
}

.why-love-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
}

.why-love-caption {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #6b7280;
  font-style: italic;
}

/* ===== SECTION HEADINGS - CONSISTENT ACROSS ALL PAGES ===== */
.section-title-centered,
.section-title-center,
.section-title-pricing,
h2.section-title {
  font-family: "Stack Sans Headline", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  color: #000000 !important;
  margin-bottom: 1rem !important;
}

.section-subtitle,
.section-subtitle-center,
.section-description-pricing {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: #6b7280;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 1024px) {
  .why-love-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Hero adjustments */
  .hero-section {
    padding: 3rem 0 2rem;
  }
  
  .hero-section .hero-title,
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-section .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-section .trust-badges-row {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* Pricing cards - REDUCED PADDING ON MOBILE */
  .pricing-card {
    padding: 1.25rem 1rem !important;
  }
  
  /* Pro card - NO SCALE ON MOBILE (would break layout) */
  .pricing-card.featured-card {
    transform: scale(1) !important;
    padding: 1.5rem 1.25rem !important;
  }
  
  .pricing-header {
    margin-bottom: 0.75rem;
  }
  
  .pricing-price-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .pricing-button-section {
    margin-bottom: 1.25rem;
  }
  
  .pricing-features-list {
    gap: 0.5rem;
  }
  
  .feature-item {
    font-size: 0.875rem;
  }
  
  .pricing-plan-name {
    font-size: 1.25rem;
    margin-bottom: 0.375rem;
  }
  
  .pricing-plan-who-its-for,
  .pricing-plan-tagline {
    font-size: 0.8125rem;
  }
  
  .billing-toggle {
    width: 100%;
    max-width: 400px;
  }
  
  .billing-option {
    flex: 1;
    justify-content: center;
  }
  
  .pricing-cta,
  .pricing-card.featured-card .pricing-cta,
  .pricing-card:not(.featured-card) .pricing-cta {
    width: 100%;
    padding: 0.875rem 1.25rem !important;
    font-size: 0.9375rem !important;
  }
  
  .comparison-link {
    font-size: 0.8125rem;
  }
  
  /* Section headings mobile */
  .section-title-centered,
  .section-title-center,
  .section-title-pricing,
  h2.section-title {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }
}

