/* ===== PRINTAXIS — HOME PAGE ===== */

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,212,255,0.12), transparent),
    radial-gradient(ellipse 60% 50% at 80% 80%,  rgba(123,47,255,0.10), transparent),
    radial-gradient(ellipse 50% 40% at 10% 90%,  rgba(0,212,255,0.06),  transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* ===== BADGE ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.06);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ===== HEADING ===== */
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--hero-sub);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
}

/* ===== CTA GROUP ===== */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STATS ===== */
.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

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

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text2);
  margin-top: 4px;
  font-weight: 300;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: linear-gradient(to bottom, var(--bg), var(--bg2));
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero-stats { gap: 32px; }
  .hero h1   { letter-spacing: -0.01em; }
}

/* ===== RESPONSIVE COMPLET ===== */
@media (max-width: 768px) {
  .hero              { padding: 0 20px; min-height: calc(100svh - 64px); }
  .hero h1           { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub          { font-size: .95rem; margin-bottom: 32px; }
  .hero-ctas         { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas a,
  .hero-ctas button  { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .hero-stats        { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-val     { font-size: 1.8rem; }
  .why-grid,
  .features-grid,
  .process-grid      { grid-template-columns: 1fr; }
  .cta-section       { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .hero-stats        { gap: 20px; }
  .hero-stat         { min-width: 80px; }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
  .hero { padding: 0 16px; min-height: calc(100svh - 64px); }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas a, .hero-ctas button { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-val { font-size: 1.8rem; }
  .why-grid, .features-grid, .process-grid, .how-grid { grid-template-columns: 1fr !important; }
  .cta-section { padding: 60px 16px; }
  .cta-section .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
}
@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .hero-badge { font-size: .7rem; }
}
