/* ============================================
   SATZSTRATEGIE – SAFE RESTORE v1.3
   Original Design + Working Speed Dial
   ============================================ */

/* --- 1. VARIABLES --- */
html {
  background-color: #02040a;
  overscroll-behavior: none;
}
:root {
  --bg-core: #02040a;
  --bg-glow: #1e293b;
  --bg-card: rgba(15, 23, 42, 0.6);
  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --accent-blue: #38bdf8;
  --accent-gold: #facc15;
  --error-red: #ff5f5f;
  --focus-outline: var(--accent-gold);
}

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--accent-gold);
  color: #000000;
  padding: 1rem 1.5rem;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 20px;
}

/* --- 2. RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(
    circle at 50% 0%,
    var(--bg-glow) 0%,
    var(--bg-core) 60%
  );
  background-attachment: fixed;
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      rgba(56, 189, 248, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* --- 3. TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-size: clamp(1.8rem, 7vw, 4.8rem);
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  border-bottom: 2px solid var(--accent-blue);
  display: inline-block;
  padding-bottom: 0.5rem;
}

h3 {
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero-intro {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
  letter-spacing: 2px;
}

.special-box {
  background: rgba(56, 189, 248, 0.1);
  border-left: 4px solid #38bdf8;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 0 4px 4px 0;
  max-width: 650px;
}

.special-box p {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.5;
}

.special-box .text-white {
  color: #ffffff;
  font-weight: 700;
}

.link-gold {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #fbbf24;
  text-underline-offset: 4px;
  font-weight: 700;
}

.link-white {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 4px;
  font-weight: 700;
  letter-spacing: 2px;
}

.link-gold:hover,
.link-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.highlight {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    var(--accent-blue) 40%,
    var(--accent-gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mono {
  font-family: "JetBrains Mono", monospace;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: rgba(56, 189, 248, 0.1);
  border-left: 4px solid var(--accent-blue);
  border-radius: 0 4px 4px 0;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  max-width: 650px;
  width: 100%;
  display: block;
}

.mono,
.special-box {
  max-width: 100%;
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-left: 4px solid var(--accent-blue);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  letter-spacing: 2px;
}

a {
  color: var(--text-main);
  text-decoration: none;
}

/* --- 4. LAYOUT --- */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 2rem 0;
}

h2 {
  margin-bottom: 2rem;
}
h3 {
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1.5rem;
}

.grid-3 {
  margin-top: 1rem;
}

/* --- 5. HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: #02040a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  border: none;
}
.logo span {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--accent-blue);
}

/* --- 6. HERO --- */
.hero {
  min-height: 85vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
}


/* --- 7. BUTTONS --- */
/* --- 7. BUTTONS --- */
.hero-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 100%;
  width: 100%;
}

.hero-btn-group .btn,
.hero-btn-group .btn-outline {
  width: 100%;
  height: 100%;
  min-height: 72px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem !important;
  letter-spacing: 2px;
  white-space: nowrap;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  text-decoration: none !important;
  border-bottom: none !important;
  box-sizing: border-box;
}

.hero-btn-group .btn {
  background-color: var(--accent-blue);
  color: #000000;
  border: 1px solid transparent;
}

.hero-btn-group .btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  color: #ffffff;
}

.hero-btn-group .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff !important;
}

.btn-subtext {
  font-size: 0.75rem !important;
  font-weight: 400;
  text-transform: none;
  opacity: 0.9;
  margin-top: 4px;
  letter-spacing: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .hero-btn-group {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .hero-btn-group .btn,
  .hero-btn-group .btn-outline {
    white-space: normal;
    min-height: 68px;
    padding: 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-btn-group {
    margin-top: 1.5rem;
    gap: 0.6rem;
  }

  .hero-btn-group .btn {
    font-size: 0.9rem !important;
    min-height: 64px;
    letter-spacing: 1px;
  }

  .hero-btn-group .btn-outline {
    font-size: 0.85rem !important;
    min-height: 60px;
    letter-spacing: 1px;
  }

  .btn-subtext {
    font-size: 0.7rem !important;
  }
}

/* Extra Small (iPhone SE) */
@media (max-width: 375px) {
  .hero-btn-group .btn,
  .hero-btn-group .btn-outline {
    font-size: 0.8rem !important;
    padding: 0.9rem 0.8rem;
    min-height: 58px;
    letter-spacing: 0.5px;
  }
}

/* --- 8. CARDS --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--bg-card);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.kippl-card {
  border-left: 4px solid var(--accent-blue);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}
.kippl-card:hover {
  border-color: var(--accent-gold);
  border-left-color: var(--accent-gold);
  transform: translateY(-3px);
}

/* --- 9. FOOTER --- */
footer {
  margin-top: 6rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

/* --- 10. ANIMATIONS --- */
@keyframes storyFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.story-element {
  opacity: 0;
  animation: storyFadeIn 0.8s ease-out forwards;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.3s;
}
.delay-3 {
  animation-delay: 0.5s;
}

@keyframes chargeButton {
  0% {
    background-color: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    opacity: 0.7;
    box-shadow: none;
  }
  100% {
    background-color: var(--accent-blue);
    color: #000000;
    border: 1px solid var(--accent-blue);
    opacity: 1;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
  }
}
.btn-charge {
  animation: chargeButton 2s ease-out forwards;
}

/* --- 11. FAQ --- */
details.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
details.faq-item:hover {
  border-color: var(--accent-blue);
}
details.faq-item[open] {
  border-color: var(--accent-gold);
}

summary.faq-question {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
}
summary.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--accent-blue);
  font-size: 1.5rem;
  line-height: 1;
}
details[open] summary.faq-question::after {
  content: "-";
  color: var(--accent-gold);
}
.faq-answer p {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.faq-headline {
  text-align: left;
  padding-left: 0;
  margin-bottom: 3rem;
}

/* --- 12. GENERAL MOBILE (768px) --- */
@media (max-width: 768px) {
  section {
    padding: 1.5rem 0;
  }
  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: auto;
  }
  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .grid-3 {
    gap: 1.5rem;
    margin-top: 0.5rem;
  }
  .faq-headline {
    padding-left: 0;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-btn-group .btn,
  .hero-btn-group .btn-outline {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- BURGER HEADER --- */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.burger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}
.line {
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
.burger-btn:hover .line {
  background-color: var(--accent-blue);
  width: 32px;
}
.burger-btn.is-active .line-1 {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--accent-gold);
}
.burger-btn.is-active .line-2 {
  opacity: 0;
  transform: translateX(10px);
}
.burger-btn.is-active .line-3 {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--accent-gold);
}

.smart-nav {
  position: absolute;
  top: 80px;
  right: 0;
  width: 300px;
  background: rgba(2, 4, 10, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) translateX(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 150;
}
.smart-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(0);
}

.nav-item {
  display: block;
  padding: 1rem;
  border-radius: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s;
}
.nav-item:last-child {
  border-bottom: none;
}
.nav-item:hover {
  background: rgba(56, 189, 248, 0.1);
}

.nav-title {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.nav-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item:hover .nav-sub,
.nav-item.is-expanded .nav-sub {
  max-height: 80px;
  opacity: 1;
  margin-top: 0.4rem;
  color: var(--accent-blue);
}
.highlight-item .nav-title {
  color: var(--accent-gold);
}

@media (max-width: 500px) {
  .smart-nav {
    width: calc(100vw - 40px);
    right: 0px;
  }
}

@media (max-width: 768px) {
  .smart-nav {
    width: 85vw;
    max-width: 320px;
    top: 70px;
    right: 0;
    border-radius: 8px 0 0 8px;
    border-right: none;
    text-align: right;
  }
  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem 1.5rem;
    text-align: right;
  }
  .nav-item.is-expanded .nav-title {
    color: var(--accent-blue);
  }
}

.nav-item.active-page .nav-title {
  color: var(--accent-blue) !important;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}
@media (min-width: 769px) {
  .nav-item.active-page .nav-sub {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.4rem;
    color: var(--accent-blue);
  }
}

/* ============================================
   SPEED DIAL BUTTON
   ============================================ */

.speed-dial-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.speed-dial-container.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.speed-dial-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  transition: transform 0.3s ease, background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.speed-dial-main:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.speed-dial-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #6c757d;
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px) scale(0.5);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.speed-dial-option:hover {
  background-color: #5a6268;
}

.speed-dial-container.menu-open .speed-dial-option {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.speed-dial-container.menu-open .speed-dial-main i {
  transform: rotate(45deg);
}

.speed-dial-container.is-home .speed-dial-option {
  display: none !important;
}

/* ============================================
   MOBILE MENU FIX (Rechtsbündig & Sofort-Klick)
   ============================================ */

@media (max-width: 768px) {
  .smart-nav {
    text-align: right !important;
    border-radius: 8px 0 0 8px;
    padding: 1rem 0;
    width: 85vw !important;
    right: 0 !important;
    left: auto !important;
  }

  .nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
    padding: 0.8rem 1.5rem 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-sub {
    opacity: 1 !important;
    max-height: none !important;
    display: block !important;
    margin-top: 2px !important;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 400;
  }

  .nav-title {
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.2;
  }
}

/* ============================================
   IPAD & TABLET FIX (bis 1024px)
   ============================================ */

@media (max-width: 1024px) {
  header {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .hero {
    padding-top: 1rem !important;
    min-height: auto !important;
  }

  h1 {
    font-size: 3.5rem;
  }
}

/* ============================================
   SHOP & APPS PAGE STYLES
   ============================================ */

.hero-compact {
  min-height: auto !important;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.shop-tagline {
  display: block;
  margin-bottom: 1.5rem;
}

.section-clean {
  padding-top: 0 !important;
}

.grid-apps {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

.app-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.app-card-header h3 {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  margin-bottom: 1rem !important;
  margin-top: 0;
  line-height: 1.1;
  color: #ffffff;
}

.app-icon {
  font-size: 2rem;
}

.app-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.icon-blue {
  color: var(--accent-blue);
}
.icon-gold {
  color: var(--accent-gold);
}

.app-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
  border: 1px solid transparent;
}

.badge-gold {
  background: rgba(250, 204, 21, 0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.badge-blue {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.support-section {
  margin-top: 4rem;
}

.support-text {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 700px;
}

.link-inline {
  color: var(--accent-blue);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.link-inline:hover {
  color: #fff;
}

/* ============================================
   MOBILE OPTIMIERUNG – PREMIUM UX
   Für Smartphones unter 480px
   ============================================ */

@media (max-width: 480px) {
  /* --- HEADLINE: Mehr Punch, engerer Zeilenabstand --- */
  h1 {
    font-size: clamp(1.8rem, 11vw, 2.8rem) !important;
    line-height: 1.0;
    letter-spacing: -0.02em;
  }

  /* --- SPECIAL-BOX: Größerer Text für bessere Lesbarkeit --- */
  .special-box {
    padding: 1.2rem 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .special-box p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* --- BUTTONS: Mehr Abstand, größerer Primary CTA --- */
  .hero-btn-group {
    margin-top: 2rem;
    gap: 0.75rem;
  }

  .hero-btn-group .btn {
    padding: 1.1rem 1.5rem;
    font-size: 0.95rem !important;
    min-height: 68px;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
  }

  .hero-btn-group .btn-outline {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem !important;
    min-height: 62px;
    letter-spacing: 2px;
  }

  .btn-subtext {
    font-size: 0.7rem !important;
    margin-top: 3px;
  }

  /* --- HERO INTRO: Kompakter --- */
  .hero-intro {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-intro p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* --- TAGLINE: Etwas kleiner --- */
  .mono {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  /* --- CARDS: Kompakteres Padding --- */
  .card {
    padding: 1.5rem;
  }

  .kippl-card h3 {
    font-size: 0.9rem;
  }

  /* --- FAQ: Bessere Touch-Targets --- */
  details.faq-item {
    padding: 1.2rem;
  }

  summary.faq-question {
    font-size: 1rem;
    padding-right: 1.5rem;
  }

  /* --- FOOTER: Kompakter --- */
  footer {
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .footer-links {
    gap: 1.5rem;
  }

  /* --- SPEED DIAL: Kleinerer Button auf Mobile --- */
  .speed-dial-container {
    bottom: 20px;
    right: 20px;
  }

  .speed-dial-main {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .speed-dial-option {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   EXTRA SMALL SCREENS (iPhone SE, Mini)
   Unter 375px
   ============================================ */

@media (max-width: 375px) {
  h1 {
    font-size: clamp(1.6rem, 10vw, 2.4rem) !important;
  }

  .hero-btn-group .btn,
  .hero-btn-group .btn-outline {
    font-size: 0.8rem !important;
    letter-spacing: 1px;
    padding: 0.9rem 1rem;
  }

  .special-box p {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* Fix für konsistenten Abstand nach Header */
@media (max-width: 768px) {
  main > section:first-child {
    padding-top: 0.5rem !important;
  }
  
  main > section:first-child .mono {
    margin-top: 0;
  }
}

/* ============================================
   DATENSCHUTZ-SEITE STYLES
   ============================================ */

/* Kleinere Überschrift für Datenschutz-Seite */
.privacy-title {
  font-size: clamp(1.8rem, 5vw, 3rem) !important;
  max-width: 100%;
}

/* Text-Container: Linksbündig, identisch mit Überschrift */
.privacy-content {
  max-width: 800px;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Legal Content (Impressum) - gleiche Ausrichtung wie Datenschutz */
.legal-content {
  max-width: 800px;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-content a {
  color: var(--accent-blue);
  text-decoration: underline;
}

/* ============================================
   KONSISTENTE SECTION-ABSTÄNDE
   ============================================ */

   section#leistungen {
    margin-top: 4rem !important;
    padding-top: 0 !important;
  }
  
  section#faq {
    margin-top: 4rem !important;
    padding-top: 0 !important;
  }
  