/*
Theme Name: Bridge Child
Theme URI: http://demo.qodeinteractive.com/bridge/
Description: A child theme of Bridge Theme
Author: Qode Interactive
Author URI: http://www.qodethemes.com/
Version: 1.0.0
Template: bridge
*/

/* Load parent theme CSS (prefer enqueue in functions.php; kept here for compatibility) */
@import url("../bridge/style.css");

.neg-intro {margin-top:-190px;}

.dis-none {display:none;}

ul {margin-left:20px;}

@media only screen and (max-width: 766px) {
 .neg-intro {display:none;}
}

/* —————————————————————————————————————————
   CHECKLIST
   ————————————————————————————————————————— */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;

  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;

  /* Gradient Hintergrund */
  background: linear-gradient(135deg, #040466, #ffffff);
  background-size: 200% 200%;

  /* Animation */
  animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.slab-cta {
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #0f0f2d;
  border-bottom: 1px solid #0f0f2d;
}

.slab-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.slab-cta__text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f0f2d;
  margin: 0;
}

.slab-cta__arrow {
  width: 48px;
  height: 48px;
  color: #0f0f2d;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}


/* —————————————————————————————————————————
   REFERENCES BLOCK
   ————————————————————————————————————————— */
.references-block { text-align: center; padding: 60px 20px 25px 20px; border-radius: 16px;
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 19%, #e6ecff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 19%, #e6ecff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 19%, #e6ecff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6ecff', GradientType=0);
}
.references-block h2 { font-size: 26px; margin-bottom: 15px; color: #2f4fa3; }
.references-block p { font-size: 18px; margin-bottom: 25px; color: #333; }
.btn-ref { display: inline-block; background: #2f4fa3; color: #fff; padding: 14px 28px; border-radius: 50px; font-size: 16px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.btn-ref:hover { background: #223a7a; transform: translateY(-2px); }

/* —————————————————————————————————————————
   FAQ
   ————————————————————————————————————————— */
.faq details { border: 1px solid #e6e8f0; border-radius: 10px; padding: 14px 16px; margin: 10px 0; background: #fff; }
.faq summary { cursor: pointer; font-weight: 700; color: #1f2a44; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; float: right; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details div { margin-top: 8px; color: #2d3345; line-height: 1.6; }

/* —————————————————————————————————————————
   ICON BOX
   ————————————————————————————————————————— */
.icon-box { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: #fff; color: #2f4fa3; border-radius: 6px; margin-right: 10px; }

/* —————————————————————————————————————————
   RESPONSIVE CONTAINERS
   ————————————————————————————————————————— */
@media only screen and (max-width: 890px) {
  .boxed div.section .section_inner,
  .carousel-inner .slider_content_outer,
  .container_inner,
  .container_inner nav.content_menu,
  .elementor-container .elementor-widget-wrap > .qode_elementor_container_inner,
  .elementor-row .elementor-widget-wrap > .qode_elementor_container_inner,
  .footer_bottom_border.in_grid,
  .footer_top_border.in_grid,
  .full_width .parallax_content,
  .qode_elementor_container_inner,
  .steps_holder_inner,
  .title_border_in_grid_holder,
  div.grid_section .section_inner,
  div[data-element_type="container"].qode_elementor_container_inner,
  nav.content_menu ul { width: 98% !important; }
}

/* —————————————————————————————————————————
   ACCESSIBILITY & FOCUS STATES
   ————————————————————————————————————————— */
/* FIXED: corrected selector and missing semicolon; also target the button itself */
.qbutton.large.center.white.default:focus,
.qbutton.large.center.white.default a:focus {
  color: #ffc830;
  text-decoration: underline;
  text-decoration-color: var(--highcontrast-white, var(--color-1));
  text-decoration-thickness: 0.125em;
}

.wpb_single_image a:focus-visible,
footer a:focus-visible,
p a:focus-visible,
nav.main_menu > ul > li > a:focus-visible {
  outline: 0.125rem solid #db1212;
  outline-offset: 0.15rem;
  -moz-outline-radius: 2px;
}

/* —————————————————————————————————————————
   HERO / INTRO
   ————————————————————————————————————————— */
.neg-con { margin-top: -380px; }
.neg-con h2 { font-size: 85px; line-height: 85px; color: #181b28; font-weight: 700; font-family: 'd7 - Figtree-Black', sans-serif; }
.over-t p { color: #181b28; font-size: 22px; }
.wa { padding-top: 0; }
header.sticky .wa { padding-top: 12px; }
@media (max-width: 800px) { .wa { display: none; } }
.under { display: inline; background-image: url(https://www.dailyseven.de/wp-content/uploads/2023/08/underline.svg); background-repeat: no-repeat; background-position: bottom; background-size: contain; }
.round { box-shadow: 0px 0px 62px 0px rgba(10, 51, 80, 0.1); transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s; padding-top: 15px; padding-right: 15px; background-color: #ffffff; border-radius: 10px; }

#background-video { margin: 0 auto; width: 100%; display: block; object-fit: cover; z-index: -1; }

/* Elegant promo */
.elegant-promo-box .elegant-promo-box-description-wrapper {
  display: -webkit-flex; display: -ms-flexbox; display: flex; width: 70%;
  -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
  text-align: center; padding: 15px 20px;
}
.awesome-iframe { display: none !important; }
.elegant-promo-box { -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; min-height: 300px; }
@media (max-width: 1000px) {
  .elegant-promo-box .elegant-promo-box-image-wrapper { display: none; width: 40%; }
  .elegant-promo-box { -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; min-height: 200px; }
}
.elegant-promo-box .elegant-promo-box-image-wrapper img { transition: all .5s ease; will-change: transform; top: 10%; margin-top: 104px; }

.round .vc_column_container { padding-left: 10px !important; padding-right: 10px !important; }
.elegant-image-hotspot-container .elegant-image-hotspot-items .elegant-image-hotspot-item .elegant-image-hotspot-tooltip { max-width: 476px !important; }

/* Background gradient */
.bg2 {
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #e9edfe 50%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #e9edfe 50%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #e9edfe 50%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}

.leistung_item { color: #fff; background-color: rgba(255,255,255,.1); border-radius: 0.7rem; margin-bottom: 0.7rem; margin-right: 0.7rem; padding: 0.6rem 0.8rem; display: inline-block; }

.entry h1 {
  font-size: 120px; line-height: 100px; font-weight: 700; margin-top: 20%;
  background: linear-gradient(to top right, #5698EA 0%, #74C1E1 50%, #99E9D1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.ref {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 19%, #e6ecff 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 19%, #e6ecff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 19%, #e6ecff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6ecff', GradientType=0);
}

.why h3 { font-size: 30px; line-height: 38px; font-weight: 500; }
.testimonials_c_holder .testimonial_content_inner { background: transparent !important; box-sizing: border-box; padding: 0; text-align: center; }

#al { align-self: start; }
.sticky-intro { display: flex; position: -webkit-sticky; position: sticky; top: 118px; }

.entry h2 { font-size: 54px; line-height:64x; font-weight: 600; margin-top: 40px; color: #ffffff; }

.intro-bg {
  background: #7d95e5; /* Old browsers */
  background: -moz-linear-gradient(top, #7d95e5 0%, #415db9 70%);
  background: -webkit-linear-gradient(top, #7d95e5 0%, #415db9 70%);
  background: linear-gradient(to bottom, #7d95e5 0%, #415db9 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d95e5', endColorstr='#415db9', GradientType=0);
}

.intro-header h1 { font-size: 75px; color: #ffffff; line-height: 75px; margin-top: 60px; }
.intro-header h2 { font-size: 26px; color: #ffffff; line-height: 32px; margin-top: 20px; font-weight: 500; }
@media (max-width: 800px) {
  .main { text-align: center; }
  .intro-header h1 { font-size: 46px; color: #ffffff; line-height: 50px; margin-top: 20px; }
  .intro-header h2 { font-size: 20px; color: #ffffff; line-height:26px; margin-top: 20px; }
}

.ti-widget.ti-goog .ti-widget-container { margin-top: 40px; }

/* —————————————————————————————————————————
   LISTS & TYPOGRAPHY (deduplicated)
   ————————————————————————————————————————— */
li { list-style-position: outside; margin-left: 16px; margin-bottom: 15px; }
ul { margin-bottom: 30px; }
ol { margin-left: 20px; }
p { margin-bottom: 15px; letter-spacing: normal; }
i { color: #4670ac; }

hr { border: none; border-top: 1px dotted #4670ac; background-color: #FFFFFF; height: 1px; }

.tab-title { font-size: 15px; font-weight: normal; text-transform: none; }
.footer_bottom { margin-top: 15px; }

.title h1, .title.title_size_small h1 { font-size: 44px !important; }
.title { color: #ffffff; font-size: 145px !important; line-height: 160px; text-align: center; font-weight: 800; font-family: 'd7 - Figtree-Black', sans-serif; }
.neg-test { margin-top: -470px; }
@media (max-width: 800px) {
  .title { color: #ffffff; font-size: 55px !important; margin-bottom: -40px; line-height: 10px; text-align: center; font-weight: 800; font-family: 'd7 - Figtree-Black', sans-serif; }
  .neg-test { margin-top: -310px; }
}

.section .video-overlay.active { background-image: url(../../../themes/bridge/css/img/pixel-video.png); background-position: 0 0; background-repeat: repeat; opacity: 1.0; }
/* .text-col-title-vertical {
  text-align: left; margin-bottom: 90px; -webkit-transform: translateY(0) rotate(-180deg);
  -ms-transform: translateY(0) rotate(-180deg); transform: translateY(0) rotate(-120deg); min-height: 290px;
} */

h4 { margin-top: 25px; }
h2 { margin-bottom: 30px; }
h3 { margin-bottom: 30px; margin-top: 45px; }
h4 { margin-bottom: 30px; }

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img { box-shadow: 0 0 5px #a4b6cf !important; }

.blog_holder article .post_info { display: none !important; }
.blog_holder article .post_info a,
.blog_holder article .post_text h2 .date { display: none !important; }

.qbutton.white { padding: 5px 15px; }
.qbutton, .qbutton.medium, #submit_comment, .load_more a, .blog_load_more_button a, .post-password-form input[type="submit"], input.wpcf7-form-control.wpcf7-submit, input.wpcf7-form-control.wpcf7-submit:not([disabled]), .woocommerce table.cart td.actions input[type="submit"], .woocommerce input#place_order, .woocommerce-page input[type="submit"], .woocommerce .button { padding: 5px 15px; }

.background { background-position: center top; }

.box h1 { font-size: 56px; margin-bottom: 25px !important; }
.box h2 { font-size: 24px !important; }
@media (max-width: 890px) {
  .box h1 { font-size: 36px; margin-bottom: 25px !important; }
  .box h2 { font-size: 20px !important; }
}

.cn-button.wp-default { background: #415db9 !important; }
body.qode-overridden-elementors-fonts .elementor-widget-heading p.elementor-heading-title { font-size: 100px !important; }
footer { margin-top: 40px; }
.neg { margin-top: -150px; }
.neg-web { margin-top: -220px; }
.abstand { padding-top: 15%; }
.abstand-web { padding-top: 5%; }
.abstand-web h1 { margin-bottom: 20px; }


.cf7_custom_style_1 input.wpcf7-form-control.wpcf7-text,
.cf7_custom_style_1 input.wpcf7-form-control.wpcf7-number,
.cf7_custom_style_1 input.wpcf7-form-control.wpcf7-date,
.cf7_custom_style_1 textarea.wpcf7-form-control.wpcf7-textarea,
.cf7_custom_style_1 select.wpcf7-form-control.wpcf7-select,
.cf7_custom_style_1 input.wpcf7-form-control.wpcf7-quiz { font-family: 'd7 - Figtree-Regular', sans-serif; }

@media only screen and (max-width: 766px) {
  .swap_on_mobile .section_inner_margin .element_from_fade > div:first-child { display: flex !important; flex-direction: column-reverse; }
  .swap_on_mobile2 .section_inner_margin .element_from_fade > div:first-child { display: flex !important; flex-direction: column; }
}

.q-and-a h4 { font-size: 90px; font-weight: 800; }
.u-d7 h4 { font-size: 40px; font-weight: 700; }

/* —————————————————————————————————————————
   BOXES / CARDS (deduplicated)
   ————————————————————————————————————————— */
.box-blue { border-radius: 25px; background: linear-gradient(45deg, #364dab 0%, #647ad6 100%); padding: 56px 45px 56px 46px; }
.box-blue .qbutton.center { margin-top: 15px; }

.boxshadow { box-shadow: rgba(0,0,0,.04) 0px 3px 5px; background-color: #ffffff; padding: 35px; border-radius: 25px; transition: transform .3s; }
.boxshadow h4 { font-size: 22px; font-weight: 700; color: #000000; line-height: 26px; }
.boxshadow a { color: #415db9; line-height: 26px; }
.boxshadow li { margin-left: 18px; }

.neg-3 { margin-top: -395px; }
@media (max-width: 800px) { .neg-3 { margin-top: 5vw; } }

.trend-box { background: #fff; border-radius: 10px; padding: 20px 25px; margin: 25px 0; box-shadow: 0 4px 14px rgba(0,0,0,0.08); transition: transform .2s ease, box-shadow .2s ease; }
.trend-box:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.trend-box h2 { font-size: 1.1em; margin-bottom: 12px; color: #333; }

.whatsapp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: #fff; font-weight: 600; font-size: 15px; text-decoration: none; padding: 5px 12px; border-radius: 999px; transition: all 0.3s ease; line-height: 1.3; }
.whatsapp-btn:hover { background: #1ebe5d; color: #ffffff; }
.whatsapp-btn .wa-icon img { width: 30px; height: 30px; display: block; }

/* —————————————————————————————————————————
   BLOG
   ————————————————————————————————————————— */
.blog_holder.blog_large_image h2, .blog_holder.blog_large_image h2 a, .blog_holder.blog_single article h2.entry_title { display: none; }
.title .separator.small, .title .separator.small.left, .title .separator.small.right { display: none; }

/* TOC mit hoher Spezifität für Bridge/Qode */
.blogpost nav.toc, .blog_holder article .toc { background: #f5f6f8 !important; border-left: 1px solid #cfd5db !important; padding: 1.1rem 1.25rem !important; margin: 2rem 0 !important; display: block; }
.blogpost nav.toc h2, .blog_holder article .toc h2 { font-size: 1.1rem; margin: 0 0 .6rem 0; }
.blogpost nav.toc ol, .blog_holder article .toc ol { list-style: decimal; padding-left: 1.4rem; margin: 0; }
.blogpost nav.toc li, .blog_holder article .toc li { margin: .35rem 0; }
.blogpost nav.toc a, .blog_holder article .toc a { color: inherit; text-decoration: none; border-bottom: 1px dashed transparent; }
.blogpost nav.toc a:hover, .blog_holder article .toc a:hover { border-bottom-color: currentColor; }

/* Widget "Neueste Beiträge" */
.widget_recent_entries ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.widget_recent_entries ul li { background: #f5f6f8 !important; border-left: 2px solid #cfd5db !important; margin: 0 0 15px 0 !important; padding: 12px 15px !important; border-radius: 6px !important; transition: background 0.2s ease-in-out; }
.widget_recent_entries ul li a { color: #333 !important; text-decoration: none !important; display: block !important; line-height: 1.5 !important; }
.widget_recent_entries ul li:hover { background: #ebedef !important; }

/* Widget "Kategorien" */
.widget_categories ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.widget_categories ul li { background: #f5f6f8 !important; border-left: 2px solid #cfd5db !important; margin: 0 0 15px 0 !important; padding: 12px 15px !important; border-radius: 6px !important; transition: background 0.2s ease-in-out; }
.widget_categories ul li a { color: #333 !important; text-decoration: none !important; display: block !important; line-height: 1.5 !important; }
.widget_categories ul li:hover { background: #ebedef !important; }

/* Blogübersicht */
.d7-blog-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.d7-post { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 14px; padding: 16px; box-shadow: 0 6px 16px rgba(0,0,0,.05); }
.d7-post-thumb img { width: 100%; height: auto; border-radius: 10px; display: block; }
.d7-post-title { margin: .6rem 0 .25rem; font-size: 1.1rem; line-height: 1.3; }
.d7-post-title a { text-decoration: none; color: #1d1d1f; }
.d7-post-title a:hover { color: #415db9; }
.d7-post-date { display: block; font-size: .9rem; color: #6b7280; }
.d7-post-excerpt { margin: .6rem 0; color: #374151; }
.d7-post-cats a { color: #415db9; text-decoration: none; }
.d7-post-cats a:hover { text-decoration: underline; }
.d7-post-more .qbutton { border-radius: 24px; padding: .45rem 0rem; color: #000000; }
.d7-pagination ul { list-style: none; display: flex; gap: 8px; padding: 0; margin: 18px 0 0; flex-wrap: wrap; }
.d7-pagination a, .d7-pagination span { display: inline-block; padding: .4rem .7rem; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); text-decoration: none; color: #111827; background: #fff; }
.d7-pagination .current { background: #415db9; color: #fff; border-color: #415db9; }

#categories-8 { display: none; }
.filter_outer { display: none; }
.d7-post-cats { display: none; }
.d7-post-title a { text-decoration: none; color: #1d1d1f; font-size: 22px; }

.drop_down .narrow .second .inner ul li { padding: 0; width: 400px !important; }
.title h1, .title.title_size_small h1 { text-align: left !important; }
@media only screen and (max-width: 800px) { .title h1, .title.title_size_small h1 { font-size: 22px !important; padding-bottom: 50px; text-align: left !important; } }

/* —————————————————————————————————————————
   HIGHLIGHT SECTIONS
   ————————————————————————————————————————— */
.highlight-box { background: #f9f9fb; padding: 60px 20px; margin: 0; border: none; }
.audit-why-content { max-width: 1000px; margin: 0 auto; }
.audit-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 30px 0; }
@media (max-width: 768px) { .audit-why-grid { grid-template-columns: 1fr; } }
.audit-why-col h3 { margin-bottom: 10px; font-size: 1.1rem; color: #111; }
.audit-why-points { padding-left: 20px; margin: 0; }
.audit-why-points li { margin: 8px 0; line-height: 1.5; }
.audit-why-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0; justify-content: center; }
.badge { background: #111; color: #fff; padding: 6px 12px; border-radius: 20px; font-size: 0.85rem; white-space: nowrap; }
.audit-why-summary { margin-top: 20px; font-weight: 600; color: #111; text-align: center; }

.audit-expert { background: #fff; padding: 60px 20px; margin: 60px 0; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.expert-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; }
.expert-media img { max-width: 300px; border-radius: 16px; display: block; margin: auto; }
.expert-content h2 { margin-bottom: 20px; font-size: 1.8rem; color: #415db9; }
.expert-content h3 { margin-top: 25px; font-size: 1.3rem; color: #111; }
.expert-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.expert-benefits ul { list-style: none; padding: 0; margin: 0; }
.expert-benefits li { margin: 10px 0; padding-left: 28px; position: relative; line-height: 1.5; }
.expert-benefits li::before { content: "✔"; color: #415db9; font-weight: 700; position: absolute; left: 0; }
@media (max-width: 768px) {
  .expert-grid { grid-template-columns: 1fr; text-align: center; }
  .expert-media img { margin-bottom: 20px; }
  .expert-benefits { grid-template-columns: 1fr; }
}

.package-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 30px; }
.package-card { border: 1px solid #eee; border-radius: 16px; padding: 30px; box-shadow: 0 4px 16px rgba(0,0,0,.05); text-align: left; display: flex; flex-direction: column; justify-content: space-between; }
.package-card h3 { color: #415db9; margin-bottom: 15px; }
.package-desc { margin-bottom: 20px; line-height: 1.5; }
.package-points { list-style: none; padding: 0; margin: 0 0 25px 0; }
.package-points li { margin: 8px 0; padding-left: 24px; position: relative; line-height: 1.5; }
.package-points li::before { content: "✔"; position: absolute; left: 0; color: #415db9; font-weight: 700; }
.package-price { margin: 20px 0; font-size: 1.2rem; font-weight: 600; color: #111; }
.package-price .price { display: block; font-size: 1.4rem; margin-bottom: 6px; color: #000; }
.package-price .duration { font-size: 0.95rem; color: #555; }

/* Calendly CTA */
.cta-calendly { margin: 32px 0; padding: 0; border: 0; }
.cta-calendly__inner { display: grid; gap: 18px; align-items: center; grid-template-columns: 56px 1fr auto; padding: 24px 22px; border-radius: 20px;
  background: linear-gradient(135deg, #415db9 0%, #2e47a8 60%, #243a8f 100%); color: #fff; box-shadow: 0 10px 24px rgba(29,44,115,.18);
}
.cta-calendly__icon { color: #ffffff; opacity: .95; }
.cta-calendly__title { margin: 0 0 6px; font-size: 1.25rem; line-height: 1.3; color: #fff; }
.cta-calendly__sub { margin: 0; font-size: .98rem; line-height: 1.5; color: rgba(255,255,255,.9); }
.cta-calendly__action { margin: 0; }
@media (max-width: 720px) {
  .cta-calendly__inner { grid-template-columns: 1fr; text-align: center; padding: 22px 18px; }
  .cta-calendly__icon { display: none; }
}

/* Info box */
.info-box { margin: 28px 0; padding: 0; }
.info-box__inner { padding: 22px 24px; border-radius: 14px; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.info-box__title { margin: 0 0 10px; font-size: 1.15rem; font-weight: 600; color: #222; }
.info-box p { margin: 0 0 12px; font-size: 1rem; line-height: 1.55; color: #444; }
.info-box__action { margin-top: 8px; }
.brand { color: #415db9; font-weight: 600; }
@media (max-width: 720px) {
  .info-box__inner { padding: 18px 20px; }
  .info-box__title { font-size: 1.05rem; }
}

/* Price List */

/* Container Layout */
.price-boxes {
  display: block;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Standard Box */
.price-box {
	 width: 100%;
  margin: 20px 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.price-box h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #415db9;
}

.price-box ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.price-box li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Featured Box */
.price-box--featured {
  border: 2px solid #415db9;
  box-shadow: 0 6px 20px rgba(65,93,185,0.15);
}

/* Hybrid Highlight */
.price-box--highlight {
  border: 2px solid #0dc152;
  box-shadow: 0 8px 22px rgba(13,193,82,0.15);
  position: relative;
}

/* Badge oben links */
.price-box__badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #0dc152;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.qbutton.large.center.white.default {
  color: #fff !important;
}

/* Highlight / Savings Box */
.highlight-box.savings {
  background: #f3f6ff;          /* zarter Akzent */
  border: 1px solid #dbe3ff;
  border-radius: 16px;
  padding: 20px;
  margin: 24px 0;
}
.highlight-box__inner {
  max-width: 900px;
  margin: 0 auto;
}
.highlight-box__title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #2b3a8a;               /* harmoniert mit #415db9 */
}
.highlight-box p {
  margin: 10px 0;
}
.highlight-box strong {
  font-weight: 700;
}
@media (max-width: 640px) {
  .highlight-box.savings { padding: 16px; border-radius: 12px; }
  .highlight-box__title { font-size: 1.15rem; }
}

#tag_cloud-8 {display:none;}

:root{
  --line: rgba(0,0,0,.9);
  --text: #0a0a1a; /* tiefes Dunkelblau/Schwarz */
}

.slab-cta{
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  padding-block: clamp(2rem, 5vw, 4rem);
  margin-block: clamp(1.5rem, 4vw, 4rem);
}

.slab-cta__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.slab-cta__text{
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--text);
  margin: 0;
}

.slab-cta__arrowlink{
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
}

.slab-cta__arrow{
  width: clamp(60px, 9vw, 90px);
  height: clamp(60px, 9vw, 90px);
  animation: arrowFloat 2.5s ease-in-out infinite;
}

@keyframes arrowFloat{
  0%   { transform: translateX(0) scale(1); opacity: .9; }
  50%  { transform: translateX(10px) scale(1.1); opacity: 1; }
  100% { transform: translateX(0) scale(1); opacity: .9; }
}

.slab-cta__arrowlink:focus-visible{
  outline: 3px solid var(--text);
  outline-offset: 4px;
}

img.shadow {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px; /* optional: abgerundete Ecken */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* weicher Schatten */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img.shadow:hover {
  transform: translateY(-4px); /* leichtes Anheben beim Hover */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.ref-img img {box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* zentrale Breite */
.qode_elementor_container_inner,
.full_width .parallax_content,
.steps_holder_inner,
div.grid_section .section_inner,
nav.content_menu ul { width:80% !important; }

.hero-pills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f1220;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.ref-icon {
  display: inline-block;
  color: #415db9; /* Wunschfarbe */
  margin-bottom: 12px;
}

.ref-icon__svg {
  width: 48px;
  height: 48px;
  animation: pulse 2.5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: .85; }
}

.circle {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: drawCircle 13.5s infinite ease-in-out reverse;
}

.circle2 {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: drawCircle 13.5s infinite ease-in-out;
}

@keyframes drawCircle {
  0%   { stroke-dashoffset: 70; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 70; }
}

/* Mobile kleiner machen */
@media (max-width: 768px) {
  .dis-mo-none {
   display:none;
  }
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.benefit img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.benefit h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f1220;
}

.benefit p {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

/* Ab Tablet → nebeneinander */
@media (min-width: 768px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .benefit {
    padding: 1rem;
  }
}

/* ===== Design-Tokens ===== */
width: 46px; height: 46px; border: 2px solid var(--ds-primary); border-radius: 10px; display: grid; place-items: center; font-weight: 800; color: var(--ds-primary);
}

.cta-arrow {
  display: inline-flex;
  align-items: center; /* sorgt dafür, dass Text & Pfeil mittig stehen */
  gap: 16px; /* Abstand zwischen Text und Pfeil */
  color: #fff!important; /* Weiß */
  font-size: 80px; /* größerer Text */
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .3s ease;
}

.cta-arrow:hover {
  opacity: 0.85;
}

.cta-icon {
  width: 80px; /* größerer Pfeil */
  height: 80px;
  animation: arrowMove 1.5s infinite ease-in-out;
	color: #fff!important; /* Weiß */
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(10px); }
}

/* Grid-Layout für die 3 Service-Blocks */
.ds-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
  margin: 40px auto;
  max-width: 1500px;
  padding: 0 16px;
}

/* ===== Service Card (aus deiner Vorlage, leicht angepasst) ===== */
:root {
  --ds-radius: 28px;
  --ds-shadow: 0 12px 30px rgba(0,0,0,.08);
  --ds-bg: #fff;
  --ds-fg: #0f172a;
  --ds-accent: #0f4c81; /* Dailyseven Blau */
  --ds-muted: #5b6b86;
}

.ds-service-card {
  box-sizing: border-box;
  padding: 28px 28px 32px;
  background: var(--ds-bg);
  color: var(--ds-fg);
  border-radius: var(--ds-radius);
  box-shadow: var(--ds-shadow);
  border: 1px solid rgba(15,23,42,.06);
  text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .ds-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }

.ds-service-card a{
    color: #0f4c81;
}

.ds-service-card h3 a {font-size: 24px;}
.ds-service-card h3 {font-size: 24px;}

.ds-icon-wrap {
  width: 96px;
  height: 96px;
  margin: 20px auto;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15,76,129,.08), rgba(15,76,129,.02));
  display: grid;
  place-items: center;
  box-shadow: 0 3px 5px rgba(15,76,129,.15);
}

.ds-icon {
  display: block;
  color: var(--ds-accent);
  animation: spin 18s linear infinite;
  transform-origin: center;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .ds-icon { animation: none; }
}

.ds-title {
  margin: 10px 0 8px;
  font-size: clamp(1.2rem, 1.6vw + .6rem, 1.6rem);
  font-weight: 700;
}

.ds-text {
  margin: 0 auto;
  line-height: 1.6;
  color: #0f4c81;
  max-width: 46ch;
}

:root{
  --ds-accent:#0f4c81;
  --ds-fg:#0f172a;
  --ds-muted:#5b6b86;
  --ds-radius:28px;
  --ds-shadow:0 6px 18px rgba(0,0,0,.08);
}
.ds-seo-tabs{max-width:1100px;margin:40px auto;padding:0 16px}
.ds-seo-tabs__wrap{display:grid;grid-template-columns:320px 1fr;gap:28px}
.ds-seo-tabs__nav{display:flex;flex-direction:column;gap:12px}
.ds-tab{
  text-align:left;background:#fff;border:1px solid rgba(15,23,42,.12);
  border-radius:16px;padding:16px 18px;font-weight:600;line-height:1.3;
  color:var(--ds-fg);cursor:pointer;box-shadow:var(--ds-shadow);transition:.2s;
}
.ds-tab:is(:hover,:focus){border-color:var(--ds-accent);transform:translateX(2px)}
.ds-tab.is-active{outline:2px solid var(--ds-accent);outline-offset:2px}

.ds-seo-tabs__panels{background:#fff;border:1px solid rgba(15,23,42,.08);
  border-radius:var(--ds-radius);box-shadow:var(--ds-shadow);padding:28px}
.ds-panel{display:none;animation:fade .2s ease}
.ds-panel.is-active{display:block}
.ds-panel h3{margin:4px 0 10px;font-size:1.6rem;color:var(--ds-fg)}
.ds-panel p{margin:0 0 16px;color:var(--ds-muted)}

.ds-feature-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:18px}
.ds-feature-list li{display:grid;grid-template-columns:48px 1fr;gap:14px;padding:14px 0;border-top:1px solid rgba(15,23,42,.06)}
.ds-feature-list li:first-child{border-top:0}
.ds-feature-list strong{display:block;margin-bottom:4px;color:var(--ds-fg)}
.ico{
  width:48px;height:48px;border-radius:14px;display:grid;place-items:center;
  background:linear-gradient(145deg, rgba(15,76,129,.08), rgba(15,76,129,.02));
  box-shadow:0 5px 10px rgba(15,76,129,.15)
}
.ico svg{width:26px;height:26px;stroke:var(--ds-accent);fill:none;stroke-width:1.8}

@keyframes fade{from{opacity:.4;transform:translateY(4px)}to{opacity:1;transform:none}}
@media (max-width:900px){
  .ds-seo-tabs__wrap{grid-template-columns:1fr}
}

/* ===== Dailyseven Pricing – SAFE MODE for Bridge ===== */

/* 1) Container & Grid hart erzwingen */
.ds-pricing{max-width:1100px;margin:56px auto;padding:0 16px;color:#0f4c81;}
.ds-pricing__grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(260px,1fr));
  gap:24px;
  align-items:stretch;
  position:relative;
  /* Bridge Pseudo-Elements/clears killen */
}
.ds-pricing__grid::before,
.ds-pricing__grid::after{content:none !important;display:none !important;}
@media (max-width:1120px){ .ds-pricing__grid{grid-template-columns:repeat(2, minmax(260px,1fr));} }
@media (max-width:768px){  .ds-pricing__grid{grid-template-columns:1fr;} }

/* 2) Karten finden – direkte UND verschachtelte Kinder unterstützen */
.ds-pricing__grid > .ds-price-card,
.ds-pricing__grid > * > .ds-price-card{
  /* Bridge-Übernahmen neutralisieren */
  float:none !important;
  width:auto !important;
  max-width:none !important;
  flex:none !important;
  opacity:1 !important;
  visibility:visible !important;

  /* Box-Styles */
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  position:relative;
  height:100%;
  box-sizing:border-box;
}

/* 3) Typo/Spacing in der Card */
.ds-price-card__head{padding:22px 22px 0}
.ds-price-card__head h3{margin:0 0 4px;font-size:1.2rem;font-weight:800;line-height:1.25}
.ds-price-card__head p{margin:0 0 14px;color:#5b6b86}

.ds-price{display:flex;align-items:baseline;gap:8px;margin:0 0 8px}
.ds-price__from{font-weight:700;color:#5b6b86}
.ds-price__value{font-size:1.5rem;font-weight:800;letter-spacing:.2px}
.ds-price__period{color:#5b6b86}

/* 4) Feature-Liste – Marker/Abstände resetten */
.ds-price-list{
  list-style:none;margin:10px 0 0;padding:0 22px 8px;
  display:flex;flex-direction:column;gap:10px;
}
.ds-price-list li{
  display:flex;gap:10px;align-items:flex-start;
  border-top:1px solid rgba(15,23,42,.06);padding-top:10px;
}
.ds-price-list li:first-child{border-top:0}

/* Häkchen-Badge */
.ds-price-list .chk{
  width:26px;height:26px;min-width:26px;border-radius:10px;display:grid;place-items:center;
  background:linear-gradient(145deg, rgba(15,76,129,.08), rgba(15,76,129,.02));
  box-shadow:0 2px 2px rgba(15,76,129,.15);position:relative;
}
.ds-price-list .chk::before{
  content:"";width:12px;height:6px;border:2px solid #0f4c81;
  border-top:none;border-left:none;transform:rotate(45deg);display:block;
}

/* 5) Footer & Buttons – Bridge überschreibt oft <a> */
.ds-price-card__foot{padding:18px 22px 22px;margin-top:auto}
.ds-btn{
  display:inline-block !important;
  padding:12px 16px;border-radius:14px;border:1px solid rgba(15,23,42,.12);
  text-decoration:none !important;color:#0f172a;background:#fff;transition:.2s;font-weight:700;
  box-shadow:none !important;
}
.ds-btn:hover{border-color:#0f4c81;color:#ffffff; transform:translateY(-1px)}
.ds-btn--primary{background:#0f4c81;color:#fff;border-color:#0f4c81}
.ds-btn--primary:hover{filter:brightness(.95)}

/* 6) Featured-Karte */
.ds-price-card.is-featured,
.ds-pricing__grid > * > .ds-price-card.is-featured{
  outline:2px solid #0f4c81;outline-offset:0;
}
.ds-badge{
  position:absolute;top:14px;right:14px;z-index:1;
  background:#0f4c81;color:#fff;font-size:.75rem;font-weight:800;
  padding:6px 10px;border-radius:999px;box-shadow:0 6px 16px rgba(15,76,129,.25)
}

/* 7) Bridge-Collisions allgemein in der Section neutralisieren */
.ds-pricing *{box-sizing:border-box}
.ds-pricing ul{margin-left:0;padding-left:0}
.ds-pricing a{box-shadow:none}

.arrow-link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #000000; /* dein Blau */
  text-decoration: none;
}

.arrow {
  margin-left: 8px;
  animation: arrow-move 1.2s ease-in-out infinite;
}

/* Keyframe-Animation */
@keyframes arrow-move {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

/* ===== Promo Box ohne Bild ===== */
.ds-promo{
  --ds-radius: 18px;
  --ds-bg: #fff;
  --ds-text: #0f0f0f;
  --ds-muted: #6b6b6b;
  --ds-shadow: 0 6px 20px rgba(0,0,0,.06);
  --ds-shadow-hover: 0 10px 28px rgba(0,0,0,.10);

  background: var(--ds-bg);
  color: var(--ds-text);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--ds-radius);
  box-shadow: var(--ds-shadow);
  transition: box-shadow .25s ease, transform .25s ease;
}

.ds-promo:focus-within,
.ds-promo:hover{
  box-shadow: var(--ds-shadow-hover);
  transform: translateY(-2px);
}

.ds-promo__link{
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 24px;
}

.ds-promo__content{
  display: grid;
  gap: 10px;
}

.ds-promo__badge{
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ds-promo__title{
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}

.ds-promo__excerpt{
  margin: 0;
  color: var(--ds-muted);
  font-size: 15px;
  line-height: 1.55;
}

.ds-promo__cta{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.ds-promo__arrow{
  width: 20px;
  height: 20px;
  transition: transform .25s ease;
}

.ds-promo:hover .ds-promo__cta{
  border-bottom-color: rgba(0,0,0,.18);
}

.ds-promo:hover .ds-promo__arrow{
  transform: translateX(4px);
}

.ds-promo__link {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

/* Standard: Bild und Text nebeneinander */
.ds-promo__grid {
  display: grid;
  grid-template-columns: 0.33fr 1fr;
  gap: 20px;
  align-items: center;
}

.ds-promo__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Mobile: Bild oben, Text darunter */
@media (max-width: 768px) {
  .ds-promo__grid {
    grid-template-columns: 1fr; /* nur eine Spalte */
    grid-template-rows: auto auto; /* Bild und Text untereinander */
  }

  .ds-promo__image {
    order: 1;
  }

  .ds-promo__content {
    order: 2;
  }
}

.clients__heading{
  font-size:clamp(1.4rem,1rem + 1.2vw,1.8rem);
  color:#0f4f7e;
  margin:60px 0 30px; /* mehr Abstand */
}

.client-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr); /* immer 4er Grid */
  gap:28px 28px;
  margin:0 0 50px 0;
  padding:0;
  list-style:none;
}

.client-card{
  background:#fff;
  border-radius:16px;
  padding:28px 18px;
  text-align:center;
  box-shadow:0 8px 18px rgba(16,42,67,.08);
  transition:transform .18s ease, box-shadow .18s ease;
}

.client-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(16,42,67,.12);
}

.client-avatar{
  display:inline-block;
  background:#e9f1fa;
  color:#0f4f7e;
  font-weight:700;
  font-size:1rem;
  padding:12px 16px;
  border-radius:10px;
  margin-bottom:12px;
}

.client-name{
  display:block;
  color:#1b4160;
  font-size:1.05rem; /* etwas größer */
  line-height:1.4;
}

