/* ===== HERO ===== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.hero-with-form {
  min-height: auto;
  padding-top: calc(var(--space-xl) + 60px);
  padding-bottom: var(--space-xl);
}

.hero-form-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-bottom: var(--space-lg);
}

.hero-logo {
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  box-shadow: 0 0 30px rgba(215, 210, 203, 0.15);
}

.hero-title {
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: var(--text-lg);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  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 infinite;
}

/* ===== INFO GRID ===== */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.info-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.info-icon-line {
  width: 40px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-sm);
  opacity: 0.6;
}

.info-card h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-lg);
}

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

/* ===== STEPS GRID ===== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.step-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.step-card:hover .step-number {
  box-shadow: 0 0 20px rgba(215, 210, 203, 0.15);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  opacity: 0.6;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--color-bg-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.step-card h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-lg);
}

.step-card p {
  font-size: var(--text-sm);
}

/* ===== FORM SECTION ===== */

.form-section {
  background: radial-gradient(ellipse at center, rgba(24, 48, 40, 0.5) 0%, transparent 70%);
}

.equipment-form {
  max-width: 640px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */

.main-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
  margin-top: var(--space-section);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo-img {
  border-radius: 50%;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text-primary);
}

.footer-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-contact-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.footer-contact a {
  color: var(--color-accent);
  font-size: var(--text-sm);
}

.footer-contact a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
}
