/* style/x-s.css */
.page-x-s {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a1a;
  line-height: 1.6;
}

.page-x-s .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-x-s .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-x-s .btn-primary {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-x-s .btn-primary:hover {
  background-color: #e6c200;
}

.page-x-s .btn-secondary {
  background-color: #8B0000;
  color: #ffffff;
  margin-left: 15px;
}

.page-x-s .btn-secondary:hover {
  background-color: #a00000;
}

.page-x-s .btn-card {
  margin-top: 15px;
  background-color: #FFD700;
  color: #1a1a1a;
  padding: 10px 20px;
}

.page-x-s .btn-card:hover {
  background-color: #e6c200;
}

.page-x-s .btn-step {
  margin-top: 15px;
  background-color: #8B0000;
  color: #ffffff;
  padding: 10px 20px;
}

.page-x-s .btn-step:hover {
  background-color: #a00000;
}

.page-x-s .btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-x-s .hero-section {
  background: linear-gradient(135deg, #2a2a2a, #0d0d0d);
  padding: 100px 0;
  text-align: center;
  border-bottom: 3px solid #FFD700;
}

.page-x-s .hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-x-s .hero-description {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s .hero-actions a {
  margin: 0 10px;
}

.page-x-s .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-x-s .section-subtitle {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s .section-intro {
  padding: 80px 0;
  background-color: #1f1f1f;
}

.page-x-s .intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-x-s .intro-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 3px solid #8B0000;
}

.page-x-s .intro-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-x-s .intro-item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-x-s .section-types {
  padding: 80px 0;
}

.page-x-s .types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-x-s .type-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 3px solid #FFD700;
}

.page-x-s .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-x-s .card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-x-s .type-card p {
  color: #cccccc;
  padding: 0 20px;
}

.page-x-s .section-guide {
  padding: 80px 0;
  background-color: #1f1f1f;
}

.page-x-s .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.page-x-s .step-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  border-left: 3px solid #8B0000;
}

.page-x-s .step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1a1a1a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 3px solid #1a1a1a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-x-s .step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-x-s .section-benefits {
  padding: 80px 0;
}

.page-x-s .benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-x-s .benefit-list li {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-right: 3px solid #FFD700;
}

.page-x-s .benefit-item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-x-s .section-promo {
  padding: 80px 0;
  background-color: #1f1f1f;
  text-align: center;
}

.page-x-s .promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-x-s .promo-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #8B0000;
}

.page-x-s .promo-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-x-s .promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-x-s .promo-cta {
  margin-top: 40px;
}

.page-x-s .section-app {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-x-s .app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.page-x-s .app-text {
  flex: 1;
  min-width: 300px;
}

.page-x-s .app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-x-s .app-mockup-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-x-s .app-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-x-s .app-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #cccccc;
}

.page-x-s .feature-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: brightness(1.2) hue-rotate(50deg);
}

.page-x-s .section-faq {
  padding: 80px 0;
  background-color: #1f1f1f;
}

.page-x-s .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-x-s .accordion-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-x-s .accordion-header {
  width: 100%;
  background-color: #8B0000;
  color: #ffffff;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-x-s .accordion-header:hover {
  background-color: #a00000;
}

.page-x-s .accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-x-s .accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-x-s .accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #333;
  color: #cccccc;
}

.page-x-s .accordion-content p {
  padding: 15px 0;
  margin: 0;
}

.page-x-s .section-cta-final {
  background: linear-gradient(135deg, #8B0000, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-x-s .cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-x-s .cta-description {
  font-size: 1.2em;
  color: #eeeeee;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s .section-cta-final .btn-primary {
  background-color: #1a1a1a;
  color: #FFD700;
}

.page-x-s .section-cta-final .btn-primary:hover {
  background-color: #000000;
}

@media (max-width: 992px) {
  .page-x-s .hero-title {
    font-size: 2.5em;
  }
  .page-x-s .section-title {
    font-size: 2em;
  }
  .page-x-s .app-content {
    flex-direction: column;
  }
  .page-x-s .app-image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-x-s .hero-title {
    font-size: 2em;
  }
  .page-x-s .hero-description {
    font-size: 1em;
  }
  .page-x-s .hero-actions a {
    display: block;
    margin: 10px auto;
  }
  .page-x-s .intro-grid, .page-x-s .types-grid, .page-x-s .guide-steps, .page-x-s .benefit-list, .page-x-s .promo-cards {
    grid-template-columns: 1fr;
  }
  .page-x-s .cta-title {
    font-size: 2em;
  }
  .page-x-s .section-title {
    padding-top: 40px;
  }
  .page-x-s .section-subtitle {
    margin-bottom: 30px;
  }
}