/* ══ AOS FALLBACK – Inhalte IMMER sichtbar ══
   Falls AOS nicht lädt, bleibt alles sichtbar.
   AOS überschreibt diese Regel sobald es geladen ist. */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* Wenn AOS geladen ist, gibt es die Klasse .aos-animate-ready am body */
body.aos-ready [data-aos] {
  opacity: 0;
  transform: unset;
  transition: opacity .55s ease, transform .55s ease;
}
body.aos-ready [data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════════════════════════════════
   Sicherheitshandy.net – style.css
   ══════════════════════════════════════ */

/* Variables */
:root {
  --green:   #25D366;
  --black:   #111111;
  --white:   #ffffff;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --bg-alt:  #f9fafb;
  --shadow:  0 4px 20px rgba(0,0,0,.08);
  --radius:  16px;
  --max-w:   1120px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #111111;
  background: #ffffff;
}
h1,h2,h3,h4,h5 { line-height: 1.25; color: #111111; }
p { margin: 0 0 1rem; color: #374151; }
a { color: #111111; }
a:hover { opacity: .75; }
img { max-width:100%; height:auto; display:block; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section       { padding: 4rem 0; }
.section-alt   { background: #f9fafb; }
.section-title { font-size: 1.6rem; font-weight: 700; margin: 0 0 .6rem; color: #111111; }
.section-intro { margin: 0 0 1.75rem; color: #6b7280; max-width: 640px; }
.text-block    { max-width: 720px; }
.text-block h2 { font-size: 1.25rem; margin: 1.5rem 0 .4rem; color: #111111; }
.text-block p  { color: #374151; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f3f4f6;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .75rem 1.25rem;
}
.logo { text-decoration: none; display: flex; flex-direction: column; }
.logo-name   { font-weight: 800; font-size: 1.2rem; color: #111111; line-height: 1.2; letter-spacing: -.01em; }
.logo-slogan { font-size: .8rem; color: #6b7280; line-height: 1.3; }

.nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #ffffff;
  border-bottom: 2px solid #f3f4f6;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.nav-menu.open { display: flex; }
.nav-menu li   { border-top: 1px solid #f3f4f6; }
.nav-menu a    { display: block; padding: .75rem 1.25rem; text-decoration: none; color: #111111; font-size: .95rem; }
.nav-menu a:hover { background: #f9fafb; opacity:1; }

/* Hamburger */
.hamburger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: space-between;
  width: 1.6rem; height: 1.2rem; padding: 0;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: #111111;
  transition: transform .2s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.page-hero {
  padding: 3rem 0 3.5rem;
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
}
.hero-home { padding: 3.5rem 0 4rem; }
.hero-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-text h1 {
  font-size: 1.75rem; font-weight: 800;
  margin: .5rem 0 .75rem; color: #111111;
}
.hero-text > p { color: #6b7280; margin-bottom: 1.5rem; }
.badge {
  display: inline-block;
  padding: .2rem .75rem;
  border-radius: 999px;
  background: rgba(37,211,102,.1);
  color: #059669;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.hero-list { list-style: none; padding: 0; margin: 0; }
.hero-list li {
  display: flex; align-items: center; gap: .4rem;
  font-size: .9rem; color: #6b7280; margin-bottom: .3rem;
}
.hero-list i { color: #25D366; flex-shrink: 0; }

/* Sticker card */
.hero-card-wrap { display: flex; }
.sticker-card {
  width: 100%;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid #25D366;
  padding: 1.4rem;
}
.sticker-title  { font-weight: 700; font-size: 1rem; margin: 0 0 .5rem; color: #111111; }
.sticker-text   { font-size: .9rem; color: #6b7280; margin: 0 0 .75rem; }
.sticker-list   { list-style: disc; padding-left: 1.2rem; margin: 0 0 .75rem; font-size: .9rem; color: #374151; }
.sticker-footer { font-size: .8rem; color: #9ca3af; margin: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .6rem 1.4rem; border-radius: 999px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.primary-btn {
  background: #111111; color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.25); opacity:1; }
.ghost-btn {
  background: #ffffff; color: #111111 !important;
  border-color: #d1d5db;
}
.ghost-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); opacity:1; }
.cta-call-btn {
  background: #25D366; color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.cta-call-btn:hover { transform: translateY(-2px); opacity:1; }
.cta-ghost-btn {
  background: transparent; color: #ffffff !important;
  border-color: rgba(255,255,255,.4);
}
.cta-ghost-btn:hover { background: rgba(255,255,255,.08); opacity:1; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .9rem; font-weight: 600; text-decoration: none; color: #111111;
}
.link-arrow:hover { opacity: .7; }

/* ── Grid & Cards ── */
.grid { display: grid; gap: 1rem; }
.three-col { grid-template-columns: 1fr; }
.card {
  background: #ffffff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.4rem;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.card h2, .card h3 { font-size: 1rem; margin: 0 0 .4rem; color: #111111; }
.card p { font-size: .9rem; color: #6b7280; margin: 0; }
.card-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: #f3f4f6; display: inline-flex;
  align-items: center; justify-content: center;
  color: #111111; margin-bottom: .65rem; font-size: .95rem;
}

/* ── Split ── */
.split { display: flex; flex-direction: column; gap: 2rem; }
.highlight-box {
  background: #ffffff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.5rem;
  border-left: 4px solid #25D366;
}
.highlight-box h3 { font-size: 1.05rem; margin: 0 0 .6rem; color: #111111; }
.highlight-box p  { font-size: .9rem; color: #6b7280; margin: 0 0 .6rem; }
.highlight-box .tagline { font-weight: 700; color: #111111 !important; }

/* ── Check list ── */
.check-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .92rem; color: #374151; margin-bottom: .4rem;
}
.check-list i { color: #25D366; margin-top: .15rem; flex-shrink: 0; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #ffffff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1rem 1.25rem;
}
.step-num {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: #111111; color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.step strong { display:block; color:#111111; margin-bottom:.15rem; }
.step p { font-size:.88rem; color:#6b7280; margin:0; }

/* ── CTA Section ── */
.section-cta { background: #111111; }
.section-cta .section-title { color: #ffffff; }
.section-cta p { color: #d1d5db; }
.cta-container { display: flex; flex-direction: column; gap: 1.5rem; }
.cta-actions   { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .6rem; max-width: 780px; }
.faq-item { background: #ffffff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; text-align: left;
  font-size: .95rem; font-weight: 600; color: #111111;
  gap: .5rem;
}
.faq-question i { color: #6b7280; transition: transform .2s; flex-shrink:0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: .9rem; color: #374151;
}
.faq-item.open .faq-answer { display: block; }

/* ── Forms ── */
form { display: grid; gap: .85rem; max-width: 500px; }
.form-row { display: flex; flex-direction: column; gap: .3rem; }
label { font-size: .85rem; font-weight: 600; color: #374151; }
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%; padding: .65rem .8rem;
  border: 1.5px solid #d1d5db; border-radius: .6rem;
  font-size: .9rem; font-family: inherit; color: #111111; background: #ffffff;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,.15);
}
textarea { min-height: 140px; resize: vertical; }
.form-message { font-size: .88rem; min-height: 1.2rem; }
.form-message.success { color: #059669; }
.form-message.error   { color: #dc2626; }

/* ── Footer ── */
.footer { background: #0a0a0b; padding: 3rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-col h4 { font-size: .95rem; color: #ffffff; margin: 0 0 .75rem; }
.footer-col p  { font-size: .85rem; color: #9ca3af; margin: 0 0 .3rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .4rem; font-size: .85rem; color: #9ca3af; }
.footer-col a  { color: #9ca3af; text-decoration: none; }
.footer-col a:hover { color: #ffffff; opacity:1; }
.footer-social a {
  display: inline-flex; width: 2.1rem; height: 2.1rem; border-radius: 50%;
  align-items: center; justify-content: center;
  background: #25D366; color: #ffffff; font-size: 1.1rem;
  text-decoration: none; margin-top: .5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 2rem; padding-top: 1rem;
}
.footer-bottom p { font-size: .8rem; color: #6b7280; margin: 0; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; right: 1rem; bottom: 5rem;
  width: 3.2rem; height: 3.2rem; border-radius: 50%;
  background: #25D366; color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  text-decoration: none; z-index: 90; font-size: 1.5rem;
}
.whatsapp-float:hover { opacity:1; transform:scale(1.08); }

/* ── Mobile Sticky ── */
.mobile-sticky {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #111111; display: flex;
  padding: .5rem .5rem .6rem; z-index: 80;
}
.mobile-sticky a {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #ffffff; text-decoration: none; font-size: .72rem; gap: .2rem;
}
.mobile-sticky a:hover { opacity: .85; }
.mobile-sticky i { font-size: 1.1rem; }

/* ── Responsive ── */
@media (min-width: 640px) {
  .hero-text h1 { font-size: 2.25rem; }
  .section-title { font-size: 1.9rem; }
}
@media (min-width: 900px) {
  .hero-container { flex-direction: row; align-items: center; gap: 3rem; }
  .hero-text      { flex: 3; }
  .hero-card-wrap { flex: 2; }
  .three-col { grid-template-columns: repeat(3, 1fr); }
  .split { flex-direction: row; align-items: flex-start; }
  .highlight-box { min-width: 300px; max-width: 360px; }
  .cta-container { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-menu {
    position: static; display: flex !important;
    flex-direction: row; background: transparent;
    box-shadow: none; border: none;
  }
  .nav-menu li { border: none; }
  .nav-menu a { padding: .3rem .85rem; font-size: .9rem; }
  .hamburger { display: none; }
  .mobile-sticky { display: none; }
  .whatsapp-float { bottom: 1.5rem; }
}
