/* =============================================
   SABINE TECHNOLOGY — product.css
   Page-specific styles for the Product page
   ============================================= */

/* =============================================
   SECTION 1 — Dark purple hero block
   ============================================= */
.prod-hero {
  background: #2d1b5e;
  padding: 70px 0 80px;
}

.prod-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* ---- Left column ---- */
.prod-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 180px; /* pushes button far below heading to match screenshot */
}

.prod-hero__heading {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.prod-hero__btn {
  display: inline-block;
  background: #7c3aed;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.prod-hero__btn:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

/* ---- Right column ---- */
.prod-hero__right p {
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  text-align: justify;
  margin: 0;
}

/* =============================================
   SECTION 2 — Our Principles (white bg)
   ============================================= */
.prod-principles {
  background: #ffffff;
  padding: 70px 80px 90px;
  text-align: center;
}

.prod-principles__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 48px;
}

/* ---- Three-card grid ---- */
.prod-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.principle-card {
  background: #e8e0f7;
  border-radius: 6px;
  padding: 48px 36px 56px;
  text-align: center;
}

.principle-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.principle-card p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #2e2e3a;
  line-height: 1.7;
  text-align: center;
}

/* =============================================
   SECTION 3 — Standard Product Portfolio (lavender bg)
   ============================================= */
.prod-portfolio {
  background: #ede8f5;
  padding: 70px 80px 90px;
}

.prod-portfolio__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 48px;
}

/* ---- Three-card grid ---- */
.prod-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 36px 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.portfolio-card__label {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7c3aed;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-card__name {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 24px;
}

.portfolio-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio-card__specs li {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #2e2e3a;
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}

.portfolio-card__specs li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  line-height: 1.45;
  color: #7c3aed;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .prod-hero__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 36px;
  }

  .prod-hero__left {
    gap: 32px;
  }

  .prod-principles {
    padding: 56px 24px 64px;
  }

  .prod-principles__grid {
    grid-template-columns: 1fr;
  }

  .prod-portfolio {
    padding: 56px 24px 64px;
  }

  .prod-portfolio__grid {
    grid-template-columns: 1fr;
  }
}