/* Common Section Styles */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.text-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.mb-4 { margin-bottom: 16px; }
.mt-4 { margin-top: 16px; }

/* Services Section */
.services-section {
  background-color: #080b0f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal);
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(43, 213, 196, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon {
  color: var(--primary-teal);
  font-size: 24px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  transition: border-color 0.3s;
}

.portfolio-card:hover {
  border-color: var(--primary-gold);
}

.portfolio-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.portfolio-mockup-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.portfolio-info {
  padding: 24px;
}

.portfolio-category {
  font-size: 13px;
  color: var(--primary-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 22px;
  font-weight: 700;
}

/* Difference Section */
.difference-section {
  background-color: #080b0f;
}

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

.difference-card {
  padding: 32px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.diff-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.diff-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-gold);
}

.diff-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Process Section */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 1px;
  background: var(--border-color);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-color);
  border: 2px solid var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-teal);
  margin: 0 auto 24px auto;
}

.step-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
  background-color: #080b0f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
}

.bg-gradient-to-r { background: linear-gradient(to right, var(--primary-teal), #3b82f6); }

.author-name {
  font-size: 16px;
  font-weight: 700;
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ */
.faq-container {
  display: flex;
  gap: 60px;
}

.faq-content {
  flex: 1;
}

.faq-accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.faq-question {
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: var(--primary-teal);
  font-size: 24px;
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-box {
  background: linear-gradient(135deg, rgba(43, 213, 196, 0.1) 0%, rgba(244, 186, 64, 0.1) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
}

.cta-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-desc {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Footer */
.footer-section {
  background-color: #080b0f;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.social-icon:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-teal);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .faq-container {
    flex-direction: column;
  }
  .hero-graphic { margin-top: 60px; }
  .process-timeline { flex-direction: column; gap: 40px; }
  .process-timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 40px; }
  .section-title { font-size: 32px; }
  .cta-title { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
}
