/* ============================================
   Tribu for Companies — Page-specific styles
   ============================================ */

/* --- Hero --- */

.co-hero {
  padding: 9rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, #1a1a2e 0%, #2d2b55 60%, #1B9AAA 100%);
  color: #fff;
}

.co-hero .section-label {
  color: #5DC8D6;
}

.co-hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.co-hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #c5e5ea;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.co-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.co-hero-ctas .cta-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.co-hero-ctas .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* --- Stats --- */

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

.co-stat {
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8ef;
}

.co-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1B9AAA;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.co-stat-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}

.co-stat-source {
  font-size: 0.72rem;
  color: #999;
  font-style: italic;
  margin-top: 0.5rem;
}

/* --- Comparison Table --- */

.co-comparison-source {
  font-size: 0.75rem;
  color: #999;
  font-style: italic;
  margin-top: 0.25rem;
}

.co-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.co-compare-col {
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
}

.co-compare-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.co-compare-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.co-compare-col li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.co-compare-old {
  background: #f8f8fa;
  border: 1px solid #e8e8ef;
}

.co-compare-old h3 { color: #888; }
.co-compare-old li { color: #777; }

.compare-x {
  color: #dc3545;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.co-compare-new {
  background: #fff;
  border: 2px solid #1B9AAA;
  box-shadow: 0 8px 32px rgba(27, 154, 170, 0.12);
}

.co-compare-new h3 { color: #1B9AAA; }

.compare-check {
  color: #1B9AAA;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* --- Features Grid --- */

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

.co-feature {
  background: #fff;
  border: 1px solid #e8e8ef;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.co-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 154, 170, 0.1);
}

.co-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.co-feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.co-feature p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* --- Example Reports Banner --- */

.co-reports-banner {
  max-width: 680px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border-radius: 12px;
  text-align: center;
}

.co-reports-banner h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.co-reports-banner p {
  color: #c5e5ea;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.co-reports-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.co-reports-links .cta-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.82rem;
}

.co-reports-links .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* --- How Tribu Fits Your Stack --- */

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

.co-stack-card {
  background: #fff;
  border: 1px solid #e8e8ef;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.co-stack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 154, 170, 0.08);
}

.co-stack-header {
  margin-bottom: 1rem;
}

.co-stack-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.co-stack-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
}

.co-stack-what {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.co-stack-tribu {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.5;
  padding: 0.85rem 1rem;
  background: #f0fafb;
  border-left: 3px solid #1B9AAA;
  border-radius: 0 8px 8px 0;
}

.co-stack-tribu strong {
  color: #1B9AAA;
  font-size: 0.82rem;
  display: block;
  margin-bottom: 0.25rem;
}

.co-stack-bottom {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1B9AAA;
}

/* --- Science Section --- */

.co-science {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.co-science-text { text-align: left; }

.co-science-text p {
  font-size: 1rem;
  color: #555;
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

.co-research-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.co-research-list li {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.co-research-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1B9AAA;
}

.co-research-list li strong {
  color: #1a1a2e;
}

.co-science-visual {
  max-width: 300px;
  margin: 0 auto;
}

.co-science-visual svg {
  width: 100%;
  height: auto;
}

/* --- Pricing (single card highlight) --- */

.co-pricing-highlight {
  max-width: 400px;
  margin: 2rem auto;
}

.co-pricing-card {
  background: #fff;
  border: 2px solid #1B9AAA;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(27, 154, 170, 0.15);
}

.co-pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.co-pricing-annual {
  font-size: 0.85rem;
  color: #2e7d32;
  margin-top: 0.5rem;
}

.co-pricing-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: #888;
}

.co-pricing-note a {
  color: #1B9AAA;
  font-weight: 600;
}

.co-pricing-note a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .co-hero { padding: 7rem 0 3rem; }

  .co-comparison {
    grid-template-columns: 1fr;
  }

  .co-science {
    grid-template-columns: 1fr;
  }

  .co-science-visual {
    max-width: 240px;
    order: -1;
  }

  .co-features-grid {
    grid-template-columns: 1fr;
  }

  .co-stack-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .co-stats-grid {
    grid-template-columns: 1fr;
  }

  .co-hero h1 {
    font-size: 1.8rem;
  }
}
