/* Inter Media - Enterprise Design System */

:root {
  --primary-red: #c41e3a;
  --secondary-gold: #d4af37;
  --accent-blue: #4a90e2;
  --dark-gray: #2c3e50;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --gradient-overlay: linear-gradient(135deg, rgba(196, 30, 58, 0.92) 0%, rgba(212, 175, 55, 0.88) 100%);

  /* Legacy aliases for compatibility */
  --primary-blue: #c41e3a;
  --secondary-teal: #d4af37;
  --accent-orange: #4a90e2;
}

/* Enhanced Typography */
.enterprise-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.enterprise-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Statistics Bar */
.stats-bar {
  background: var(--white);
  padding: 3rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Components */
.enterprise-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.enterprise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--secondary-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.card-description {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--secondary-teal);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--accent-orange);
  transform: translateX(4px);
}

/* Brand Cards */
.brand-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.brand-screenshot {
  width: 100%;
  height: 200px;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
}

.brand-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.brand-description {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.brand-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.brand-metric {
  font-size: 0.85rem;
}

.brand-metric strong {
  color: var(--secondary-teal);
  display: block;
  font-size: 1.1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons */
.btn-enterprise {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.15);
}

.btn-enterprise:hover {
  background: #141e5e;
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

/* Navigation Enhancement */
.navbar-enterprise {
  background: var(--white) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 0;
}

.nav-link-enterprise {
  color: var(--dark-gray) !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.3s ease;
}

.nav-link-enterprise:hover {
  color: var(--secondary-teal) !important;
  transform: translateY(-1px);
}

/* Navigation Button Styling */
.navbar-buttons .btn-enterprise {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
}

/* Enhanced Hero */
.hero-enterprise {
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--gradient-overlay);
  position: relative;
  overflow: hidden;
}

.hero-enterprise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

/* Client Logos Section */
.client-logos {
  background: var(--light-gray);
  padding: 4rem 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.client-logo {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Technology Section */
.tech-feature {
  padding: 3rem;
  background: var(--white);
  border-left: 4px solid var(--secondary-teal);
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tech-feature-title {
  font-size: 1.8rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.tech-stack-badge {
  display: inline-block;
  background: var(--light-gray);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .enterprise-hero-title {
    font-size: 2.5rem;
  }

  .enterprise-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-enterprise {
    min-height: 500px;
    padding: 60px 0 40px;
  }

  .stats-bar {
    padding: 2rem 0;
  }

  .enterprise-card {
    padding: 2rem;
  }

  .brand-card {
    margin-bottom: 1.5rem;
  }

  .btn-enterprise,
  .btn-outline {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }

  /* Adjust section padding on mobile */
  section[style*="padding: 5rem"] {
    padding: 3rem 0 !important;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .tech-feature {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
}
