/* Additional Sections Styles */

/* ========== Design Process Section ========== */
.process-section {
  padding: var(--space-12) 0;
  background: var(--white);
}

.process-section__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.process-step {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--neutral-50);
  transition: all var(--transition-base);
  position: relative;
  opacity: 1;
}

.process-step:hover {
  transform: translateY(-8px);
  background: var(--accent-cream);
  box-shadow: var(--shadow-lg);
}

.process-step__number {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-h3);
  font-weight: var(--fw-bold);
  margin: 0 auto var(--space-4);
}

.process-step__title {
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--neutral-900);
  margin-bottom: var(--space-3);
}

.process-step__description {
  font-size: var(--text-body);
  color: var(--neutral-700);
  line-height: var(--lh-relaxed);
}

/* ========== Tools Section ========== */
.tools-section {
  padding: var(--space-12) 0;
  background: var(--accent-cream);
}

.tools-section__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.tool-category {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  opacity: 1;
}

.tool-category h3 {
  color: var(--primary-navy);
  margin-bottom: var(--space-4);
  font-size: var(--text-h4);
}

.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--accent-cream);
  border-radius: var(--radius-full);
  font-size: var(--text-small);
  font-weight: var(--fw-medium);
  color: var(--neutral-700);
  transition: all var(--transition-fast);
}

.tool-badge:hover {
  background: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== Testimonials Section ========== */
.testimonials-section {
  padding: var(--space-12) 0;
  background: var(--white);
}

.testimonials-section__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.testimonial-card {
  background: var(--neutral-50);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-navy);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
  font-size: var(--text-body);
  line-height: var(--lh-relaxed);
  color: var(--neutral-700);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__author-image {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--text-h4);
}

.testimonial-card__author-info {
  flex: 1;
}

.testimonial-card__author-name {
  font-weight: var(--fw-semibold);
  color: var(--neutral-900);
  margin-bottom: var(--space-1);
}

.testimonial-card__author-role {
  font-size: var(--text-small);
  color: var(--neutral-500);
}

/* ========== Project Detail Section ========== */
.project-detail {
  padding: var(--space-6);
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  margin-top: var(--space-4);
}

.project-detail h4 {
  color: var(--primary-navy);
  margin-bottom: var(--space-3);
}

.project-detail ul {
  list-style: none;
  padding: 0;
}

.project-detail li {
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: var(--space-2);
  color: var(--neutral-700);
}

.project-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-navy);
  font-weight: var(--fw-bold);
}

/* ========== Values Section ========== */
.values-section {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
  color: var(--white);
}

.values-section__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.values-section__header h2 {
  color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.value-card {
  text-align: center;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  opacity: 1;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.value-card__icon {
  font-size: 48px;
  margin-bottom: var(--space-4);
}

.value-card__title {
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.value-card__description {
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--lh-relaxed);
}

/* ========== Project Screenshots Gallery ========== */
.project-screenshots {
  margin-top: var(--space-6);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.screenshot-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  background: var(--neutral-100);
}

.screenshot-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .process-grid,
  .tools-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}
