/*
Theme Name: Bridge Child
Version: 1.0.0
Template: bridge
*/

/* Dis none */

.dis-none {display:none;}


/*
*****************
Header
*****************
*/

.header_bottom {

box-shadow: 0 1px 10px rgba(0, 0, 0, .11);
margin-bottom:25px;
}

/*
*****************
Navigation
*****************
*/

nav.main_menu.right {
padding-top:20px;
	z-index: 150;
}

.sticky nav.main_menu.right {
padding-top:10;
}

/*
*****************
Gradients
*****************
*/

.bg1 {/* Permalink - use to edit and share this gradient. Permalink - Zum Bearbeiten und Teilen dieses Verlaufs verwenden: https://colorzilla.com/gradient-editor/#ffffff+0,fbfafb+100 */
background: linear-gradient(to bottom,  #ffffff 0%,#fbfafb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/*
*****************
Hero
*****************
*/


.hero {
  position: relative;
  max-height: 621px;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;

  background-image: url("/wp-content/uploads/2026/02/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay für bessere Lesbarkeit */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.2) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ================= LEFT ================= */

.hero-title {
  font-family: 'd7 - ZalandoSansExpanded-Black', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  color: #f47216;
  text-shadow:
    3px 3px 10px rgba(0,0,0,0.85);
}

/* ================= BENEFITS ================= */

.hero-benefits {
  margin: 50px 0 60px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-row {
  display: flex;
  gap: 20px;           
}

.benefit-item {
  font-family: 'd7 - ZalandoSansExpanded-Medium', sans-serif;
  font-size: 22px;
  color: #ffffff;
  position: relative;
  padding-left: 34px;
  white-space: nowrap;

  /* starker Lift-Shadow wie Screenshot */
  text-shadow:
    0px 2px 0 rgba(0,0,0,0.9),
    0px 4px 10px rgba(0,0,0,0.75);
}

.benefit-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;

  text-shadow:
    0px 2px 0 rgba(0,0,0,0.9),
    0px 4px 10px rgba(0,0,0,0.75);
}



/* MAIN BUTTON */

.hero-main-btn {
  display: inline-block;
  padding: 20px 50px;
  border-radius: 50px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-family: 'd7 - ZalandoSansExpanded-Medium', sans-serif;
	font-size:20px;
  border: none;
  outline: none;

  /* Photoshop Werte: Winkel 123°, Abstand 3px, Größe 10px, 89% */
  box-shadow: 
    3px 3px 10px rgba(244,114,22,0.89);

  transition: all 0.3s ease;
}

.hero-main-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    6px 6px 18px rgba(244,114,22,0.95);
}

/* ================= RIGHT ================= */

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border-radius: 16px;
  text-decoration: none;

  font-family: 'd7 - ZalandoSansExpanded-Regular', sans-serif;
  font-size: 20px;
  color: #000;

  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);

  /* Photoshop Shadow */
  box-shadow:
    3px 3px 10px rgba(244,114,22,0.89);

  transition: all 0.3s ease;
}

/* Arrow */

.hero-card .arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Hover */

.hero-card:hover {
  background: rgba(255,255,255,1);
  transform: translateY(-4px);
  box-shadow:
    6px 6px 18px rgba(244,114,22,0.95);
}

.hero-card:hover .arrow {
  transform: translateX(10px);
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

  /* Hero natürlicher skalieren */
  .hero {
    max-height: none;
    padding: 110px 20px 70px 20px;
  }
	
	.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 0;
}

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-title {
    font-size: clamp(52px, 12vw, 72px);
    line-height: 1.02;
  }

    .hero-benefits {
    margin: 45px 0 55px 0;
  }

  .benefit-row {
    flex-direction: column;
    gap: 16px;
  }

  .benefit-item {
    font-size: 22px;
    white-space: normal;
  }

  .hero-main-btn {
    margin-top: 15px;
    padding: 20px 40px;
  }

  /* Rechte Spalte */
  .hero-right {
    width: 100%;
    gap: 20px;
  }

  .hero-card {
	  display:none;
    width: 80%;
padding-left:40px;

  }

}

/*
==========================
LOGO GRID
==========================
*/

.logo-section {
  padding: 60px 20px;
}

.logo-headline {
  text-align: center;
  font-family: 'd7 - ZalandoSansExpanded-Regular', sans-serif;
  font-size: 17px;
  margin-bottom: 40px;
}

/* 6er Grid */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  width: 100%;
}

.logo-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.logo-box img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

@media (max-width: 800px) {

  .logo-grid {
    display: block;
    position: relative;
    height: 140px;
  }

  .logo-box {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .logo-box.active {
    opacity: 1;
  }

}




/*
*****************
CTA Section
*****************
*/

/* BOX */
.cta-box {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 100px 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1),
              box-shadow 0.35s cubic-bezier(.22,.61,.36,1);
}

/* HOVER */
.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

/* LINIE */
.cta-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 6px;
  background: #f47216;
  border-radius: 10px 0px 0px 10px;
}

/* CONTENT */
.cta-content {
  margin-left: 160px;
  max-width: 820px;
}

/* HEADLINE */
.cta-headline {
  font-family: 'd7 - ZalandoSansExpanded-Semibold', sans-serif;
  font-size: 22px;
  margin-bottom: 24px;
  color: #000;
}

/* TEXT */
.cta-text {
  font-family: 'd7 - GoogleSans-Regular', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  color: #000;
	margin-top:-10px;
}

/* BUTTON WRAP */
.cta-button-wrap {
  margin-left: 170px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 999px;
  background: #2d262d;
  color: #ffffff;
  text-decoration: none;
  font-family: 'd7 - ZalandoSansExpanded-Semibold', sans-serif;
  font-size: 17px;
	letter-spacing:1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  transition: all 0.3s ease;

  white-space: nowrap; 
  width: auto;
  max-width: none;
}

.cta-button:hover {
  background: #f47216;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 40px 60px 0;
  }

  .cta-content {
    margin-left: 90px;
    margin-bottom: 40px;
  }

  .cta-button-wrap {
    margin-left: 90px;
  }
	
	.cta-button {
  padding: 20px 15px;
 
}

  .cta-box::before {
    top: 5px;
    bottom: 5px;
  }

}

@media (max-width: 600px) {

  .cta-box {
    padding: 50px 25px 50px 0;
  }

  .cta-content,
  .cta-button-wrap {
    margin-left: 50px;
  }

  .cta-headline {
    font-size: clamp(18px, 5vw, 22px);
  }

  .cta-text {
    font-size: clamp(15px, 4vw, 18px);
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

}

/*
*****************
Benefits
*****************
*/

.benefits-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;

  background-image: url("/wp-content/uploads/2026/02/benefits-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* dunkler Overlay wie Hero */
.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 0;
}

/* Inner Container */
.benefits-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* Headline */
.benefits-headline {
  text-align: center;
  color: #ffffff;
  font-family: 'd7 - ZalandoSansExpanded-Medium', sans-serif;
  font-size: 24px;
  margin-bottom: 70px;
	 padding-right:40px;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Cards */
.benefit-card {
  background: rgba(255,255,255,0.9);

  border-radius: 16px;
  padding: 70px 40px 45px 40px;
  text-align: center;
  position: relative;

  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

/* Icon */
.benefit-icon {
  width: 90px;
  height: 90px;
  background: #f47216;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);

  box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.benefit-icon img {

  object-fit: contain;
}

/* Text */
.benefit-card h3 {
  margin-top: 50px;
  margin-bottom: 18px;
  font-family: 'd7 - ZalandoSansExpanded-Semibold', sans-serif;
}

.benefit-card p {
  font-family: 'd7 - GoogleSans-Regular', sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 992px) {

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	
	.benefit-card {
   width:70%;
  }

}

@media (max-width: 600px) {

  .benefits-section {
    padding: 90px 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

}

/*
*****************
global Layout
*****************
*/

@media (max-width: 960px){
  .header_top .left,
  .header_top .right { display: none; }
}

@media (max-width: 800px) {
	.qode_elementor_container_inner, .full_width .parallax_content, .qode_elementor_container_inner, .steps_holder_inner, div.grid_section .section_inner, nav.content_menu ul {width:88%!important;}
}

/* Navi Abstand */

ul {list-style-position: outside; margin-bottom:30px;}
li {margin-left: 20px;}

/* Barrierefreiheit im Menue */
/* Skiplink (optional) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Untermenüs standardmäßig verstecken */

/* Zeige Untermenü bei Tastatur-Fokus (focus-within) */
.menu-item-has-children:focus-within > .second {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Zeige Untermenü, wenn per JS aria-expanded="true" gesetzt wurde */
.menu-item-has-children[aria-expanded="true"] > .second {
  display: block;
  opacity: 1;
  visibility: visible;
}


.menu-item-has-children[aria-expanded="true"] > .second,
.menu-item-has-children[aria-expanded="true"] > ul {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  overflow: visible !important;
  z-index: 9999 !important;
}

/* Skip Link */

.skip-link-top {
  position: absolute;
  left: -9999px;
  top: auto;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
  text-decoration: none;
}

.skip-link-top:focus {
  left: 10px;
  top: 10px;
}

#main-content {
  scroll-margin-top: 100px; /* Abstand zum fixierten Header */
}

/* Ziel-Abstand unter Sticky-Header */
#main-content,
input, textarea, select { scroll-margin-top:100px; }

/* ====== CF7 ====== */
.cf7-checkbox-label{
  display:flex; align-items:flex-start; gap:.5em; cursor:pointer;
  font-size:1rem; line-height:1.4;
}
.cf7-checkbox-label input[type="checkbox"]{ margin-top:.2em; flex-shrink:0; }
.error-message{ color:#b00020; font-size:.9em; margin-top:.25em; }
#privacy-hint p{ display:block; margin-bottom:1em; line-height:1.5; }
#privacy-hint a{ text-decoration:underline !important; }
.wpcf7-acceptance input[type="checkbox"]{ display:inline !important; opacity:1 !important; position:relative !important; }

.wpcf7 form.invalid .wpcf7-response-output{
  color:#000 !important; font-size:1rem !important; font-weight:bold !important;
  background:#ffeaea !important; border:2px solid #f00 !important;
  margin-top:1em !important; border-radius:4px !important; line-height:1.4 !important;
	font-family: 'd7 - GoogleSans-Regular', sans-serif;
}



.q_logo a:focus-visible {
    outline: 0.125rem solid #db1212;
    outline-offset: 0.15rem;
    -moz-outline-radius: 2px;
}

.q_logo a:focus-visible img {
    outline: 0.125rem solid #db1212;
    outline-offset: 0.15rem;
}

/* Basis: Link sauber darstellen */
.logo_wrapper .q_logo a {
  display: inline-block;
  line-height: 0;
}

/* Bilder als Block, damit keine Zeilenkästchen entstehen */
.logo_wrapper .q_logo a img { display: block; }

/* Standard-Outline AUS – wir zeichnen selbst */
.logo_wrapper .q_logo a:focus,
.logo_wrapper .q_logo a:focus-visible { outline: none; }

/* >>> Fokusring gezielt um das sichtbare Logo zeichnen <<< */
/* Wenn dein sichtbares Logo die Klasse .normal hat: */
.logo_wrapper .q_logo a:focus-visible img.normal {
  position: relative;                 /* für das ::after */
}
.logo_wrapper .q_logo a:focus-visible img.normal::after {
  content: "";
  position: absolute;
  inset: 0;                           /* exakt um das Bild */
  border: 2px solid #db1212;
  border-radius: 2px;                 /* optional */
  pointer-events: none;
}


/* ====== Generisches Tastatur-Fokus-Styling ====== */
a:focus{ outline:none; }
button:focus{ outline:none; }
a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid #db1212; outline-offset:.15rem;
}

/* Slider/Carousels: Fokus nur via Tastatur */
.flexslider a:focus{ outline:none; }
.portfolio_slider a:focus{ outline:none; }
.qode_carousels a:focus{ outline:none; }
.flexslider a:focus-visible,
.portfolio_slider a:focus-visible,
.qode_carousels a:focus-visible{ outline:2px solid #db1212; outline-offset:.15rem; }

/* ====== Accordion (Bridge) ====== */
/* Headline-Grundstil */
.qode-accordion-holder h3.qode-title-holder{ font-size:1rem; padding-right:20px; }

/* Tastatur-Fokus nur bei :focus-visible */
.qode-accordion-holder .qode-title-holder[role="button"]:focus{ outline:none; }
.qode-accordion-holder .qode-title-holder[role="button"]:focus-visible{
  outline:2px solid #db1212; outline-offset:3px;
}
/* keine Doppel-Outlines auf inneren Spans */
.qode-accordion-holder .qode-title-holder *:focus,
.qode-accordion-holder .qode-title-holder *:focus-visible{ outline:none !important; }

/* Panels aus dem Fluss, wenn versteckt (JS setzt [hidden]) */
.qode-accordion-content[hidden]{ display:none !important; }

/* Hover/Farbe (Button-Variante) */
.qode-accordion-holder .qode-title-holder[role="button"]{ color:inherit; }
.qode-accordion-holder .qode-title-holder:hover,
.qode-accordion-holder .qode-title-holder[aria-expanded="true"]{ color:#fff; }

/*
*****************
Reverse mobile
*****************
*/

@media (max-width: 768px) {
  .reverse-mobile > .section_inner > .section_inner_margin {
    display: flex;
    flex-direction: column-reverse;
  }

  .reverse-mobile .wpb_column {
    width: 100% !important;
    float: none !important;
    clear: both !important;
  }

  .reverse-mobile .wpb_column:first-child {
    margin-top: 20px;
  }
}

/*
*****************
Carousels
*****************
*/

.qode_carousels .slides>li{ margin:4px 17px 0 0; }


/*
*****************
Stats
*****************
*/

.stats-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(40px, 4vw, 60px) 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.stat-box {
  background: #ffffff;
  padding: clamp(25px, 4vw, 45px);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Zahl */
.stat-number {
  font-family: 'd7 - ZalandoSansExpanded-Black', sans-serif;
  font-size: clamp(28px, 3vw, 34px);
  color: #f47216;
  margin-bottom: 12px;
  line-height: 1.1;
}

/* Text darunter */
.stat-text {
  font-family: 'd7 - ZalandoSansExpanded-Medium', sans-serif;
  font-size: 20px;
  color: #000;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil */
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 30px 20px;
  }

  .stat-text {
    font-size: clamp(16px, 4vw, 18px);
  }
}




/*
*****************
Team
*****************
*/

/*
==========================
SIMPLE CTA BLOCK
==========================
*/

.cta-simple {
  width: 100%;
  padding: 60px 20px; 
}

.cta-simple-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.cta-simple-line {
  width: 1px; 
  height: 200px;
  background: #f47216;
  flex-shrink: 0;
}

/* Content */

.cta-simple-content {
  max-width: 820px;
  color: #ffffff; 
	padding-left:40px;
}

/* H2 */

.cta-simple-content h2 {
  font-family: 'd7 - ZalandoSansExpanded-Semibold', sans-serif;
  font-size: 24px;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Text */

.cta-simple-content p {
  font-family: 'd7 - GoogleSans-Regular', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: #ffffff;
}

/* Button */

.cta-simple-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: #2d262d;
  color: #ffffff;
	font-size:16px;
  text-decoration: none;
  font-family: 'd7 - ZalandoSansExpanded-Medium', sans-serif;
  transition: all 0.3s ease;
	box-shadow: 0 6px 16px rgba(255,255,255,0.25);
}

.cta-simple-btn:hover {
  box-shadow: 0 0 18px rgba(244,114,22,0.7);
  transform: translateY(-2px);
	color: #ffffff;
}

@media (max-width: 768px) {
	
	 .cta-simple-inner {
    flex-direction: column;
    gap: 25px;
  }

  .cta-simple-content {
    max-width: 90%;
    width: 100%;
	  padding-left:0px;
  }


  .cta-simple-btn {
    width: fit-content; /* oder 100% wenn gewünscht */
  }

  .cta-simple {
    padding: 70px 20px;
  }

  .cta-simple-line {
    height: 4px;
    width: 60px; /* wird horizontal */
  }

  .cta-simple-content h2 {
    font-size: 22px;
  }

  .cta-simple-content p {
    font-size: 16px;
  }

}

.team-neg {margin-top:-40px;}

@media (max-width: 768px) {
	.team-neg {margin-top:15px;}
}

.team-neg-p p {margin-top:5px;}

/*
*****************
Akkordeon
*****************
*/

.qode-accordion-holder .qode-title-holder {
    border-bottom: 1px solid #f47216!important;
}

.qode-accordion-holder .qode-title-holder .qode-tab-title span.qode-tab-title-inner:only-child {
    font-size: 15px!important;
}

.qode-accordion-holder .qode-title-holder {
    border-bottom: 1px solid #f47216!important;
}

.qode-accordion-holder .qode-title-holder .qode-tab-title span.qode-tab-title-inner:only-child {
    font-size: 15px!important;
}

/*
*****************
IMG shadow
*****************
*/

.shad img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}


.shad img:hover {
 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
	color: #ffffff;
}


/*
*****************
Price Table
*****************
*/

.price-table-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Tabelle */

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}

/* Kopfzeile */

.price-table thead th {
  text-align: left;  
  padding: 24px 32px;
  font-weight: 600;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Body */

.price-table tbody td {
  text-align: left; 
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
}

/* Letzte Zeile */

.price-table tbody tr:last-child td {
  border-bottom: none;
}


.price-table .highlight-col {
  background: #fff7f0;
}

/* Orange Ersparnis */

.price-table .savings {
  color: #f47216;
  font-weight: 600;
}

/* Runde Ecken */

.price-table thead th:first-child {
  border-top-left-radius: 18px;
}

.price-table thead th:last-child {
  border-top-right-radius: 18px;
}

.price-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 18px;
}

.price-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 18px;
}

/* Hinweis */

.price-note {
  margin-top: 22px;
  font-size: 14px;
}

.price-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
	 overflow: visible;
	 min-width: 720px; /* wichtig! */
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

@media (max-width: 768px) {
	.price-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
}
	
	
/*
*****************
Calculator
*****************
*/

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 80px auto;
}

.calc-group {
  margin-bottom: 50px;
  text-align: center;
}

.calc-group label {
  display: block;
  margin-bottom: 10px;
  color: #f47216;
}

.calc-count {
  margin-top: 10px;
  color: #f47216;
}

/* Slider Styling */

input[type=range] {
  width: 100%;
  appearance: none;
  height: 10px;
  background: #f47216;
  border-radius: 20px;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 3px solid #f47216;
  border-radius: 50%;
  cursor: pointer;
}

/* Right Card */

.calc-right {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.calc-right h3 {
  text-align: center;
  color: #f47216;
  margin-bottom: 30px;
}

.calc-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calc-line span:last-child {
  font-weight: 600;
}

.calc-total {
  text-align: center;
  margin-top: 20px;
}

.calc-year {
  text-align: center;
  margin-top: 10px;
  font-size: 28px;
  color: #f47216;
  font-weight: 700;
}

hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.7);
}

@media (max-width: 992px) {

  .calc-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .calc-left {
    order: 1;
  }

  .calc-right {
    order: 2;
    width: 100%;
	   max-width: 100%;
    box-sizing: border-box;
  }
	
	.calc-group {
    margin-bottom: 20px;
    }

}


/*
*****************
Pricing Comapare
*****************
*/

.pricing-compare {
  padding: 20px 0;
}

.pricing-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* CARD */

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(.22,.61,.36,1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
}

/* NUMBER */

.pricing-number {
  font-family: 'd7 - ZalandoSansExpanded-Black', sans-serif;
  font-size: 34px;
  color: #f47216;
  margin-bottom: 40px;
}

/* CONTENT */

.pricing-content h3 {
  font-family: 'd7 - ZalandoSansExpanded-Medium', sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
  color: #000;
}

.pricing-content p {
  font-family: 'd7 - GoogleSans-Regular', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 30px;
}

/* Divider */

.pricing-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 30px 0;
}

/* Highlight */

.pricing-highlight {
  font-family: 'd7 - ZalandoSansExpanded-Medium', sans-serif;
  font-size: 16px;
  color: #f47216;
}

/*
==========================
RESPONSIVE
==========================
*/

@media (max-width: 992px) {

  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-card {
    padding: 50px 30px;
  }

  .pricing-number {
    font-size: 28px;
  }

}

/*
*****************
Space
*****************
*/

.space-img-1 {margin-top:7%;}

.space-faq-hl {margin-left:18px;}

/*
*****************
Briefkasten Map
*****************
*/

.map-embed {
  width: 100%;
  height: 500px; /* feste Höhe nötig */
  border: 0;
}

/*
==========================
POSTDIENST FORM STYLE
==========================
*/

.pd-form {
  max-width: 820px;
   background: #ffffff;
  padding: 30px 30px;
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
	
}

.pd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}


/* Privacy */

.pd-privacy {
  margin-top: 20px;
  font-size: 13px;
}

.pd-privacy a {
  color: #f47216;
  text-decoration: underline;
}

.pd-info {
  margin: 10px 0;
}

.pd-radio-group {margin-left:-18px;}

.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 - GoogleSans-Regular', sans-serif;}

@media (max-width: 768px) {

  .pd-form {
    padding: 40px 25px;
  }

  .pd-row {
    grid-template-columns: 1fr;
  }

}

/*
==========================
REFERENZ LOGO GRID
==========================
*/

.ref-logos {
  padding: 0px 50px;
}

.ref-logos-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* Logo Card */

.ref-logo {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.ref-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
}

/* Logo Image */

.ref-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}


/* ====== Footer ====== */
footer{ margin-top:40px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-text {
  text-decoration: none;
}

/*
==========================
rechte Button
==========================
*/

.floating-phone-btn {
    position: fixed;
    right: 25px; /* Abstand vom Rand */
    top: 50%;
    transform: translateY(-50%) translateX(120%);
    background: #f37021;
    color: #ffffff!important;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    transition: all 0.4s ease;
    z-index: 9999;
}

/* Sichtbar beim Scrollen */
.floating-phone-btn.show {
    transform: translateY(-50%) translateX(0);
}

/* Hover */
.floating-phone-btn:hover {
    background: #d85f16;
	color: #ffffff;
}

/* Icon */
.floating-phone-btn svg {
    fill: #ffffff; /* Icon auch weiß */
}

/* Mobile */
@media (max-width: 768px) {
    .floating-phone-btn {
        right: 15px;
        font-size: 16px;
        padding: 14px 24px;
		 top: 95%;
    }
}


/*
==========================
Karte Home
==========================
*/

.pd-feature-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    max-width: 1200px;
    margin: 0 auto;
}

.pd-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Bild */
.pd-card-image img {
    max-width: 350px;
    height: auto;
}

/* Text */
.pd-card-content {
    flex: 1;
}

.pd-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-checklist li {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
    color: #e87500;
	    font-family: 'd7 - ZalandoSansExpanded-Semibold', sans-serif;
}

/* Check Icon */
.pd-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 28px;
    font-weight: 700;
    color: #e87500;
}

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

    .pd-feature-card {
        flex-direction: column;
        gap: 40px;
        padding: 35px;
    }

    .pd-checklist li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding-left: 0;
        font-size: 20px;
        margin-bottom: 25px;
    }

    .pd-checklist li:before {
        content: "✓";
        position: static;
        font-size: 20px;
        line-height: 1.4;
        margin: 0;
        flex-shrink: 0;
    }
}
