/*
 * CallCoach Enterprise AU Landing Page - Bootstrap Custom Styles
 * Page-specific styles only (common styles in common-bootstrap.css)
 */

/* ========================================
   HERO SECTION
   ======================================== */

.enterprise-hero {
  background: linear-gradient(135deg, #1a2444 0%, var(--accent-900) 50%, var(--accent-700) 100%);
  color: white;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.enterprise-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.enterprise-hero .container {
  position: relative;
  z-index: 1;
}

.enterprise-hero h1 {
  color: white !important;
  font-size: 2.75rem;
  line-height: 1.2;
}

.enterprise-hero .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.enterprise-cta {
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  color: var(--primary-dark) !important;
  border: none;
}

.enterprise-cta:hover {
  color: var(--primary-dark) !important;
  background-color: #e8ecf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-microcopy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
  background-color: #f0f2f8;
  border-bottom: 1px solid #dee2e6;
}

.trust-bar-label {
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-logo {
  height: 36px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

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

.trust-inline-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.trust-inline-badge img {
  height: 28px;
  width: auto;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */

.comparison-card {
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.comparison-card.standard {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}

.comparison-card.enterprise {
  background-color: #f0f2f8;
  border: 2px solid var(--accent-600);
}

.comparison-card h5, .comparison-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Card titles demoted from h5 to h3 for heading order; keep h5 rendering */
h3.card-title {
  font-size: 1.25rem;
  line-height: 125%;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.comparison-item .check {
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.comparison-item .cross {
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.comparison-note {
  font-size: 0.95rem;
  color: var(--primary-dark);
  max-width: 800px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

/* ========================================
   CARD ICONS
   ======================================== */

.card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(71, 102, 229, 0.1) 0%, rgba(130, 153, 247, 0.1) 100%);
}

.card-icon-wrapper svg {
  color: var(--accent-600);
}

/* ========================================
   STAT CARDS
   ======================================== */

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-600);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-description {
  font-size: 0.95rem;
  color: var(--primary-dark);
}

/* ========================================
   TESTIMONIAL
   ======================================== */

.testimonial-blockquote {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-dark);
  line-height: 1.5;
  max-width: 750px;
  margin: 0 auto;
}

.testimonial-attribution {
  font-size: 0.95rem;
  color: var(--accent-600);
  font-weight: 500;
}

/* ========================================
   INTEGRATIONS GRID
   ======================================== */

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.integration-grid-logo {
  height: 32px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.integration-grid-logo:hover {
  opacity: 1;
}

/* ========================================
   ENTERPRISE PLAN CALLOUT
   ======================================== */

.enterprise-callout {
  background: linear-gradient(135deg, #1a2444 0%, var(--accent-900) 50%, var(--accent-700) 100%);
  position: relative;
  overflow: hidden;
}

.enterprise-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.enterprise-callout .container {
  position: relative;
  z-index: 1;
}

.enterprise-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enterprise-feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.enterprise-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--accent-400);
  border-radius: 50%;
}

.data-residency-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-top: 0.5rem;
}

/* ========================================
   DEMO SECTION
   ======================================== */

.demo-section h2 {
  color: var(--primary-dark);
}

.demo-section p {
  color: var(--primary-dark);
  opacity: 0.8;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

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

  .enterprise-hero h1 {
    font-size: 2rem;
  }

  .enterprise-hero .lead {
    font-size: 1.05rem;
  }

  .trust-logo {
    height: 28px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .testimonial-blockquote {
    font-size: 1.25rem;
  }

  .integration-grid-logo {
    height: 24px;
  }

  .integrations-grid {
    gap: 1.5rem 2rem;
  }
}
