/* ========================================
   Holding & Soparfi - Page-specific styles
   ======================================== */

/* --- Page Hero --- */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--navy);
  overflow: hidden;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  transition: color var(--transition);
}

.breadcrumb:hover {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-content {
  max-width: 640px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
}

/* Geometric decoration */
.geo-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 1;
}

.geo-tri {
  position: absolute;
  width: 0;
  height: 0;
}

.geo-tri-1 {
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(255, 255, 255, 0.12);
  top: 0;
  right: 0;
}

.geo-tri-2 {
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid rgba(255, 255, 255, 0.05);
  top: 60px;
  right: 120px;
}

.geo-tri-3 {
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 87px solid var(--navy-light);
  top: 100px;
  right: 20px;
}

.geo-tri-4 {
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(255, 255, 255, 0.08);
  top: 30px;
  right: 200px;
}

.geo-tri-5 {
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 122px solid rgba(255, 255, 255, 0.03);
  top: 140px;
  right: 80px;
}

.geo-tri-6 {
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 61px solid rgba(255, 255, 255, 0.06);
  top: 200px;
  right: 200px;
}

/* --- Structures section --- */
.structures-section {
  background: var(--white);
}

/* Inline grid 2x2 */
.inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
  max-width: 900px;
  margin: 0 auto;
}

.inline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.inline-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gray-100);
  flex-shrink: 0;
}

.inline-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gray-600);
}

.inline-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.inline-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .inline-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* --- Commitments --- */
.commitments-section {
  background: var(--navy);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.commitment-left h2 {
  color: var(--white);
}

.commitment-left .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.commitment-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.commitment-item svg {
  flex-shrink: 0;
}

.commitment-item span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Process Timeline --- */
.process-section {
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  font-weight: 700;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0 auto;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  padding: 64px 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.cta-box h2 {
  margin-bottom: 12px;
}

.cta-box p {
  margin: 0 auto 32px;
  color: var(--text-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .geo-deco {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}
