/* INDEX SPECIFIC STYLES */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  flex: 1;
  z-index: 2;
}

.hero__title {
  font-size: 5rem;
  line-height: 0.9;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 3rem;
  border-left: 2px solid var(--primary-color);
  padding-left: 1.5rem;
}

.hero__image-wrap {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero__image {
  width: 100%;
  transform: rotate(-10deg) scale(1.1);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
  transition: var(--transition);
}

.hero__image:hover {
  transform: rotate(0) scale(1.2);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary-color);
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* DETAIL SECTION */
.detail-section {
  padding: 10rem 0;
}

.detail-block {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 10rem;
}

.detail-block--reverse {
  flex-direction: row-reverse;
}

.detail-content {
  flex: 1;
}

.detail-image-wrap {
  flex: 1;
  background: var(--secondary-color);
  padding: 2rem;
  border: 1px solid var(--glass-border);
}

.detail-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.detail-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* SPECS TABLE */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--glass-border);
}

.specs-table th {
  text-align: left;
  padding: 1.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.specs-table td {
  padding: 1.5rem;
  text-align: right;
  color: var(--text-color);
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 150px;
  }
  .hero__title {
    font-size: 3.5rem;
  }
  .hero__subtitle {
    margin: 0 auto 3rem;
  }
  .detail-block {
    flex-direction: column;
    text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
