/* ═══════════════════════════════════════════════════════
   LEO-TEC — home.css
   Nur für index.php
   ═══════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, #08122a 0%, var(--clr-navy) 55%, #1a3460 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 80% at 20% 50%, rgba(74,125,196,.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: var(--sp-lg);
  width: 100%; padding-block: var(--sp-xl);
}

/* Text-Seite */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .2em;
  color: var(--clr-gold); margin-bottom: 1.5rem;
  animation: fadeSlideUp .8s var(--ease-out) both;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--clr-gold); opacity: .6;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 700; line-height: 1.02; color: #fff;
  margin-bottom: 1rem;
  animation: fadeSlideUp .8s .1s var(--ease-out) both;
}
.hero__title-accent { color: var(--clr-gold); }

.hero__subtitle {
  display: block; font-family: var(--ff-body); font-weight: 300;
  font-size: clamp(.9rem, 1.6vw, 1.1rem); letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
}

.hero__desc {
  font-size: 1.02rem; color: rgba(255,255,255,.62); line-height: 1.78;
  max-width: 520px; margin-bottom: var(--sp-md);
  animation: fadeSlideUp .8s .2s var(--ease-out) both;
}

.hero__cta-group {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeSlideUp .8s .3s var(--ease-out) both;
}

.hero__badges {
  display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem;
  animation: fadeSlideUp .8s .4s var(--ease-out) both;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; font-size: .76rem; padding: .3rem .85rem;
  color: rgba(255,255,255,.8);
}

/* Logo schwebt rechts */
.hero__visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.hero__visual::before {
  content: ''; position: absolute; inset: -30%;
  background: radial-gradient(ellipse at center, rgba(74,125,196,.12) 0%, transparent 65%);
  border-radius: 50%; animation: ringPulse 5s ease-in-out infinite;
}
.hero__logo-float {
  width: clamp(240px, 32vw, 460px); height: auto;
  mix-blend-mode: screen; opacity: .24;
  animation: floatLogo 7s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(74,125,196,.6));
  user-select: none; pointer-events: none;
}

/* Scroll-Indikator */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .32; animation: fadeSlideUp .8s .6s var(--ease-out) both;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll span {
  font-family: var(--ff-mono); font-size: .62rem;
  letter-spacing: .2em; color: rgba(255,255,255,.55);
}

/* Hero Responsive */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-block: calc(var(--sp-lg) + 2rem) var(--sp-lg); }
  .hero__visual { display: none; }
  .hero__eyebrow { justify-content: center; }
  .hero__desc { margin-inline: auto; }
  .hero__cta-group { justify-content: center; }
  .hero__badges { justify-content: center; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }
}

/* ── SERVICES SECTION ─────────────────────────────────── */
.services { background: var(--clr-bg); }
.services__header { text-align: center; margin-bottom: var(--sp-lg); }
.services__header p.mono { margin-bottom: .5rem; }
.services__header .section-title { margin-top: 0; }
.services__header .text-muted { max-width: 500px; margin-inline: auto; margin-top: .75rem; }

/* ── HARDWARE SECTION ─────────────────────────────────── */
.hardware { background: var(--clr-surface); }
.hardware__header { margin-bottom: var(--sp-lg); }
.hardware__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--clr-gold-dim); border: 1px solid rgba(200,148,30,.25);
  color: var(--clr-gold); font-family: var(--ff-mono); font-size: .69rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: 3px; margin-bottom: 1rem;
}
.hardware__header .section-title { margin-top: .25rem; }
.hardware__header .text-muted { max-width: 580px; margin-top: .75rem; }
.hardware__more { text-align: center; margin-top: var(--sp-lg); }

/* ── SECURITY SECTION (Navy) ──────────────────────────── */
.security {
  background: linear-gradient(135deg, #08122a 0%, var(--clr-navy) 100%);
  position: relative; overflow: hidden;
}
.security::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.security .section-title { color: #fff; }

.security__split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg); align-items: center;
  position: relative; z-index: 1;
}
.security__text-col .mono { color: rgba(255,255,255,.45); }
.security__text-col .text-gold { color: var(--clr-gold); }
.security__text-col p  { color: rgba(255,255,255,.6); margin-top: .75rem; margin-bottom: var(--sp-md); }

/* Animiertes Schild */
.security__visual { position: relative; aspect-ratio: 1; width: 100%; max-width: 360px; min-height: 280px; margin-inline: auto; }
.security__ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}
.security__ring:nth-child(2) { inset: 15%; animation-delay: .5s; border-color: rgba(255,255,255,.15); }
.security__ring:nth-child(3) { inset: 30%; animation-delay: 1s;  border-color: rgba(74,125,196,.5); }
.security__center {
  position: absolute; inset: 40%;
  background: rgba(74,125,196,.2); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff;
}

.security__features { display: flex; flex-direction: column; gap: 1rem; }
.security__feat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); transition: background .3s;
}
.security__feat:hover { background: rgba(255,255,255,.1); }
.security__feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(74,125,196,.25); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: #60a5fa;
}
.security__feat h4 { font-size: .92rem; color: #fff; margin-bottom: .25rem; }
.security__feat p  { font-size: .82rem; color: rgba(255,255,255,.55); }

.security__cta { margin-top: var(--sp-md); }

@media (max-width: 900px) {
  .security__split { grid-template-columns: 1fr; }
  .security__visual { display: none; }
}
