/* ============================================================
   TECHNOLOGY.CSS — PCU Corporation Technology Page
   Specific styles for technology-page.html
   ============================================================ */

/* ── Hero Section ──────────────────────────────────────────── */
.tech-hero {
  position: relative;
  width: 100%;
  min-height: 780px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  margin-top: 0;
}

.tech-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 34, 80, 0.85) 0%, rgba(14, 46, 108, 0.2) 100%);
  z-index: 1;
}

.tech-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: flex-end;
  width: 100%;
}

.tech-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.tech-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border: 1px solid var(--color-white);
  border-radius: 32px;
  font-size: var(--text-base);
  color: var(--color-white);
  letter-spacing: -0.04em;
}

.tech-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0;
}

.tech-hero-desc {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 900px;
}

/* ── 3 Highlight Cards Section ─────────────────────────────── */
.tech-highlights-section {
  padding: 80px 0 100px;
}

.tech-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 40px 40px;
  min-height: 520px;
  box-sizing: border-box;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tech-card--dark {
  background-color: #011334;
  color: var(--color-white);
  border: none;
}

.tech-card--light {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.tech-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.tech-card-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  letter-spacing: -0.04em;
}

.tech-card--dark .tech-card-number {
  color: var(--color-white);
}

.tech-card--light .tech-card-number {
  color: var(--color-primary);
}

.tech-card-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 40px 0 20px;
}

.tech-card--dark .tech-card-title {
  color: var(--color-white);
}

.tech-card--light .tech-card-title {
  color: var(--color-primary);
}

.tech-card-desc {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin: 0;
}

.tech-card--dark .tech-card-desc {
  color: rgba(255, 255, 255, 0.9);
}

.tech-card--light .tech-card-desc {
  color: var(--color-primary);
}

.tech-highlight-text {
  color: #3D86E9;
  font-weight: 500;
}

.tech-card-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.tech-card-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #438AEB;
}

/* ── Features List Section (Estimaciones & Control) ────────── */
.tech-features-section {
  padding: 60px 0 100px;
}

.tech-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 40px;
}

.tech-section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 70px);
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin: 0;
}

.tech-section-desc {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.3;
  letter-spacing: -0.04em;
  margin: 0;
}

.tech-section-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  opacity: 0.15;
  margin-bottom: 60px;
}

/* 3x2 Grid of Feature Items */
.tech-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  column-gap: 40px;
  position: relative;
}

.tech-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  position: relative;
}

@media (min-width: 1181px) {
  .tech-feature-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 5%;
    height: 90%;
    width: 1px;
    background-color: var(--color-primary);
    opacity: 0.25;
  }

  .tech-feature-item:nth-child(3)::after,
  .tech-feature-item:nth-child(7)::after {
    display: none;
  }
}

.tech-feature-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.tech-feature-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tech-feature-item-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  text-align: center;
}

.tech-feature-item-desc {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 320px;
  text-align: center;
}

/* Vertical and Horizontal dividers for the grid */
.tech-grid-divider-h {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  opacity: 0.12;
  margin: 20px 0;
}

/* ── 5 Industry Cards Grid Section ───────────────────────── */
.tech-db-5grid-section {
  padding: 80px 0 60px;
}

.tech-db-5grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.tech-db-card {
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  min-height: 420px;
  box-sizing: border-box;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.tech-db-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tech-db-card--dark {
  background-color: #011334;
  color: var(--color-white);
  border: none;
}

.tech-db-card--light {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.tech-db-card-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  letter-spacing: -0.04em;
  text-align: right;
  display: block;
}

.tech-db-card--dark .tech-db-card-number {
  color: var(--color-white);
}

.tech-db-card--light .tech-db-card-number {
  color: var(--color-primary);
}

.tech-db-card-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 30px 0 20px;
}

.tech-db-card--dark .tech-db-card-title {
  color: var(--color-white);
}

.tech-db-card--light .tech-db-card-title {
  color: var(--color-primary);
}

.tech-db-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-db-bullets li {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.tech-db-card--dark .tech-db-bullets li {
  color: rgba(255, 255, 255, 0.9);
}

.tech-db-card--light .tech-db-bullets li {
  color: var(--color-primary);
}

.tech-db-link {
  color: #3D86E9;
  font-weight: 500;
}

/* ── International Design Section ──────────────────────────── */
.tech-intl-section {
  padding: 80px 0 120px;
}

.tech-intl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tech-intl-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tech-intl-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
}

.tech-intl-desc {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin: 0;
}

.tech-intl-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.tech-intl-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Vertical Dividers & Dividers Utilities ────────────────── */
.tech-vertical-divider {
  width: 1px;
  background-color: var(--color-primary);
  opacity: 0.15;
  align-self: stretch;
}

.tech-models-vertical-divider {
  width: 1px;
  background-color: var(--color-primary);
  opacity: 0.15;
  align-self: stretch;
}

/* ── Reports Subhero 2-Column Section ──────────────────────── */
.tech-reports-subhero {
  padding: 80px 0 60px;
}

.tech-reports-subhero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: stretch;
}

.tech-reports-subhero-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin: 0;
}

/* ── Reports Dark Banner Section ───────────────────────────── */
.tech-reports-banner {
  background-color: #011334;
  padding: 100px 0;
  color: var(--color-white);
  text-align: center;
}

.tech-reports-banner-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-reports-folder-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 32px;
  color: #438AEB;
}

.tech-reports-banner-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: -0.04em;
  margin: 0;
}

/* ── Reports Capabilities Header ───────────────────────────── */
.tech-reports-caps-section {
  padding: 100px 0 40px;
}

.tech-reports-caps-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 70px);
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin: 0 0 40px;
}

/* ── Reports Reliable / Scalable Section ───────────────────── */
.tech-reports-reliable-section {
  padding: 40px 0 120px;
}

.tech-reports-reliable-header {
  margin-bottom: 30px;
}

.tech-reports-reliable-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 16px 0 0;
}

.tech-reports-reliable-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: stretch;
}

.tech-reports-reliable-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin: 0;
}

/* ── Modelos de Contrato Section ───────────────────────────── */
.tech-models-section {
  padding: 100px 0 120px;
}

.tech-models-container {
  display: grid;
  grid-template-columns: 440px auto 1fr;
  gap: 60px;
  align-items: center;
}

.tech-models-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-models-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
}

.tech-models-desc {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin: 0;
}

.tech-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 30px;
  position: relative;
}

.tech-models-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
}

@media (min-width: 1181px) {
  .tech-models-item::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--color-primary);
    opacity: 0.25;
  }

  .tech-models-item:nth-child(3)::after,
  .tech-models-item:nth-child(7)::after {
    display: none;
  }
}

.tech-models-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tech-models-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tech-models-item-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0;
  text-align: center;
}

.tech-models-divider-h {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  opacity: 0.25;
  margin: 10px 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1180px) {
  .tech-hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tech-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-db-5grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-intl-grid,
  .tech-reports-subhero-grid,
  .tech-reports-reliable-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tech-models-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tech-vertical-divider,
  .tech-models-vertical-divider {
    display: none;
  }

  .tech-section-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tech-section-title {
    font-size: clamp(32px, 5vw, 50px);
  }

  .tech-section-desc {
    font-size: 22px;
  }

  .tech-features-grid,
  .tech-models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-hero {
    min-height: 440px;
    padding-bottom: 40px;
  }

  .tech-highlights-grid {
    grid-template-columns: 1fr;
  }

  .tech-db-5grid {
    grid-template-columns: 1fr;
  }

  .tech-card {
    min-height: auto;
    padding: 35px 28px;
  }

  .tech-card-title {
    font-size: 28px;
    margin: 20px 0 14px;
  }

  .tech-card-desc {
    font-size: 18px;
  }

  .tech-features-grid,
  .tech-models-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .tech-feature-item-title,
  .tech-models-item-title {
    font-size: 24px;
  }

  .tech-feature-item-desc {
    font-size: 18px;
  }

  .tech-reports-banner-text {
    font-size: 24px;
  }

  .tech-reports-subhero-text,
  .tech-reports-reliable-text {
    font-size: 18px;
  }
}


