/* ==========================================================================
   Philosophy Section from styles.css
   ========================================================================== */

/* Philosophy Section */
.philosophy {
  padding: 9em 0;
  background: #ffffff;
}

.philosophy-content {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 80px 50px;
  width: 1300px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.section-label {
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.15em;
  line-height: 26px;
  text-transform: uppercase;
  display: block;
}

.philosophy-title {
  font-size: 2.7rem;
  font-weight: 100;
  margin: 0 0 1.5rem;
  color: #ffffff;
  letter-spacing: -0.8px;
  position: relative;
  display: inline-block;
}

.philosophy-text {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 518px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-hierarchy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1rem 0 1rem;
  font-size: 2.9rem;
  font-weight: 400;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #0500EF 0%, #2FFFFF 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hierarchy-arrow {
  font-size: 2.1rem;
  font-weight: 100;
  display: inline-block;
  margin: 0 0.5rem;
}

.hierarchy-item {
  padding: 0;
  border-radius: 0;
  font-weight: 100;
  letter-spacing: 0.5px;
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, #0500EF 0%, #2FFFFF 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philosophy-subtitle {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.7rem;
  line-height: 1.6;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}



.talk-button {
  background: transparent;
  color: #ffffff;
  border: 2px solid transparent;
  background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
              linear-gradient(90deg, #0500EF 0%, #2FFFFF 50%, #00d4ff 100%) border-box;
  padding: 19px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.talk-button::before{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #0500EF 0%, #2FFFFF 50%, #00d4ff 100%);
    z-index: -2;
    border-radius: 32px;
}

.talk-button::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a1a;
    z-index: -1;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.talk-button-text{
  font-size: 25px;
  padding:9px 23px;
  font-weight: 100;
  letter-spacing: 0.3px;
}

.talk-button:hover {
  background: #ffffff;
  color: #000;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}