/* CodRobot marketing page sections */

.marketing-hero {
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  color: var(--text-on-dark);
  border-radius: 0;
  box-shadow: none;
}

.marketing-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-on-dark);
}

.marketing-hero .hero-accent {
  display: block;
  color: var(--brand-accent);
  margin-top: 0.35rem;
}

.marketing-hero p {
  margin: 0 auto 2rem;
  max-width: 42rem;
  color: var(--text-muted-dark);
  font-size: 1.15rem;
  line-height: 1.65;
}

.marketing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

.marketing-trust span::before {
  content: "✓ ";
  color: #4ade80;
  font-weight: 700;
}

.marketing-section {
  padding: 4rem 0;
}

.marketing-section-white {
  background: #fff;
}

.marketing-section-gray {
  background: var(--page-bg);
}

.marketing-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.marketing-section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #111827;
}

.marketing-section-header p {
  margin: 0 auto;
  max-width: 36rem;
  color: #4b5563;
  font-size: 1.1rem;
}

.marketing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.marketing-feature-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--page-bg);
  box-shadow: 0 4px 14px rgba(11, 17, 48, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.marketing-feature-card:hover {
  box-shadow: 0 10px 28px rgba(11, 17, 48, 0.1);
  transform: translateY(-2px);
}

.marketing-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #fff;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.marketing-feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}

.marketing-feature-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
}

.marketing-cta {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--text-on-dark);
}

.marketing-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-on-dark);
}

.marketing-cta p {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  color: var(--text-muted-dark);
  font-size: 1.1rem;
}

.marketing-cta-note {
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

.btn-outline-accent {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
}

.btn-outline-accent:hover {
  background: var(--brand-accent);
  color: #111827;
  text-decoration: none;
}

/* Inner marketing pages (Features, Pricing, etc.) */
.marketing-page-hero {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--text-on-dark);
}

.marketing-page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-on-dark);
}

.marketing-page-hero .hero-accent {
  display: block;
  color: var(--brand-accent);
  margin-top: 0.35rem;
}

.marketing-page-hero p {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Split feature blocks */
.marketing-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .marketing-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .marketing-split-reverse .marketing-split-copy {
    order: 2;
  }

  .marketing-split-reverse .marketing-split-visual {
    order: 1;
  }
}

.marketing-split-title {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
}

.marketing-split-lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.65;
}

.marketing-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.marketing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.45;
}

.marketing-check-icon {
  flex-shrink: 0;
  color: #22c55e;
  font-weight: 700;
  line-height: 1.4;
}

.marketing-mock-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(11, 17, 48, 0.1);
}

.marketing-mock-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
}

.marketing-mock-bubble {
  margin: 0 0 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 92%;
}

.marketing-mock-in {
  background: #f3f4f6;
  color: #374151;
  margin-right: auto;
}

.marketing-mock-out {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #111827;
  margin-left: auto;
}

.marketing-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.marketing-mock-stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-accent, #f5a623);
}

.marketing-mock-stat-label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(11, 17, 48, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
  box-shadow: 0 10px 28px rgba(11, 17, 48, 0.1);
}

.pricing-card-popular {
  border: 2px solid var(--brand-accent, #f5a623);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.15);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-accent, #f5a623) 0%, var(--brand-accent-end, #f7941d) 100%);
  color: #111827;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card-head {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-card-head h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: #6b7280;
}

.pricing-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 0.65rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.4;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.btn-pricing-dark {
  background: #111827;
  color: #fff;
  box-shadow: none;
}

.btn-pricing-dark:hover {
  background: #1f2937;
  color: #fff;
  transform: translateY(-1px);
}

.pricing-trial-note {
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* FAQ */
.marketing-faq-list {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.marketing-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.marketing-faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.marketing-faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
}
