/* =============================== */
/* 1. HEADER GLOBAL (Desktop Basis) */
/* =============================== */

/* Header-Leiste fix oben, sauberer Hintergrund */
#masthead {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: #FAFAFD !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07) !important; /* dezente Linie unten */
  z-index: 9999 !important;
}

/* Astra-Header-Row kompakt halten */
#masthead .ast-builder-grid-row {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  align-items: center !important;
  min-height: 56px !important; /* Desktop-Höhe */
}

/* Menü-Links eng wie Apple */
.main-header-menu > li > a {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  line-height: 1.1 !important;
  font-weight: 500 !important;
  background: transparent !important;
  color: #000 !important;
}

/* Logo-Block */
.site-branding {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 170px !important; /* dein Feintuning */
  background: transparent !important;
}

/* Logo selbst nicht größer ziehen */
.site-branding img {
  max-height: 45px !important;
  height: auto !important;
  width: auto !important;
}

/* Alle Container im Header ohne extra Innenabstand */
.site-primary-header-wrap,
.ast-main-header-wrap,
.main-header-bar .ast-container,
.ast-builder-grid-row,
.site-header-primary-section-left,
.site-header-primary-section-right,
.ast-builder-layout-element,
.ast-primary-header-bar,
.ast-header-social-1-wrap {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Social Icons im Header desktop normal zeigen */
.ast-header-social-1-wrap a {
  background: transparent !important;
  line-height: 1 !important;
}

/* ================================== */
/* 2. TABLET / MOBILE HEADER REGLER   */
/* ================================== */

@media (max-width: 1024px) {

  /* etwas weniger linker Push vom Logo, weil sonst zu weit rechts */
  .site-branding {
    padding-left: 20px !important;
  }

  /* rechte Seite (Menü/Burger/Icon-Leiste) leicht einrücken */
  .site-header-primary-section-right {
    margin-right: 10px !important;
  }

  #masthead .ast-builder-grid-row {
    min-height: 52px !important; /* Tablet-Höhe */
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}

@media (max-width: 768px) {

  /* Header-Hintergrund auf Mobile bleibt voll solide (kein Blur, kein Transparent-Mix) */
  #masthead {
    background: #FAFAFD !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.07) !important;
  }

  /* Headerhöhe auf Handy schlank halten */
  #masthead .ast-builder-grid-row {
    min-height: 48px !important; /* Mobile-Höhe */
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  /* Social Icons im Header verstecken auf Handy (die ziehen Höhe) */
  .ast-header-social-1-wrap {
    display: none !important;
  }

  /* Kein extra Padding oben/unten an den Sektionen im Header */
  .site-primary-header-wrap,
  .ast-main-header-wrap,
  .site-header-primary-section-left,
  .site-header-primary-section-right {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* ====================================================== */
/* 3. SEITENINHALT UNTER DEN FIXED HEADER RUNTERSCHIEBEN  */
/* ====================================================== */

/* Deine erste Section (Hero = Cover mit .hero-section drin)
   bekommt oben Luft, damit der feste Header nichts überlappt */
.hero-section,
.wp-block-cover:first-of-type {
  margin-top: 50px !important;
}

/* Auf Handy der Header ist flacher -> weniger Abstand nötig */
@media (max-width: 768px) {
  .hero-section,
  .wp-block-cover:first-of-type {
    margin-top: 30px !important;
  }
}

/* ====================================================== */
/* 4. HERO SECTION RESPONSIVE (Watch + Text Bereich)      */
/* ====================================================== */

/* Desktop-Layout bleibt wie du gebaut hast */
body .hero-section {
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
  padding: 0rem 8rem !important; /* Desktop Innenabstand so lassen wie bei dir */
  color: #000 !important;
}

/* Überschrift im Hero */
body .hero-section h1 {
  font-size: 53px !important;
  line-height: 1.1 !important;
  color: #000 !important;
  margin-bottom: 1.2rem !important;
  text-align: left !important;
}

/* Absatztexte im Hero */
body .hero-section p {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  color: #000 !important;
  text-align: left !important;
  margin-bottom: 1rem !important;
}

/* Buttonstyle aus dem Editor respektieren,
   wir stellen nur sicher er bleibt inline schön */
body .hero-section .wp-block-button__link {
  border-radius: 30px !important;
  font-size: 15px !important;
  padding: 10px 15px !important;
  text-align: center !important;
}

/* Tablet Tweaks */
@media (max-width: 1024px) {

  body .hero-section {
    padding: 0rem 4rem !important;     /* weniger Rand links/rechts */
    grid-template-columns: 1fr 45% !important;
  }

  body .hero-section h1 {
    font-size: 42px !important;
    text-align: left !important;
  }

  body .hero-section p {
    font-size: 0.95rem !important;
    text-align: left !important;
  }
}

/* Mobile: Watch zuerst, dann Text, zentriert */
@media (max-width: 768px) {

  body .hero-section {
    display: flex !important;
    flex-direction: column-reverse !important; /* Watch oben, Text danach */
    align-items: center !important;
    text-align: center !important;
    padding: 2rem 1.5rem !important;
  }

  body .hero-section h1 {
    font-size: 34px !important;
    margin-top: 1.2rem !important;
    text-align: center !important;
  }

  body .hero-section p {
    font-size: 0.9rem !important;
    margin-bottom: 1.2rem !important;
    text-align: center !important;
  }

  /* Watch-Bild (das img im Media/Text Block) */
  body .hero-section img {
    width: 80% !important;
    height: auto !important;
    margin: 0 auto 1rem auto !important;
  }

  /* Button unter dem Text schön fingerfreundlich */
  body .hero-section .wp-block-button__link {
    font-size: 15px !important;
    padding: 14px 30px !important;
    border-radius: 30px !important;
    display: inline-block !important;
  }
}
/* === Tablet-Fix: Text exakt unter der Watch mittig zentrieren === */
@media (max-width: 1024px) and (min-width: 769px) {
  body .hero-section {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  body .hero-section .wp-block-media-text__content {
    max-width: 700px !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  body .hero-section h1,
  body .hero-section p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .hero-section .wp-block-buttons {
    justify-content: center !important;
  }

  /* Bild bleibt gleich */
  body .hero-section img {
    width: 80% !important;
    height: auto !important;
    margin: 0 auto 1rem auto !important;
  }
}

/* ====================================================== */
/* 5. THREE-COLUMN SECTION (unsere 3 Bausteine Google/Apple/Meta)
      -> alles mittig, gleiche Schrift-Optik wie Hero      */
/* ====================================================== */

.three-column-section {
  background-color: #FAFAFD !important;
  padding: 3rem 1.5rem 2rem 1.5rem !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 2rem !important;
  text-align: center !important;
  color: #000 !important;
  font-family: inherit !important;
}

/* einzelne Spalten / Cards */
.three-column-section .column-card {
  flex: 1 1 280px !important;      /* min Breite */
  max-width: 360px !important;     /* nicht zu breit */
  background: #FFFFFF !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 16px !important;
  padding: 1.5rem 1.25rem !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06) !important;
  text-align: center !important;
}

/* Icon oben in der Card */
.three-column-section .column-card img,
.three-column-section .column-card svg {
  display: block !important;
  margin: 0 auto 1rem auto !important;
  width: 48px !important;
  height: 48px !important;
}

/* Titel in der Card */
.three-column-section .column-card h3 {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #000 !important;
  margin: 0 0 0.5rem 0 !important;
  line-height: 1.3 !important;
  text-align: center !important;
}

/* Text in der Card */
.three-column-section .column-card p {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  color: #31373e !important;
  margin: 0 !important;
  text-align: center !important;
}

/* Mobile spacing für die 3er Sektion */
@media (max-width: 768px) {
  .three-column-section {
    padding: 2rem 1rem 2rem 1rem !important;
    gap: 1.5rem !important;
  }

  .three-column-section .column-card {
    max-width: 100% !important;
  }
}
/* === THREE-COLUMN-SECTION | Apple-Style mit Zentrierung === */
.three-column-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 32px;
  padding: 80px 10%;
  background: linear-gradient(180deg, #FAFAFD 0%, #F2F2F5 100%);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif !important;
  text-align: center;
}

/* === Einzelne Spalten === */
.three-column-section .column {
  flex: 1;
  background: rgba(250, 250, 253, 0.65);
  backdrop-filter: blur(18px) brightness(1.07);
  -webkit-backdrop-filter: blur(18px) brightness(1.07);
  border-radius: 24px;
  padding: 48px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* === Hover-Effekt === */
.three-column-section .column:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

/* === Icons === */
.three-column-section .column img {
  width: 64px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}

/* === Überschriften === */
.three-column-section .column h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0A58DC;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

/* === Texte === */
.three-column-section .column p {
  font-size: 1rem;
  color: #31373e;
  line-height: 1.6;
  max-width: 85%;
  margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .three-column-section {
    flex-direction: column;
    gap: 24px;
    padding: 60px 6%;
  }

  .three-column-section .column {
    padding: 36px 24px;
  }

  .three-column-section .column h3 {
    font-size: 1.3rem;
  }

  .three-column-section .column p {
    font-size: 0.95rem;
    max-width: 95%;
  }

  .three-column-section .column img {
    width: 56px;
    margin-bottom: 18px;
  }
}

/* === Extra kleiner Bildschirm === */
@media (max-width: 480px) {
  .three-column-section {
    padding: 40px 5%;
    gap: 20px;
  }

  .three-column-section .column {
    padding: 28px 20px;
  }

  .three-column-section .column h3 {
    font-size: 1.15rem;
  }

  .three-column-section .column p {
    font-size: 0.9rem;
  }

  .three-column-section .column img {
    width: 48px;
  }
}
/* === Service Box Design mit Glanz, Schatten und Mobile Bounce === */
.service-box {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  transform: translateY(0);
  cursor: pointer;
  will-change: transform, box-shadow;
}

/* Hüpfen bei Hover (Desktop) */
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Hüpfen bei Touch (Mobilgeräte) */
.service-box:active {
  transform: translateY(-8px) scale(0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Bilder */
.service-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

/* sanfter Schatten unter Bildern */
.service-box img {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* Titel- und Textbereich */
.service-box h3, 
.service-box p {
  background: linear-gradient(135deg, #0A58DC 0%, #FAFAFD 100%);
  padding: 20px 16px;
  border-radius: 0 0 14px 14px;
  color: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Glanzeffekt */
.service-box h3::before, 
.service-box p::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}

.service-box:hover h3::before, 
.service-box:hover p::before {
  left: 125%;
}

/* Titel */
.service-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

/* Absatz */
.service-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  background: linear-gradient(135deg, #FAFAFD 0%, #FFFFFF 100%);
  border-top: 1px solid #eee;
}

/* Optional: leichtes Glühen beim Klicken */
.service-box:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 88, 220, 0.3);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .service-box {
    margin-bottom: 20px;
  }
}
/* === INFINITY PREMIUM – OUR SERVICES (EDEL DESIGN) === */

/* --- Section Layout --- */
.service-section {
  background: #FAFAFD !important;
  padding: 100px 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* --- Jede Box --- */
.service-box {
  max-width: 360px !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.35s ease !important;
}

.service-box:hover {
  transform: translateY(-10px) scale(1.03) !important;
  box-shadow: 0 16px 32px rgba(10, 88, 220, 0.25) !important;
}

/* --- Bild --- */
.service-box img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* --- Textbereich unten --- */
.service-content {
  background: linear-gradient(145deg, #F0F4F9 0%, #31373E 100%) !important;
  padding: 30px 25px !important;
  text-align: center !important;
  color: #ffffff !important;
  position: relative !important;
}

/* --- Glanzeffekt --- */
.service-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 70%);
  transform: rotate(25deg);
  opacity: 0.3;
}

/* --- Hover Glanzbewegung --- */
.service-box:hover .service-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineSlide 1.2s ease;
}

@keyframes shineSlide {
  from {
    left: -100%;
  }
  to {
    left: 120%;
  }
}

/* --- Titel --- */
.service-content h3 {
  font-size: 21px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  color: #ffffff !important;
}

/* --- Text --- */
.service-content p {
  font-size: 15px !important;
  color: #e3e7ec !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* --- Klick-Animation für Mobile --- */
@media (max-width: 768px) {
  .service-box:active {
    transform: scale(0.97) !important;
  }
}
/* === Infinity Premium: Rezensionen Section – Fix === */

div.wp-block-group.alignfull.rezensionen-section {
  background: linear-gradient(180deg, #FAFAFD 0%, #F3F4F7 100%) !important;
  padding: 120px 8% !important;
  text-align: center !important;
  position: relative !important;
  z-index: 2 !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255,255,255,0.4) !important;
}

/* Avatar-Bild */
.rezensionen-section img {
  width: 90px !important;
  height: 90px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  margin-bottom: 25px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
  transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out !important;
}
.rezensionen-section img:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 12px 26px rgba(0,0,0,0.15) !important;
}

/* Zitattext */
.rezensionen-section p.has-text-align-center {
  color: #31373E !important;
  font-size: 22px !important;
  font-style: italic !important;
  font-family: "Inter", sans-serif !important;
  line-height: 1.7 !important;
  max-width: 800px !important;
  margin: 0 auto 25px auto !important;
  background: linear-gradient(145deg, #ffffff 0%, #f1f2f5 100%) !important;
  border-radius: 14px !important;
  padding: 35px 25px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.rezensionen-section p.has-text-align-center:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15) !important;
}

/* Name unter dem Zitat */
.rezensionen-section p strong {
  color: #0A58DC !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  display: inline-block !important;
  margin-top: 15px !important;
  letter-spacing: 0.3px !important;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .rezensionen-section {
    padding: 80px 1.5rem !important;
  }
  .rezensionen-section p.has-text-align-center {
    font-size: 18px !important;
    padding: 25px 20px !important;
  }
}
/* === Über uns – Sichtbar machen & modern stylen === */
.ueber-uns-section {
  position: relative;
  z-index: 2 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #F6F7F7 100%);
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: visible !important;
}

/* Boxen-Design für Apple-Style */
.ueber-uns-section .text-box {
  max-width: 750px;
  background: linear-gradient(145deg, #ffffff, #dadada);
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  font-family: "Inter", sans-serif;
}

.ueber-uns-section .text-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Text-Styling */
.ueber-uns-section p {
  color: #202124;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.ueber-uns-section strong {
  color: #0A58DC;
  font-weight: 600;
}

/* Schluss-Satz */
.ueber-uns-section .signature {
  background: linear-gradient(145deg, #0A58DC, #2d6ff7);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px rgba(10,88,220,0.25);
}

.ueber-uns-section .signature strong {
  color: #fff !important;
}

/* === Responsive Fix für Mobile === */
@media (max-width: 768px) {
  .ueber-uns-section {
    padding: 70px 15px;
    gap: 20px;
  }

  .ueber-uns-section .text-box {
    padding: 20px;
    box-shadow: 0 5px 14px rgba(0,0,0,0.07);
  }

  .ueber-uns-section p {
    font-size: 16px;
    line-height: 1.5;
  }
}
/* Überschrift in der Über-uns-Section blau färben */
.ueber-uns-section h2,
.ueber-uns-section h3,
.ueber-uns-section h1 {
  color: #0A58DC !important;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 30px;
}
/* === Über-uns Bild Styling === */
.ueber-uns-section img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.6s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05) saturate(1.05);
}

/* Beim Hover leicht liften & leuchten */
.ueber-uns-section img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1) contrast(1.1);
}

/* Wenn das Bild rechts ist (z. B. Media-Text Block) */
.wp-block-media-text.ueber-uns-section .wp-block-media-text__media img {
  max-width: 95%;
  margin-left: auto;
  border-radius: 18px;
}

/* Mobile Ansicht – Bild oben, mit mehr Raum */
@media (max-width: 768px) {
  .ueber-uns-section img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }
}
/* === WARUM SECTION / Infinity Premium Elegant Version === */
.warum-section {
  background: linear-gradient(135deg, #fafafa, #eef1f4);
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Überschrift in stylischer Box */
.warum-section h2 {
  display: inline-block;
  background: linear-gradient(135deg, #0A58DC, #4a6fdc);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.3px;
  padding: 18px 50px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(10, 88, 220, 0.25);
  margin-bottom: 70px;
  text-transform: none;
  transition: all 0.3s ease;
}

.warum-section h2:hover {
  box-shadow: 0 10px 35px rgba(10, 88, 220, 0.4);
  transform: translateY(-3px);
}

/* Spaltencontainer */
.warum-section .wp-block-columns {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}

/* Boxen */
.warum-section .wp-block-column {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 360px;
  transition: all 0.35s ease;
  text-align: center;
}

.warum-section .wp-block-column:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(10, 88, 220, 0.15);
}

/* Icons */
.warum-section img {
  width: 70px !important;
  height: 70px !important;
  margin-bottom: 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.warum-section img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(10, 88, 220, 0.3));
}

/* Box-Titel */
.warum-section h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0A58DC;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.warum-section h3:hover {
  color: #31373E;
}

/* Text */
.warum-section p {
  font-size: 17px;
  color: #4A4A4A;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 320px;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .warum-section {
    padding: 80px 25px;
  }

  .warum-section h2 {
    font-size: 28px;
    padding: 14px 35px;
    margin-bottom: 50px;
  }

  .warum-section .wp-block-columns {
    flex-direction: column;
    gap: 30px;
  }

  .warum-section .wp-block-column {
    max-width: 100%;
  }
}
fr06.hosted-eun.bcld.webex.com
/* === CONTACT SECTION / Infinity Premium Blue-to-Silver === */
.contact-section,
.wp-block-group.contact-section {
  background: linear-gradient(135deg, #0A58DC 0%, #4A6FDC 40%, #31373E 100%) !important;
  color: #ffffff !important;
  padding: 120px 40px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Glanz / Lichtschein */
.contact-section::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 70%);
  pointer-events: none;
}

/* Überschrift */
.contact-section h2 {
  font-size: 42px !important;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-transform: none;
}

/* Textabsätze */
.contact-section p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

/* Hotline */
.contact-section .hotline {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(10,88,220,0.3);
}

/* Öffnungszeiten */
.contact-section .zeiten {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 45px;
}

/* Button */
.contact-section .wp-block-button__link {
  background: #ffffff !important;
  color: #0A58DC !important;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.contact-section .wp-block-button__link:hover {
  background: #f3f5fa !important;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 25px !important;
  }

  .contact-section h2 {
    font-size: 30px !important;
  }

  .contact-section .hotline {
    font-size: 26px;
  }
}
/* === Infinity Premium Contact Boxes Fix === */
.contact-section a[href^="mailto:"],
.contact-section a[href^="tel:"],
.contact-section .wp-block-jetpack-email a,
.contact-section .wp-block-jetpack-phone a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none !important;
  padding: 14px 32px;
  margin: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 24px rgba(10, 88, 220, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
}

/* Hover-Effekt */
.contact-section a[href^="mailto:"]:hover,
.contact-section a[href^="tel:"]:hover {
  background: #ffffff;
  color: #0A58DC !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.35);
}

/* Zentrierung */
.contact-section .wp-block-jetpack-contact-info,
.contact-section .jetpack-contact-info-block {
  text-align: center;
  margin-top: 25px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section a[href^="mailto:"],
  .contact-section a[href^="tel:"] {
    display: block;
    margin: 12px auto;
    width: fit-content;
  }
}
/* === ICONS neben Telefon & E-Mail === */

/* Gemeinsame Icon-Basis */
.contact-section a[href^="mailto:"],
.contact-section a[href^="tel:"] {
  position: relative;
  padding-left: 50px; /* Platz für Icon links */
}

/* 📧 E-Mail Icon */
.contact-section a[href^="mailto:"]::before {
  content: "✉️";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.9;
}

/* 📞 Telefon Icon */
.contact-section a[href^="tel:"]::before {
  content: "📞";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Optional: edler weißer Glow-Effekt um Icons */
.contact-section a[href^="mailto:"]::before,
.contact-section a[href^="tel:"]::before {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

/* Hover-Effekt: Icons färben sich Infinity-Blau */
.contact-section a[href^="mailto:"]:hover::before,
.contact-section a[href^="tel:"]:hover::before {
  color: #0A58DC;
  text-shadow: 0 0 10px rgba(10, 88, 220, 0.4);
}
/* === Infinity Premium Contact Section – Full Box Design Update === */

/* Allgemeines Layout für alle Kontaktfelder */
.contact-section a[href^="mailto:"],
.contact-section a[href^="tel:"],
.contact-section .contact-address,
.contact-section .contact-hours {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none !important;
  padding: 14px 32px 14px 58px; /* Platz für Icon links */
  margin: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 24px rgba(10, 88, 220, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* Hover Effekt */
.contact-section a[href^="mailto:"]:hover,
.contact-section a[href^="tel:"]:hover,
.contact-section .contact-address:hover,
.contact-section .contact-hours:hover {
  background: #ffffff;
  color: #0A58DC !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.35);
}

/* Icons links neben Text */
.contact-section a[href^="mailto:"],
.contact-section a[href^="tel:"],
.contact-section .contact-address,
.contact-section .contact-hours {
  --icon: ""; /* Standard-Icon Variable */
}

/* Standard Emoji-Icons (wenn kein SVG gesetzt) */
.contact-section a[href^="mailto:"]::before {
  content: var(--icon, "✉️");
}

.contact-section a[href^="tel:"]::before {
  content: var(--icon, "📞");
}

.contact-section .contact-address::before {
  content: var(--icon, "📍");
}

.contact-section .contact-hours::before {
  content: var(--icon, "⏰");
}

/* Gemeinsames Icon-Design */
.contact-section a[href^="mailto:"]::before,
.contact-section a[href^="tel:"]::before,
.contact-section .contact-address::before,
.contact-section .contact-hours::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  opacity: 0.95;
  transition: all 0.3s ease;
}

/* Hover Icons */
.contact-section a[href^="mailto:"]:hover::before,
.contact-section a[href^="tel:"]:hover::before,
.contact-section .contact-address:hover::before,
.contact-section .contact-hours:hover::before {
  color: #0A58DC;
  text-shadow: 0 0 10px rgba(10, 88, 220, 0.4);
}

/* Zentrierung */
.contact-section .wp-block-jetpack-contact-info,
.contact-section .jetpack-contact-info-block {
  text-align: center;
  margin-top: 25px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section a[href^="mailto:"],
  .contact-section a[href^="tel:"],
  .contact-section .contact-address,
  .contact-section .contact-hours {
    display: block;
    margin: 12px auto;
    width: fit-content;
  }
}
/* === Infinity Premium Contact Section – SVG Icon Replacements === */

/* 📧 E-Mail Icon (SVG ersetzen) */
.contact-section a[href^="mailto:"]::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("https://infinity-premium.de/wp-content/uploads/2025/11/1-1.png") no-repeat center center;
  background-size: contain;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  transition: all 0.3s ease;
}

/* 📞 Telefon Icon (SVG ersetzen) */
.contact-section a[href^="tel:"]::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("https://infinity-premium.de/wp-content/uploads/2025/11/2.png") no-repeat center center;
  background-size: contain;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  transition: all 0.3s ease;
}

/* 📍 Adresse Icon (SVG ersetzen) */
.contact-section .contact-address::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("https://infinity-premium.de/wp-content/uploads/2025/11/3.png") no-repeat center center;
  background-size: contain;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  transition: all 0.3s ease;
}

/* ⏰ Öffnungszeiten Icon (SVG ersetzen) */
.contact-section .contact-hours::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("https://infinity-premium.de/wp-content/uploads/2025/11/4.png") no-repeat center center;
  background-size: contain;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  transition: all 0.3s ease;
}

/* Hover-Effekt: Icons färben sich Infinity-Blau */
.contact-section a[href^="mailto:"]:hover::before,
.contact-section a[href^="tel:"]:hover::before,
.contact-section .contact-address:hover::before,
.contact-section .contact-hours:hover::before {
  filter: drop-shadow(0 0 8px rgba(10, 88, 220, 0.7));
  opacity: 1;
}
/* === Infinity Premium Tarife === */

.pricing-section {
  background: linear-gradient(135deg, #0A58DC 0%, #4A6FDC 40%, #31373E 100%);
  padding: 120px 60px;
  text-align: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Glanzeffekt */
.pricing-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

/* Titelbereich */
.pricing-header {
  margin-bottom: 60px;
}

.pricing-title-main {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.pricing-description {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* Grid */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Karten */
.pricing-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  width: 300px;
}

.pricing-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255,255,255,0.2);
}

/* Titel & Subline */
.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.card-subline {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 10px;
}

/* Preis */
.card-price {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Leistungen */
.card-features p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin: 6px 0;
}

.card-features p::before {
  content: "✓ ";
  color: #00ffb3;
  font-weight: 600;
}

/* Button */
.card-button .wp-block-button__link {
  background: #ffffff;
  color: #0A58DC;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255,255,255,0.25);
}

.card-button .wp-block-button__link:hover {
  background: #f3f5fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.35);
}

/* Mobile Fix + Überschrift sichtbar */
@media (max-width: 768px) {
  .pricing-section {
    padding: 100px 25px 80px;
  }

  .pricing-title-main {
    font-size: 34px;
  }

  .pricing-card {
    width: 100%;
    margin-bottom: 30px;
  }

  body.page-id-600 .site-content {
    padding-top: 50px !important;
  }
}
/* === Infinity Premium – Formularseite (post-755) === */

/* Abstand unter Menü/Header */
.page-id-755 .wp-block-group.header-cover {
  margin-top: 120px !important;
}

/* Formular-Container */
.page-id-755 .wp-block-jetpack-contact-form {
  max-width: 820px;
  margin: 0 auto !important;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Überschrift + Beschreibung */
.page-id-755 .wp-block-group h2 {
  text-align: center;
  color: #0A58DC;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}
.page-id-755 .wp-block-group p {
  text-align: center;
  color: #444;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Eingabefelder */
.page-id-755 .wp-block-jetpack-contact-form input[type="text"],
.page-id-755 .wp-block-jetpack-contact-form input[type="email"],
.page-id-755 .wp-block-jetpack-contact-form input[type="tel"],
.page-id-755 .wp-block-jetpack-contact-form textarea {
  width: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: #222;
  background: #fff;
  transition: all 0.3s ease;
}
.page-id-755 .wp-block-jetpack-contact-form input:focus,
.page-id-755 .wp-block-jetpack-contact-form textarea:focus {
  border-color: #0A58DC !important;
  box-shadow: 0 0 0 3px rgba(10, 88, 220, 0.15);
  outline: none;
}

/* Checkbox-Optionen */
.page-id-755 .wp-block-jetpack-options p.contact-form-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.page-id-755 .wp-block-jetpack-options p.contact-form-field:hover {
  background: #f5f8ff;
  border-color: #0A58DC;
  box-shadow: 0 3px 10px rgba(10, 88, 220, 0.15);
}
.page-id-755 .wp-block-jetpack-options input[type="checkbox"] {
  transform: scale(1.25);
  accent-color: #0A58DC;
  margin-top: 3px;
  cursor: pointer;
}
.page-id-755 .wp-block-jetpack-options label {
  font-size: 15px;
  color: #222;
  font-weight: 500;
  line-height: 1.5;
}
.page-id-755 .wp-block-jetpack-options input[type="checkbox"]:checked + label {
  color: #0A58DC;
  font-weight: 600;
}

/* Fehler-Hinweise */
.page-id-755 .contact-form__input-error,
.page-id-755 .contact-form__error {
  background: #fff5f5 !important;
  border: 1px solid #ffcccc !important;
  color: #a60000 !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  margin-top: 12px !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1) !important;
}

/* Submit-Button */
.page-id-755 button[type="submit"],
.page-id-755 .wp-block-button__link {
  background: #0A58DC !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  border-radius: 50px !important;
  padding: 14px 36px !important;
  border: none !important;
  transition: all 0.3s ease !important;
  display: block;
  margin: 30px auto 0;
}
.page-id-755 button[type="submit"]:hover {
  background: #003bb3 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 88, 220, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .page-id-755 .wp-block-jetpack-contact-form {
    padding: 25px 20px;
  }
}
/* Titel mittig */
.entry-content h2.wp-block-heading {
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    display: block;
}

/* Button "Zahlungspflichtig bestellen" mittig */
.wp-block-button.alignleft {
    text-align: center !important;
    width: 100% !important;
}

.wp-block-button.alignleft .wp-block-button__link {
    display: inline-block !important;
    margin: 20px auto 0 auto !important;
}
/* === Infinity Premium Header Social Icons – sichtbar & edel auch auf Mobile === */

/* Standard Reset: zeig Social Icons auch auf Mobile */
.header-social-inner-wrap,
.ast-header-social-1-wrap,
.ast-hide-on-mobile {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Mobile Layout: zentrieren unter Menü */
@media (max-width: 768px) {
  .ast-header-social-1-wrap {
    display: flex !important;
    justify-content: center !important;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
  }

  .header-social-inner-wrap a {
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    transition: all 0.3s ease;
  }

  .header-social-inner-wrap a:hover {
    background: #ffffff;
    color: #0A58DC !important;
    transform: translateY(-3px);
  }

  /* Optional: Animation beim Laden */
  .header-social-inner-wrap a {
    animation: fadeInUp 0.6s ease-in-out;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Einheitlicher Stil auf Desktop */
.header-social-inner-wrap a {
  transition: all 0.3s ease;
}
.header-social-inner-wrap a:hover {
  transform: translateY(-3px);
  color: #0A58DC !important;
}
/* --- Abstand für den Tarife-Header unter fixiertem Menü --- */
.pricing-section {
  padding-top: 120px !important;  /* Abstand nach oben vergrößern */
}

/* Falls du per Menü zum #tarife-Anker springst */
#tarife,
[id*="tarif"] {
  scroll-margin-top: 120px !important;
}
