/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

@media (max-width: 1024px) {
  .hero-description {
    margin: 0 auto 2.5rem auto;
  }
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Hero Profile Image Frame */
.hero-image-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 460px;
  height: 460px;
  position: relative;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--accent-gradient);
  box-shadow: 0 15px 45px var(--accent-glow);
  overflow: hidden;
  animation: morphing-blob 12s ease-in-out infinite alternate;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform var(--transition-normal);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.12);
}

@keyframes morphing-blob {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 45% 45% 55% 55%;
  }
  50% {
    border-radius: 35% 65% 37% 63% / 65% 32% 68% 35%;
  }
  75% {
    border-radius: 65% 35% 67% 33% / 38% 68% 32% 62%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@media (max-width: 1024px) {
  .hero-image-wrapper {
    width: 340px;
    height: 340px;
    margin-top: 1rem;
  }
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.process-card {
  position: relative;
  overflow: hidden;
}

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* About Snippet Section */
.about-snippet-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-snippet-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-snippet-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-snippet-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-snippet-content h3 {
  margin-bottom: 1.5rem;
}

.about-snippet-text {
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Call to Action Section */
.cta-box {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 3rem;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 158, 121, 0.08) 0%, rgba(11, 7, 32, 0) 70%), var(--surface-color);
}

.cta-title {
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
}


