/* PAGE HERO - OUR SOLUTION */
.page-hero {
  padding: 160px 0 100px;
  background: linear-gradient(
    135deg,
    rgba(16, 64, 102, 0.05) 0%,
    rgba(248, 249, 250, 1) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" 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;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: 24px;
  color: var(--medium-gray);
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}

.hero-description {
  font-size: 18px;
  color: var(--medium-gray);
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-red);
}

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

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--dark-gray);
  font-weight: 600;
}

/* STRESS-FREE PROMISE SECTION */
.promise-section {
  padding: 80px 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;
}

/* SIMPLIFICATION SECTION */
.simplification-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.simplification-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-side h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-red);
}

.problem-list {
  list-style: none;
  margin-bottom: 30px;
}

.problem-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--dark-gray);
}

.problem-list li:before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 20px;
}

.solution-side h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.solution-list {
  list-style: none;
}

.solution-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--dark-gray);
}

.solution-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 18px;
}

/* PAIN POINTS SECTION */
.painpoints-section {
  padding: 80px 0;
  background-color: white;
}

.painpoints-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.painpoint-card {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 40px;
  transition: var(--transition);
  border-left: 5px solid var(--primary-red);
}

.painpoint-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background-color: white;
}

.painpoint-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.painpoint-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 24px;
  flex-shrink: 0;
}

.painpoint-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-red);
}

.painpoint-quote {
  font-style: italic;
  color: var(--medium-gray);
  padding: 20px;
  background-color: white;
  border-radius: 6px;
  margin-bottom: 25px;
  border-left: 4px solid var(--light-gray);
}

.solution-details h4 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.solution-details p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* STRESS-FREE PROCESS */
.process-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background-color: white;
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border-top: 5px solid var(--primary-blue);
}

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

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 24px;
  font-weight: 700;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.process-step p {
  color: var(--medium-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* PARTNERSHIP DIFFERENCE */
.partnership-section {
  padding: 80px 0;
  background-color: white;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.focus-area {
  background-color: rgba(16, 64, 102, 0.05);
  border-radius: 8px;
  padding: 40px;
  border-left: 5px solid var(--primary-blue);
}

.management-area {
  background-color: rgba(207, 1, 6, 0.05);
  border-radius: 8px;
  padding: 40px;
  border-left: 5px solid var(--primary-red);
}

.area-title {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
}

.area-list {
  list-style: none;
}

.area-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--dark-gray);
}

.area-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 24px;
}

.management-area .area-list li:before {
  color: var(--primary-red);
}

/* COMPARISON SECTION */
.comparison-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--primary-blue);
  color: white;
}

.comparison-header h3 {
  color: white;
  padding: 25px;
  margin: 0;
  text-align: center;
  font-size: 22px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--light-gray);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.traditional .comparison-cell:first-child {
  border-right: 1px solid var(--light-gray);
}

.icon-bad {
  color: var(--primary-red);
  font-size: 20px;
  flex-shrink: 0;
}

.icon-good {
  color: var(--primary-blue);
  font-size: 20px;
  flex-shrink: 0;
}

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

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

.ready-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 60px auto;
}

.ready-step {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition);
}

.ready-step:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.ready-step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 24px;
  font-weight: 700;
}

.ready-step h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 20px;
}

.ready-step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .painpoints-grid {
    grid-template-columns: 1fr;
  }

  .simplification-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 60px;
  }

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

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .ready-steps {
    grid-template-columns: 1fr;
  }

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

  .traditional .comparison-cell:first-child {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
  }
}

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

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

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

  .stat-number {
    font-size: 36px;
  }
}
