/* Logo Design Page Styles */

/* Hero Section */
.hero-logo {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: var(--space-16) 0 var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.hero-logo .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 320px;
}

.hero-content h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-6);
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
}

/* Decorative Blobs */
.decorative-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  border-radius: 50%;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  top: -200px;
  left: -200px;
  filter: blur(80px);
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  bottom: -150px;
  right: -150px;
  filter: blur(60px);
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: var(--color-accent);
  top: 50%;
  right: -175px;
  transform: translateY(-50%);
  filter: blur(100px);
}

/* Benefits Section */
.benefits-section {
  background: var(--color-neutral-50);
  padding: var(--space-16) 0;
}

.section-title {
  text-align: center;
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-12);
  color: var(--color-text);
}

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

.benefit-card {
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out), 
              box-shadow var(--duration-normal) var(--ease-out);
}

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

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4) auto;
  color: #fff;
}

.benefit-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.benefit-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  background: var(--color-secondary);
  color: #fff;
  padding: var(--space-16) 0;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-12);
  opacity: 0.9;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  align-items: flex-start;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.step-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.step-content p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Logo Types Section */
.logo-types-section {
  background: var(--color-neutral-50);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.types-content {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.types-text {
  flex: 1;
  min-width: 320px;
}

.types-text h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.types-text p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.logo-types-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.type-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.type-item i {
  color: var(--color-primary);
}

.type-item span {
  font-weight: 500;
  color: var(--color-text);
}

.types-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.types-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* What's Included Section */
.included-section {
  background: #fff;
  padding: var(--space-16) 0;
}

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

.included-item {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-neutral-50);
  transition: transform var(--duration-normal) var(--ease-out);
}

.included-item:hover {
  transform: translateY(-2px);
}

.included-item i {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4) auto;
  color: #fff;
}

.included-item h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.included-item p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: var(--color-neutral-50);
  padding: var(--space-16) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.faq-item {
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.faq-item h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.faq-item p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  padding: var(--space-16) 0;
  text-align: center;
}

.cta-content h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.cta-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-6);
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-logo .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .types-content {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-types-list {
    grid-template-columns: 1fr;
  }
  
  .included-grid {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto var(--space-4) auto;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}