/* HERO SECTION */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg,
      rgba(16, 64, 102, 0.05) 0%,
      rgba(248, 249, 250, 1) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><path fill="%23104066" fill-opacity="0.03" d="M200,0 C310.46,0 400,89.54 400,200 C400,310.46 310.46,400 200,400 C89.54,400 0,310.46 0,200 C0,89.54 89.54,0 200,0 Z M200,50 C118.43,50 50,118.43 50,200 C50,281.57 118.43,350 200,350 C281.57,350 350,281.57 350,200 C350,118.43 281.57,50 200,50 Z"></path></svg>') center/contain no-repeat;
  opacity: 0.5;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--medium-gray);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/* VALUE PROPOSITION SECTION */
.value-props {
  padding: 100px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid var(--primary-red);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-red);
  font-size: 30px;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--medium-gray);
}

/* MODEL SECTION */
.model {
  padding: 100px 0;
  background-color: var(--off-white);
}

.model-diagram {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.model-step {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  border-left: 4px solid var(--primary-blue);
}

.model-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
}

.model-connector {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--primary-blue);
  transform: translateX(-50%);
  z-index: 1;
}

.model-divisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.division-card {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-red);
}

.division-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.division-icon {
  font-size: 36px;
  color: var(--primary-red);
  margin-bottom: 15px;
}

/* NETWORK SECTION */
.network {
  padding: 100px 0;
  background-color: white;
}

.network-map {
  position: relative;
  max-width: 800px;
  height: 400px;
  margin: 0 auto 50px;
  background-color: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400" width="800" height="400"><path fill="%23e9ecef" d="M0,0H800V400H0Z"/><path fill="none" stroke="%23adb5bd" stroke-width="1" d="M100,100H700V300H100Z"/><circle cx="200" cy="150" r="8" fill="%23104066"/><circle cx="350" cy="120" r="8" fill="%23104066"/><circle cx="500" cy="180" r="8" fill="%23104066"/><circle cx="300" cy="250" r="8" fill="%23104066"/><circle cx="450" cy="280" r="8" fill="%23104066"/><circle cx="600" cy="220" r="8" fill="%23104066"/></svg>');
  background-size: cover;
  background-position: center;
}

.network-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.location-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 25px;
  transition: var(--transition);
}

.location-card:hover {
  background-color: rgba(16, 64, 102, 0.05);
}

.location-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.location-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg,
      var(--primary-blue) 0%,
      var(--dark-blue) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  /* max-width: 700px; */
  margin: 0 auto 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-buttons .btn-primary {
  background-color: white;
  color: var(--primary-blue);
}

.cta-buttons .btn-primary:hover {
  background-color: var(--light-gray);
}

.cta-buttons .btn-secondary {
  border-color: white;
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {

  .value-cards,
  .model-divisions {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-locations {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

  .hero {
    padding: 150px 0 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .value-cards,
  .model-divisions,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .cta-section h2 {
    font-size: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .model-step {
    padding: 20px;
  }
}