.titan-vp {
  text-align: center;
  padding: 80px 60px 70px;
}

/* Preheadline */
.titan-vp-preheadline {
  font-family: futura-pt, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #DC6927;
  font-weight: 600;
  margin: 0 0 12px;
}

/* Headline */
.titan-vp-headline {
  font-family: futura-pt, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #0B1D36;
  line-height: 1.1;
  margin: 0;
}

/* Accent line */
.titan-vp-accent {
  width: 50px;
  height: 3px;
  background-color: #007AB7;
  margin: 20px auto 16px;
}

/* Intro text */
.titan-vp-intro {
  font-family: futura-pt, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  color: #54595F;
  font-weight: 400;
  margin: 0 0 44px;
}

/* Pillars row */
.titan-vp-pillars {
  display: flex;
  gap: 2px;
  margin: 0 auto 60px;
  max-width: 960px;
}

.titan-vp-pillar {
  flex: 1;
  background: #fff;
  padding: 32px 16px 28px;
  text-align: center;
  border-top: 3px solid #007AB7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.titan-vp-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.titan-vp-pillar-num {
  display: block;
  font-family: futura-pt, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #007AB7;
  margin-bottom: 10px;
}

.titan-vp-pillar-text {
  display: block;
  font-family: futura-pt, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0B1D36;
  line-height: 1.4;
}

/* Core Values headline */
.titan-vp-values-headline {
  font-family: futura-pt, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #0B1D36;
  font-weight: 600;
  margin: 0 0 32px;
}

/* Values grid */
.titan-vp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.titan-vp-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 28px 18px 24px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.titan-vp-value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.titan-vp-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background-color: #007AB7;
  overflow: hidden;
  flex-shrink: 0;
}

.titan-vp-value-icon i,
.titan-vp-value-icon svg {
  color: #fff;
  fill: #fff;
  font-size: inherit;
  width: 1em;
  height: 1em;
  max-width: 100%;
  max-height: 100%;
}

.titan-vp-value-text {
  font-family: futura-pt, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0B1D36;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
  .titan-vp-pillars {
    flex-wrap: wrap;
    gap: 8px;
  }

  .titan-vp-pillar {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 160px;
  }
}

@media (max-width: 767px) {
  .titan-vp {
    padding: 50px 20px 40px;
  }

  .titan-vp-headline {
    font-size: 32px;
  }

  .titan-vp-pillars {
    flex-direction: column;
    gap: 8px;
  }

  .titan-vp-pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 20px;
  }

  .titan-vp-pillar-num {
    margin-bottom: 0;
    font-size: 22px;
  }

  .titan-vp-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .titan-vp-values-grid {
    grid-template-columns: 1fr;
  }
}
