/* ============================================================
   EMPOWERTECH PAGE — empowertech.css
   ============================================================ */

/* ===== HERO ===== */
.et-hero {
  position: relative;
  background-color: #0a0a0a;
  padding: 80px 60px 120px;
  overflow: hidden;
  animation: fadeIn 0.5s ease both;
}

.et-watermark {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.et-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.et-hero-logo {
  flex: 0 0 280px;
}

.et-hero-logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  display: block;
}

.et-hero-content {
  flex: 1;
  text-align: right;
}

.et-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.et-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* ===== WAVE ===== */
.et-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.et-wave--top {
  top: -1px;
  bottom: auto;
}

.et-wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

/* ===== BUTTONS ===== */
.et-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--orange);
  border: none;
  border-radius: 8px;
  padding: 16px 48px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.et-btn:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
}

.et-btn--center {
  display: block;
  width: fit-content;
  margin: 0 auto;
  animation: none;
}

/* ===== ABOUT ===== */
.et-about {
  background-color: var(--bg);
  padding: 80px 60px 100px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.et-about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}

.et-about-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  padding-top: 4px;
}

.et-about-text p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.et-about-text p:last-child { margin-bottom: 0; }

/* ===== SECTIONS (white) ===== */
.et-section {
  padding: 70px 60px 80px;
}

.et-white {
  background-color: #ffffff;
}

.et-section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.et-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
}

/* ===== CARDS GRID ===== */
.et-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.et-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.et-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background-color: #eee;
}

.et-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.et-card-img--contain {
  object-fit: contain;
  padding: 20px;
  background: #fff;
}

.et-card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
}

.et-card-text {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: #3a3a3a;
  line-height: 1.75;
}

/* ===== ORANGE WAVE DIVIDER ===== */
.et-wave-divider {
  background-color: #ffffff;
  line-height: 0;
  padding: 0 0 10px;
}

.et-wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ===== HIVETEC CTA ===== */
.et-cta {
  position: relative;
  background-color: #0a0a0a;
  padding: 110px 60px 80px;
  overflow: hidden;
}

.et-cta .et-watermark {
  top: 50%;
  right: -20px;
}

.et-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.et-cta-logo {
  width: 200px;
}

.et-cta-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .et-hero { padding: 60px 28px 110px; }
  .et-hero-inner { flex-direction: column; gap: 32px; text-align: left; }
  .et-hero-content { text-align: left; }
  .et-hero-logo { flex: unset; width: 200px; }

  .et-about { padding: 60px 28px 90px; clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
  .et-about-inner { grid-template-columns: 1fr; gap: 24px; }

  .et-section { padding: 50px 28px 60px; }
  .et-cards { grid-template-columns: 1fr; gap: 40px; }

  .et-cta { padding: 100px 28px 70px; }
}

@media (max-width: 600px) {
  .et-watermark { font-size: 4rem; }
}
