/* style/index-platform-advantages-deep-dive.css */
.page-index-platform-advantages-deep-dive {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f5f5f5;
  line-height: 1.6;
}

.page-index-platform-advantages-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-platform-advantages-deep-dive__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-platform-advantages-deep-dive__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,gold,red,pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-platform-advantages-deep-dive__hero-section .page-index-platform-advantages-deep-dive__container {
  position: relative;
  z-index: 1;
}

.page-index-platform-advantages-deep-dive__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}

.page-index-platform-advantages-deep-dive__hero-title .highlight {
  color: #FFD700;
}

.page-index-platform-advantages-deep-dive__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-index-platform-advantages-deep-dive__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-platform-advantages-deep-dive__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-platform-advantages-deep-dive__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-platform-advantages-deep-dive__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-platform-advantages-deep-dive__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-index-platform-advantages-deep-dive__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
}

.page-index-platform-advantages-deep-dive__btn--accent {
  background-color: #8B0000;
  color: #FFD700;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-index-platform-advantages-deep-dive__btn--accent:hover {
  background-color: #6a0000;
  transform: translateY(-3px);
}

.page-index-platform-advantages-deep-dive__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-index-platform-advantages-deep-dive__section {
  padding: 60px 0;
}

.page-index-platform-advantages-deep-dive__section--dark-bg {
  background-color: #2c2c2c;
  color: #f0f0f0;
}

.page-index-platform-advantages-deep-dive__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #8B0000;
  font-weight: bold;
}

.page-index-platform-advantages-deep-dive__section--dark-bg .page-index-platform-advantages-deep-dive__section-title {
  color: #FFD700;
}

.page-index-platform-advantages-deep-dive__subsection-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #8B0000;
  font-weight: bold;
}

.page-index-platform-advantages-deep-dive__section--dark-bg .page-index-platform-advantages-deep-dive__subsection-title {
  color: #FFD700;
}

.page-index-platform-advantages-deep-dive__content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-index-platform-advantages-deep-dive__content-row--reverse {
  flex-direction: row-reverse;
}

.page-index-platform-advantages-deep-dive__text-content {
  flex: 1;
}

.page-index-platform-advantages-deep-dive__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-platform-advantages-deep-dive__text-content .highlight {
  color: #8B0000;
  font-weight: bold;
}

.page-index-platform-advantages-deep-dive__section--dark-bg .page-index-platform-advantages-deep-dive__text-content .highlight {
  color: #FFD700;
}

.page-index-platform-advantages-deep-dive__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-platform-advantages-deep-dive__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-platform-advantages-deep-dive__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-platform-advantages-deep-dive__step-list li {
  background-color: #3a3a3a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-index-platform-advantages-deep-dive__step-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-platform-advantages-deep-dive__step-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-platform-advantages-deep-dive__step-list li p {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-index-platform-advantages-deep-dive__section--cta-final {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #8B0000, #FFD700);
  color: #FFFFFF;
}

.page-index-platform-advantages-deep-dive__section--final-cta .page-index-platform-advantages-deep-dive__section-title {
  color: #FFFFFF;
  margin-bottom: 30px;
}

.page-index-platform-advantages-deep-dive__section--final-cta .page-index-platform-advantages-deep-dive__description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-platform-advantages-deep-dive__hero-title {
    font-size: 2.5em;
  }
  .page-index-platform-advantages-deep-dive__section-title {
    font-size: 2em;
  }
  .page-index-platform-advantages-deep-dive__subsection-title {
    font-size: 1.6em;
  }
  .page-index-platform-advantages-deep-dive__content-row {
    flex-direction: column;
  }
  .page-index-platform-advantages-deep-dive__content-row--reverse {
    flex-direction: column;
  }
  .page-index-platform-advantages-deep-dive__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-platform-advantages-deep-dive__hero-title {
    font-size: 2em;
  }
  .page-index-platform-advantages-deep-dive__hero-description {
    font-size: 1em;
  }
  .page-index-platform-advantages-deep-dive__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-platform-advantages-deep-dive__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
  }
  .page-index-platform-advantages-deep-dive__section {
    padding: 40px 0;
  }
  .page-index-platform-advantages-deep-dive__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-platform-advantages-deep-dive__subsection-title {
    font-size: 1.4em;
  }
  .page-index-platform-advantages-deep-dive__step-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-platform-advantages-deep-dive__hero-title {
    font-size: 1.8em;
  }
  .page-index-platform-advantages-deep-dive__hero-description {
    font-size: 0.9em;
  }
  .page-index-platform-advantages-deep-dive__section-title {
    font-size: 1.5em;
  }
  .page-index-platform-advantages-deep-dive__subsection-title {
    font-size: 1.2em;
  }
  .page-index-platform-advantages-deep-dive__step-list li {
    padding: 20px;
  }
  .page-index-platform-advantages-deep-dive__step-title {
    font-size: 1.3em;
  }
}