/* Hero Section */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-height) var(--space-lg) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(247, 148, 29, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(247, 148, 29, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(247, 148, 29, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(200px, 35vw, 340px);
  height: auto;
  margin-bottom: var(--space-xl);
  filter: drop-shadow(0 0 20px rgba(247, 148, 29, 0.3));
  animation: pulse-glow 3s ease-in-out infinite alternate;
  position: relative;
}

@keyframes pulse-glow {
  from { filter: drop-shadow(0 0 15px rgba(247, 148, 29, 0.25)); }
  to   { filter: drop-shadow(0 0 35px rgba(247, 148, 29, 0.45)); }
}

.hero-tagline {
  font-size: var(--text-xl);
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

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

.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Why Section */
.why-section {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(247, 148, 29, 0.04) 0%, transparent 50%),
    var(--color-bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.why-content h2 {
  margin-bottom: var(--space-lg);
}

.why-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.why-content p:last-child {
  margin-bottom: 0;
}

.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-icon-container {
  width: clamp(200px, 25vw, 300px);
  height: clamp(200px, 25vw, 300px);
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.why-icon-container::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--color-accent), transparent 30%, transparent 70%, var(--color-accent));
  z-index: -1;
  opacity: 0.3;
}

.why-icon-container svg {
  width: 80px;
  height: 80px;
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Value Props */
.value-props {
  background: var(--color-bg-primary);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  color: var(--color-accent);
}

.value-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.value-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  background: var(--color-accent-subtle);
  border-top: 1px solid rgba(247, 148, 29, 0.15);
  border-bottom: 1px solid rgba(247, 148, 29, 0.15);
  text-align: center;
}

.cta-banner h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}
