/* ============================================================
   SKYLINE STUDIO — MANUFACTURER WEBSITE SERVICE PAGE CSS
   File: css/manufacturer-website.css
   Used by: manufacturer-website.html only
   ============================================================ */

/* Service Overview */
.service-overview {
  background: var(--navy);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.overview-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

.overview-card:nth-child(1) { animation-delay: 0.1s; }
.overview-card:nth-child(2) { animation-delay: 0.2s; }
.overview-card:nth-child(3) { animation-delay: 0.3s; }
.overview-card:nth-child(4) { animation-delay: 0.4s; }
.overview-card:nth-child(5) { animation-delay: 0.5s; }
.overview-card:nth-child(6) { animation-delay: 0.6s; }

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(43, 107, 255, 0.2);
  border-color: var(--cobalt);
}

.overview-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.overview-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.overview-card p {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.6;
}

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

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

.process-step {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--cobalt);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--cobalt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CTA Final Section */
.cta-final {
  background: linear-gradient(135deg, rgba(43, 107, 255, 0.1), rgba(167, 139, 250, 0.05));
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-final .section-title {
  animation: fadeUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

.cta-final .section-sub {
  animation: fadeUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── DETAILED INTRO & BENEFITS ── */
.mfg-intro-content,
.mfg-benefits-content {
  max-width: 860px;
}
.mfg-intro-content p,
.mfg-benefits-content p {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 22px;
}
.mfg-intro-content p:last-child,
.mfg-benefits-content p:last-child {
  margin-bottom: 0;
}

/* ── FAQ ── */
.mfg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mfg-faq-item {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.mfg-faq-item:hover {
  border-color: var(--cobalt);
}
.mfg-faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.mfg-faq-item p {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 768px) {
  .mfg-intro-content p,
  .mfg-benefits-content p {
    font-size: 15px;
    line-height: 1.75;
  }
  .mfg-faq-item {
    padding: 22px;
  }
}
