@charset "UTF-8";
.hero-bg-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #b0bec5;
  margin-bottom: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}
.section:nth-child(odd) {
  background: #1a1a1a;
}
.section:nth-child(even) {
  background: #0a0a0a;
}
@media (max-width: 576px) {
  .section {
    padding: 80px 0;
  }
}

.section-content {
  font-size: 1.1rem;
  color: #b0bec5;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.distinct-section {
  background: linear-gradient(135deg, #2a2a2a 0%, rgba(68, 97, 242, 0.05) 100%);
  position: relative;
}

.distinct-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .distinct-visual {
    height: 400px;
    margin-bottom: 2rem;
  }
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.grid-item {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.grid-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(68, 97, 242, 0.1);
  border-color: #4461f2;
  box-shadow: 0 20px 40px rgba(68, 97, 242, 0.3);
}
.grid-item .icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}
.grid-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.central-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.central-image .distinct-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  filter: blur(1px) brightness(0.7);
}
@media (max-width: 992px) {
  .central-image .distinct-image {
    width: 250px;
    height: 250px;
  }
}

.distinct-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.distinct-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.distinct-card:hover {
  transform: translateY(-10px);
  border-color: #4461f2;
  box-shadow: 0 20px 60px rgba(68, 97, 242, 0.2);
}
.distinct-card:hover::before {
  opacity: 0.05;
}
@media (max-width: 992px) {
  .distinct-card {
    padding: 2rem;
  }
}

.distinct-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: white;
}

.clarity-section {
  background: #0a0a0a;
  position: relative;
}

.clarity-shape {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: #6366f1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.expectations-section {
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(99, 102, 241, 0.03) 100%);
}

.expectations-list {
  list-style: none;
  padding: 0;
}
.expectations-list li {
  padding: 1rem 0;
  color: #b0bec5;
  position: relative;
  padding-left: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.expectations-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expectations-list li::after {
  content: "→";
  position: absolute;
  left: 7px;
  top: 1.3rem;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.values-section {
  background: #2a2a2a;
  position: relative;
}

.values-shape {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #4461f2, #6366f1);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
}

.values-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .values-visual {
    height: 400px;
    margin-top: 2rem;
  }
}

.values-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 992px) {
  .values-cards {
    left: 10%;
  }
}

.hero-section {
  position: relative;
  background-color: #1a1a1a;
  overflow: hidden;
}
.hero-section .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
}
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-section .hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-section .hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-section .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
}
.hero-section .hero-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-section .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}
.hero-section .hero-image-container {
  position: relative;
}
.hero-section .hero-image-container .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.hero-section .hero-image-container .floating-elements .floating-card {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}
.hero-section .hero-image-container .floating-elements .floating-card:nth-child(1) {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}
.hero-section .hero-image-container .floating-elements .floating-card:nth-child(2) {
  top: 50%;
  left: -15%;
  animation-delay: 1s;
}
.hero-section .hero-image-container .floating-elements .floating-card:nth-child(3) {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}
.hero-section .hero-image-container .floating-elements .floating-card i {
  color: #4461f2;
  font-size: 1.25rem;
}
.hero-section .hero-image-container .floating-elements .floating-card span {
  font-weight: 600;
  color: #333333;
}
.hero-section .hero-image-container .hero-image {
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.what-drives-us-page .hero-section {
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.what-drives-us-page .hero-section .hero-bg-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(50px);
}
.what-drives-us-page .hero-section .hero-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .what-drives-us-page .hero-section .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
}
.what-drives-us-page .hero-section .hero-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .what-drives-us-page .hero-section .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

.distinct-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.distinct-card:hover {
  transform: translateY(-10px);
  border-color: #4461f2;
  box-shadow: 0 20px 60px rgba(68, 97, 242, 0.2);
}
@media (max-width: 992px) {
  .distinct-card {
    padding: 2rem;
  }
}

.distinct-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: white;
}

.clarity-section {
  background: #0a0a0a;
  position: relative;
}

.clarity-shape {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: #6366f1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.expectations-section {
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(99, 102, 241, 0.03) 100%);
}

.expectations-list {
  list-style: none;
  padding: 0;
}
.expectations-list li {
  padding: 1rem 0;
  color: #b0bec5;
  position: relative;
  padding-left: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.expectations-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expectations-list li::after {
  content: "→";
  position: absolute;
  left: 7px;
  top: 1.3rem;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.values-section {
  background: #2a2a2a;
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-10px);
  border-color: #4461f2;
}
@media (max-width: 767px) {
  .value-card {
    padding: 1rem;
  }
}

.value-icon {
  font-size: 3rem;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
}
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-section .hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-section .hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-section .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
}
.hero-section .hero-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-section .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}
.hero-section .hero-image-container {
  position: relative;
}
.hero-section .hero-image-container .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.hero-section .hero-image-container .floating-elements .floating-card {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}
.hero-section .hero-image-container .floating-elements .floating-card:nth-child(1) {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}
.hero-section .hero-image-container .floating-elements .floating-card:nth-child(2) {
  top: 50%;
  left: -15%;
  animation-delay: 1s;
}
.hero-section .hero-image-container .floating-elements .floating-card:nth-child(3) {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}
.hero-section .hero-image-container .floating-elements .floating-card i {
  color: #4461f2;
  font-size: 1.25rem;
}
.hero-section .hero-image-container .floating-elements .floating-card span {
  font-weight: 600;
  color: #333333;
}
.hero-section .hero-image-container .hero-image {
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.distinct-section .section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.distinct-section .section-description {
  color: #e0e6ed;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}
.distinct-section .content-subtitle {
  color: #4461f2;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.distinct-section .content-text {
  color: #e0e6ed;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.distinct-section .feature-highlights {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.distinct-section .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(68, 97, 242, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.distinct-section .feature-highlights .highlight-item:hover {
  background: rgba(68, 97, 242, 0.2);
  transform: translateY(-2px);
}
.distinct-section .feature-highlights .highlight-item i {
  color: #4461f2;
  font-size: 1.125rem;
}
.distinct-section .feature-highlights .highlight-item span {
  font-weight: 600;
  color: #333333;
}
.distinct-section .image-stack {
  position: relative;
}
.distinct-section .image-stack .stack-item {
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.distinct-section .image-stack .stack-item.stack-item-1 {
  position: relative;
  z-index: 2;
  margin-right: 2rem;
}
.distinct-section .image-stack .stack-item.stack-item-2 {
  position: absolute;
  top: 2rem;
  right: 0;
  width: 70%;
  z-index: 1;
}
.distinct-section .image-stack .stack-item:hover {
  transform: scale(1.05);
}
.distinct-section .image-stack .stack-item img {
  width: 100%;
  height: auto;
}
.distinct-section .image-stack .overlay-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
}
.distinct-section .image-stack .overlay-badge i {
  color: #ffd700;
  font-size: 1.25rem;
}
.distinct-section .image-stack .overlay-badge span {
  font-weight: 600;
  color: #333333;
}
.distinct-section .experience-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.distinct-section .experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.distinct-section .experience-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #4461f2;
  box-shadow: 0 20px 60px rgba(68, 97, 242, 0.2);
}
.distinct-section .experience-card:hover::before {
  opacity: 0.03;
}
.distinct-section .experience-card:hover .experience-icon {
  transform: scale(1.1) rotate(5deg);
}
.distinct-section .experience-card .experience-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.distinct-section .experience-card .experience-icon i {
  color: white;
  font-size: 2rem;
}
.distinct-section .experience-card h4 {
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.distinct-section .experience-card p {
  color: #e0e6ed;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .distinct-section .experience-card {
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .distinct-section .experience-card {
    padding: 1.5rem 1rem;
  }
}

.clarity-section .clarity-visual {
  position: relative;
}
.clarity-section .clarity-visual .visual-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.clarity-section .clarity-visual .visual-elements .element-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: pulse 3s ease-in-out infinite;
}
.clarity-section .clarity-visual .visual-elements .element-circle.element-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.clarity-section .clarity-visual .visual-elements .element-circle.element-2 {
  top: 60%;
  right: 10%;
  animation-delay: 1s;
}
.clarity-section .clarity-visual .visual-elements .element-circle.element-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}
.clarity-section .clarity-visual .visual-elements .element-circle i {
  color: white;
  font-size: 1.5rem;
}
.clarity-section .clarity-visual .visual-elements .connecting-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  opacity: 0.3;
}
.clarity-section .clarity-visual .clarity-image {
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.clarity-section .clarity-content .content-text {
  background-color: #001a3f;
  padding: 24px;
  border-radius: 12px;
}
.clarity-section .clarity-content .content-header {
  margin-bottom: 2rem;
}
.clarity-section .clarity-content .clarity-points .clarity-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.clarity-section .clarity-content .clarity-points .clarity-point:hover {
  border-color: #4461f2;
  transform: translateX(10px);
  box-shadow: 0 20px 60px rgba(68, 97, 242, 0.2);
}
.clarity-section .clarity-content .clarity-points .clarity-point .point-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clarity-section .clarity-content .clarity-points .clarity-point .point-icon i {
  color: white;
  font-size: 1.25rem;
}
.clarity-section .clarity-content .clarity-points .clarity-point .point-content h4 {
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.clarity-section .clarity-content .clarity-points .clarity-point .point-content p {
  color: #e0e6ed;
  line-height: 1.6;
  margin: 0;
}
.clarity-section .clarity-content .clarity-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .clarity-section .clarity-content .clarity-stats {
    flex-direction: column;
    gap: 1rem;
  }
}
.clarity-section .clarity-content .clarity-stats .stat-box {
  background: linear-gradient(45deg, #4461f2, #6366f1);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  flex: 1;
}
.clarity-section .clarity-content .clarity-stats .stat-box .stat-number {
  display: block;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.clarity-section .clarity-content .clarity-stats .stat-box .stat-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.expectations-section .approach-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .expectations-section .approach-metrics {
    flex-direction: column;
    gap: 1rem;
  }
}
.expectations-section .approach-metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
}
.expectations-section .approach-metrics .metric-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.expectations-section .approach-metrics .metric-item:hover {
  border-color: #4461f2;
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(68, 97, 242, 0.2);
}
.expectations-section .approach-metrics .metric-item:hover::before {
  opacity: 0.03;
}
.expectations-section .approach-metrics .metric-item .metric-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expectations-section .approach-metrics .metric-item .metric-icon i {
  color: white;
  font-size: 1.25rem;
}
.expectations-section .approach-metrics .metric-item .metric-content .metric-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}
.expectations-section .approach-metrics .metric-item .metric-content .metric-label {
  color: #e0e6ed;
  font-size: 0.875rem;
}
.expectations-section .benefits-timeline {
  position: relative;
}
.expectations-section .benefits-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #4461f2, #6366f1) !important;
}
.expectations-section .benefits-timeline .timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 4rem;
}
.expectations-section .benefits-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: white;
  border: 3px solid #4461f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.expectations-section .benefits-timeline .timeline-item .timeline-marker i {
  color: #4461f2;
  font-size: 1.125rem;
}
.expectations-section .benefits-timeline .timeline-item .timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.expectations-section .benefits-timeline .timeline-item .timeline-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.expectations-section .benefits-timeline .timeline-item .timeline-content:hover {
  border-color: #4461f2;
  transform: translateX(10px);
  box-shadow: 0 20px 60px rgba(68, 97, 242, 0.2);
}
.expectations-section .benefits-timeline .timeline-item .timeline-content:hover::before {
  opacity: 0.03;
}
.expectations-section .benefits-timeline .timeline-item .timeline-content h4 {
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.expectations-section .benefits-timeline .timeline-item .timeline-content p {
  color: #e0e6ed;
  line-height: 1.6;
  margin: 0;
}
.expectations-section .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.expectations-section .showcase-grid .showcase-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.expectations-section .showcase-grid .showcase-item:hover {
  transform: scale(1.05);
}
.expectations-section .showcase-grid .showcase-item:hover .showcase-overlay {
  opacity: 1;
}
.expectations-section .showcase-grid .showcase-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.expectations-section .showcase-grid .showcase-item .showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(68, 97, 242, 0.9), rgba(99, 102, 241, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.expectations-section .showcase-grid .showcase-item .showcase-overlay i {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.expectations-section .showcase-grid .showcase-item .showcase-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.values-section {
  position: relative;
}
.values-section .values-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(68, 97, 242, 0.05), rgba(99, 102, 241, 0.05));
  z-index: 0;
}
.values-section .values-intro {
  position: relative;
  z-index: 1;
}
.values-section .values-promise {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.values-section .values-promise .promise-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.values-section .values-promise .promise-icon i {
  color: white;
  font-size: 1.25rem;
}
.values-section .values-promise .promise-content h4 {
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.values-section .values-promise .promise-content p {
  color: #e0e6ed;
  margin: 0;
}
.values-section .values-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.values-section .values-visual .central-hub {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.values-section .values-visual .central-hub .hub-icon i {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.values-section .values-visual .central-hub span {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}
.values-section .values-visual .value-orbit {
  position: absolute;
  animation: orbit 20s linear infinite;
}
.values-section .values-visual .value-orbit.value-orbit-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.values-section .values-visual .value-orbit.value-orbit-2 {
  top: 20%;
  right: 20%;
  animation-delay: 6.67s;
}
.values-section .values-visual .value-orbit.value-orbit-3 {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 13.33s;
}
.values-section .values-visual .value-orbit .orbit-value {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.values-section .values-visual .value-orbit .orbit-value i {
  color: #4461f2;
  font-size: 1.125rem;
}
.values-section .values-visual .value-orbit .orbit-value span {
  font-weight: 600;
  color: #333333;
}
.values-section .values-visual .connecting-dots .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #4461f2;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.values-section .values-visual .connecting-dots .dot.dot-1 {
  top: 30%;
  left: 35%;
  animation-delay: 0s;
}
.values-section .values-visual .connecting-dots .dot.dot-2 {
  top: 30%;
  right: 35%;
  animation-delay: 0.5s;
}
.values-section .values-visual .connecting-dots .dot.dot-3 {
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}
.values-section .values-enhanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.values-section .values-enhanced-grid .value-card-enhanced {
  height: 300px;
  perspective: 1000px;
}
.values-section .values-enhanced-grid .value-card-enhanced:hover .card-front {
  transform: rotateY(-180deg);
}
.values-section .values-enhanced-grid .value-card-enhanced:hover .card-back {
  transform: rotateY(0);
}
.values-section .values-enhanced-grid .value-card-enhanced .card-front,
.values-section .values-enhanced-grid .value-card-enhanced .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.values-section .values-enhanced-grid .value-card-enhanced .card-front {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-front .value-icon-enhanced {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-front .value-icon-enhanced i {
  color: white;
  font-size: 2rem;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-front .value-title-enhanced {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-front .value-preview {
  color: #e0e6ed;
  font-size: 1rem;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-back {
  background: linear-gradient(45deg, #4461f2, #6366f1);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-back h4 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-back .value-details {
  list-style: none;
  padding: 0;
  margin: 0;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-back .value-details li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.values-section .values-enhanced-grid .value-card-enhanced .card-back .value-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: white;
  font-weight: bold;
}
.values-section .team-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.values-section .team-showcase .team-image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.values-section .team-showcase .showcase-stats {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.values-section .team-showcase .showcase-stats .stat-bubble {
  background: white;
  padding: 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.values-section .team-showcase .showcase-stats .stat-bubble .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4461f2;
  line-height: 1;
}
.values-section .team-showcase .showcase-stats .stat-bubble .stat-label {
  color: #333333;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.25rem;
}

.contact-section {
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, rgba(68, 97, 242, 0.05) 100%);
}
.contact-section .contact-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(68,97,242,0.1)"/><circle cx="90" cy="20" r="1.5" fill="rgba(99,102,241,0.1)"/><circle cx="30" cy="90" r="1" fill="rgba(139,92,246,0.1)"/></svg>');
  opacity: 0.5;
}
.contact-section .contact-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contact-section .contact-features .feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-features .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-section .contact-features .feature-item .feature-icon i {
  color: white;
  font-size: 1.25rem;
}
.contact-section .contact-features .feature-item .feature-content h4 {
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-section .contact-features .feature-item .feature-content p {
  color: #e0e6ed;
  line-height: 1.6;
  margin: 0;
}
.contact-section .contact-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.contact-section .contact-stats .stat-item {
  text-align: center;
}
.contact-section .contact-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4461f2;
  line-height: 1;
}
.contact-section .contact-stats .stat-item .stat-label {
  color: #e0e6ed;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.contact-section .contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}
.contact-section .contact-form-container .contact-visual {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-form-container .contact-visual .visual-circle {
  position: absolute;
  border-radius: 50%;
}
.contact-section .contact-form-container .contact-visual .visual-circle.circle-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(68, 97, 242, 0.1), rgba(99, 102, 241, 0.1));
  animation: pulse 3s ease-in-out infinite;
}
.contact-section .contact-form-container .contact-visual .visual-circle.circle-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, rgba(68, 97, 242, 0.2), rgba(99, 102, 241, 0.2));
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1s;
}
.contact-section .contact-form-container .contact-visual .visual-circle.circle-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(68, 97, 242, 0.3), rgba(99, 102, 241, 0.3));
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 2s;
}
.contact-section .contact-form-container .contact-visual .contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.contact-section .contact-form-container .contact-visual .contact-icon i {
  color: white;
  font-size: 2rem;
}
.contact-section .contact-form-container .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-section .contact-form-container .action-buttons .btn-primary-contact,
.contact-section .contact-form-container .action-buttons .btn-secondary-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contact-section .contact-form-container .action-buttons .btn-primary-contact {
  background: linear-gradient(45deg, #4461f2, #6366f1);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.3);
}
.contact-section .contact-form-container .action-buttons .btn-primary-contact:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(68, 97, 242, 0.4);
  color: white;
}
.contact-section .contact-form-container .action-buttons .btn-primary-contact i {
  font-size: 1.2rem;
}
.contact-section .contact-form-container .action-buttons .btn-secondary-contact {
  background: transparent;
  color: #4461f2;
  border: 2px solid #4461f2;
}
.contact-section .contact-form-container .action-buttons .btn-secondary-contact:hover {
  background: #4461f2;
  color: white;
  transform: translateY(-3px);
}
.contact-section .contact-form-container .contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #e0e6ed;
}
.contact-section .contact-form-container .contact-info .info-item i {
  color: #4461f2;
  width: 20px;
}
.contact-section .trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-section .trust-indicators .trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contact-section .trust-indicators .trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.contact-section .trust-indicators .trust-item i {
  color: #4461f2;
  font-size: 1.125rem;
}
.contact-section .trust-indicators .trust-item span {
  font-weight: 600;
  color: #333333;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}
@media (max-width: 768px) {
  .hero-stats {
    gap: 1rem;
  }
  .feature-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  .image-stack .stack-item.stack-item-2 {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  .benefits-timeline::before {
    left: 15px;
  }
  .benefits-timeline .timeline-item {
    padding-left: 3rem;
  }
  .benefits-timeline .timeline-item .timeline-marker {
    width: 30px;
    height: 30px;
    left: 0;
  }
  .values-visual {
    height: 300px;
  }
  .values-visual .value-orbit {
    position: static;
    animation: none;
    margin: 1rem;
  }
  .values-enhanced-grid {
    grid-template-columns: 1fr;
  }
  .action-buttons .btn-primary-contact,
  .action-buttons .btn-secondary-contact {
    padding: 0.875rem 1.5rem;
  }
  .trust-indicators {
    gap: 1rem;
  }
  .trust-indicators .trust-item {
    padding: 0.75rem 1rem;
    flex: 1;
    justify-content: center;
    min-width: 0;
  }
  .trust-indicators .trust-item span {
    font-size: 0.875rem;
  }
}
.benefits-list .benefit-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.benefits-list .benefit-item:hover {
  transform: translateX(10px);
  background: rgba(68, 97, 242, 0.1);
  border-color: #4461f2;
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.2);
}
.benefits-list .benefit-item i {
  background: linear-gradient(45deg, #4461f2, #6366f1);
  color: white;
  padding: 0.8rem;
  border-radius: 12px;
  margin-right: 1.5rem;
  font-size: 1.2rem;
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-list .benefit-item span {
  color: #b0bec5;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

.benefits-timeline {
  position: relative;
}
.benefits-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #4461f2, #6366f1);
}

.timeline-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2.5rem;
}
.timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #4461f2, #6366f1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(68, 97, 242, 0.3);
  border: 3px solid #0a0a0a;
}
.timeline-item .timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}
.timeline-item .timeline-content:hover {
  transform: translateY(-5px);
  background: rgba(68, 97, 242, 0.1);
  border-color: #4461f2;
  box-shadow: 0 15px 30px rgba(68, 97, 242, 0.2);
}
.timeline-item .timeline-content p {
  color: #b0bec5;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.contact-section {
  background: linear-gradient(135deg, #2a2a2a 0%, rgba(68, 97, 242, 0.05) 100%);
}
.contact-section .btn-primary-contact {
  background: linear-gradient(45deg, #4461f2, #6366f1);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.3);
}
.contact-section .btn-primary-contact:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(68, 97, 242, 0.4);
  color: white;
}
.contact-section .btn-primary-contact i {
  font-size: 1.2rem;
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0bec5;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.content-text:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-title.gradient-text {
  background: linear-gradient(45deg, #4461f2, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.2rem;
  color: #b0bec5;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 992px) {
  .distinct-visual,
  .values-visual {
    height: 350px;
  }
  .values-cards {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .values-bg-image {
    position: static;
    transform: none;
    text-align: center;
  }
  .values-bg-image .values-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }
  .timeline-item {
    padding-left: 3rem;
  }
  .timeline-item .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.grid-item,
.value-card {
  animation: float 6s ease-in-out infinite;
}
.grid-item:nth-child(2),
.value-card:nth-child(2) {
  animation-delay: -2s;
}
.grid-item:nth-child(3),
.value-card:nth-child(3) {
  animation-delay: -4s;
}
.grid-item:nth-child(4),
.value-card:nth-child(4) {
  animation-delay: -1s;
}/*# sourceMappingURL=what-drives-us.css.map */