/* Pointworks Value Section - Professional Design */
.pointworks-value-section {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  background: #ffffff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.pointworks-value-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(48, 149, 180, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(35, 27, 63, 0.02) 0%, transparent 50%);
  z-index: 0;
}

.pointworks-value-section > .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.pointworks-value-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.pointworks-value-section .section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #201C3E;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.pointworks-value-section .section-header h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3095B4 0%, #231b3f 100%);
  border-radius: 2px;
}

.pointworks-value-section .section-subtitle {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin-top: 30px;
  font-weight: 400;
}

/* Value Grid */
.pointworks-value-section .value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.pointworks-value-section .value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow:
    0px 4px 20px rgba(0, 0, 0, 0.04),
    0px 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(48, 149, 180, 0.1);
}

.pointworks-value-section .value-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0px 20px 40px rgba(48, 149, 180, 0.12),
    0px 8px 16px rgba(35, 27, 63, 0.08),
    0px 2px 8px rgba(0, 0, 0, 0.04);
  border-color: rgba(48, 149, 180, 0.3);
}

.pointworks-value-section .value-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 12px rgba(48, 149, 180, 0.1);
  padding: 12px;
}

.pointworks-value-section .value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pointworks-value-section .value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #201C3E;
  margin-bottom: 16px;
  line-height: 1.4;
}

.pointworks-value-section .value-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* CTA Wrapper */
.pointworks-value-section .cta-wrapper {
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, #3095B4 0%, #2a8199 50%, #231b3f 100%);
  border-radius: 20px;
  box-shadow:
    0px 20px 40px rgba(48, 149, 180, 0.2),
    0px 8px 16px rgba(35, 27, 63, 0.15);
  position: relative;
  overflow: hidden;
}

.pointworks-value-section .cta-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(120deg, transparent, transparent 40px, rgba(255, 255, 255, 0.03) 40px, rgba(255, 255, 255, 0.03) 80px);
  z-index: 0;
}

.pointworks-value-section .cta-wrapper > * {
  position: relative;
  z-index: 1;
}

.pointworks-value-section .cta-text {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.5;
}

.pointworks-value-section .cta-wrapper .btn {
  display: inline-block;
  margin: 0;
}

.pointworks-value-section .cta-wrapper .btn a {
  display: inline-block;
  padding: 16px 40px;
  background: #ffffff;
  color: #3095B4;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.pointworks-value-section .cta-wrapper .btn a:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  color: #231b3f;
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .pointworks-value-section {
    padding: 60px 0 80px;
  }

  .pointworks-value-section .section-header h2 {
    font-size: 36px;
  }

  .pointworks-value-section .section-subtitle {
    font-size: 18px;
  }

  .pointworks-value-section .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .pointworks-value-section .value-card {
    padding: 35px 25px;
  }

  .pointworks-value-section .cta-text {
    font-size: 22px;
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .pointworks-value-section {
    padding: 50px 0 60px;
  }

  .pointworks-value-section .section-header {
    margin-bottom: 40px;
  }

  .pointworks-value-section .section-header h2 {
    font-size: 30px;
  }

  .pointworks-value-section .section-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }

  .pointworks-value-section .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pointworks-value-section .value-card {
    padding: 30px 25px;
  }

  .pointworks-value-section .value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .pointworks-value-section .value-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .pointworks-value-section .value-card p {
    font-size: 15px;
  }

  .pointworks-value-section .cta-wrapper {
    padding: 40px 25px;
    border-radius: 16px;
  }

  .pointworks-value-section .cta-text {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .pointworks-value-section .cta-wrapper .btn a {
    padding: 14px 32px;
    font-size: 16px;
  }
}
