@import url("reset.css");

/*-----------FONTS-----------*/
/* fraunces-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/fraunces-v38-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* fraunces-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fraunces-v38-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* fraunces-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/fraunces-v38-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*-----------FONTGESTALTUNG-----------*/

body {
  font-family: "Fraunces";
  color: #404040;
  overflow-x: hidden;
  background: url("../images/header.webp") no-repeat center;
  background-size: contain;
  background-attachment: fixed;
  background-position: 0 8em;
}
p {
  font-size: 15px;
  font-weight: 300;
  line-height: 21px;
  margin-bottom: 15px;
}
a {
  color: #404040;
  text-decoration: none;
  cursor: pointer;
}
h1 {
  font-size: 45px;
  line-height: 40px;
  margin-bottom: 10px;
}
h1 b {
  font-size: 30px;
}
h2 {
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 35px;
  font-weight: 200;
}
h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

h2,
h3,
h4 {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}
h4 {
  font-size: 16px;
}
li {
  font-size: 14px;
  list-style: disc;
}
strong {
  font-weight: 800;
}

/*-----------TOP HEADER BAR-----------*/
.top-header-bar {
  width: 100%;
  background: #2da603;
  color: #fff;
  z-index: 10000;
  padding: 12px 5%;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-header-left,
.top-header-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.top-header-phone {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.top-header-phone:hover {
  opacity: 0.85;
}

.top-header-cta {
  background: #fff;
  color: #2da603;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}

.top-header-cta:hover {
  background: #e6efe3;
}

.top-header-badge,
.top-header-insurance,
.top-header-express,
.top-header-rating {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .top-header-cta {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

/*-----------SITE NAV-----------*/

.site-nav {
  position: relative;
  width: 100%;
  z-index: 10003;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  background: rgba(255, 255, 255);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.logo {
  width: 160px;
  height: auto;
  display: block;
}

nav {
  background: transparent;
  width: auto;
  text-align: right;
  padding: 0;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

nav ul li {
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
}

nav ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #2e2e2e;
  font-weight: 600;
  transition: opacity 0.3s;
}

nav ul li a:hover {
  border-bottom: 3px solid #2da603;
}

.navi {
  display: none;
}

.burger-nav {
  display: none;
  position: relative;
  right: auto;
  top: auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 28px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: transparent;
  color: #2da603;
  padding: 8px;
  border-radius: 0;
  line-height: 1;
  z-index: 10004;
}

.burger-nav b {
  transition: all 0.4s ease-in-out;
  float: left;
  margin-left: 0;
  font-family: "Roboto";
  font-style: normal;
}

.burger-nav-anim {
  color: #2da603;
}

.burger-nav-anim b:first-of-type {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-nav-anim b:nth-of-type(2) {
  opacity: 0;
}

.burger-nav-anim b:last-of-type {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -80%;
}

.full-screen-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10002;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: table;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.full-screen-nav ul {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.full-screen-nav ul li a {
  padding: 20px;
  display: block;
  font-size: 30px;
  color: #2da603;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

.fadeIn {
  opacity: 1 !important;
  visibility: visible !important;
}

.fadeUp {
  opacity: 1 !important;
  margin-top: 0 !important;
}

/*-----------ASIDE-----------*/
aside a {
  position: fixed;
  right: 0;
  left: auto;
  width: fit-content;
  background: #2da603;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  transition: 0.5s;
  z-index: 999;
  line-height: 1.4;
  border-radius: 10px 0px 0px 10px;
}

aside a:hover {
  background: #75c45a;
}

.phone {
  top: 300px;
}

.mail {
  top: 370px;
}

.maps {
  top: 440px;
}
/*-----------SUBNAV-----------*/

.subnav {
  position: fixed;
  bottom: 0;
  color: #fff;
  z-index: 999;
  transition: 0.5s;
  width: 100%;
  text-align: right;
}
.subnav a {
  font-family: "Open Sans";
  color: #fff;
  padding: 8px 15px;
  font-size: 13px;
  background-color: #57b404;
  margin-left: 20px;
  line-height: 23px;
}
.subnav a:nth-of-type(2) {
  margin-right: 5%;
}
.subnav a:hover {
  background-color: #008eb0;
}

/*-----------HEADER-----------*/

header {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header-content {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 80%;
}

#stoerer {
  max-width: 600px;
  padding: 30px 50px;
}

#header-bild {
  flex-shrink: 0;
}

#header-bild img {
  display: block;
  max-height: 600px;
  width: 100%;
  height: 80%;
  border-radius: 50px;
}
.punkt1 {
  background-color: #e5e5e5;
  color: #6d6d6d;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  width: fit-content;
  padding: 10px 15px;
}
.punkt2 {
  background-color: #e5e5e5;
  color: #6d6d6d;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  width: fit-content;
  padding: 10px 15px;
  margin-top: 20px;
}
.punkt3 {
  background-color: #e5e5e5;
  color: #6d6d6d;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  width: fit-content;
  padding: 10px 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  width: fit-content;
}

.hero-badge {
  background: #2da603;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 1324px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 20px;
    line-height: 25px;
  }
  body {
    background-position: 0 10.5rem;
  }
}

/* =========================
   SMALL TABLET / LARGE PHONE (bis 768px)
========================= */
@media (max-width: 1200px) {
  header {
    min-height: calc(100vh - 120px);
  }

  #header-content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    flex-direction: column;
    text-align: center;
    gap: 25px;
    width: 100%;
  }
  .hero-badges {
    margin-inline: auto;
  }

  #stoerer {
    max-width: 100%;
    padding: 60px;
  }

  #header-bild {
    display: none;
  }

  #header-bild img {
    width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 25px;
  }

  .punkt1,
  .punkt2,
  .punkt3 {
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

/* =========================
   HANDY (bis 480px)
========================= */
@media (max-width: 600px) {
  .logo {
    width: 130px;
  }

  .site-nav {
    padding: 8px 5%;
  }

  header {
    min-height: calc(75vh - 110px);
  }

  #stoerer {
    padding: 15px;
    margin-top: 80px;
  }

  #stoerer h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  #stoerer h2 {
    font-size: 1rem;
  }

  #header-content {
    padding: 40px 15px;
    gap: 20px;
  }

  .btn {
    display: block;
    width: fit-content;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .phone {
    top: 180px;
    right: 0;
  }
  .mail {
    top: 250px;
    right: 0;
  }

  #header-bild img {
    border-radius: 15px;
  }
  .google-review-container {
    justify-content: center;
    padding: 0 clamp(30px, 98vw, 30px);
    margin: 40px auto;
    margin-top: 0px;
    padding-top: 0px;
  }
}
/*-----------AUFBAU-----------*/

html {
  scroll-behavior: smooth;
}

.btn {
  background-color: #bee3b1;
  color: #404040;
  padding: 10px 15px;
  transition: 0.5s;
  border: #75c45a 1px solid;
  border-radius: 10px;
  text-decoration: underline;
  margin-top: 30px;
}
.btn:hover {
  background-color: #2da603;
  transform: translateY(-2px);
}
::-moz-selection {
  background: #fff600;
  color: #000;
}
::selection {
  background: #fff600;
  color: #000;
}

/*-----------BEREICH1-----------*/

.info-section {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
}

.info-box {
  max-width: 900px;
  width: 100%;

  border: 2px solid #2da603;
  border-radius: 15px;
  box-shadow: 2px 10px 35px #2ca60379;

  padding: 30px 35px;
  background: #e6efe3;

  transition: all 0.3s ease;
  margin: 0px 80px;
}

.info-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #2c3e50;
  line-height: 1.3;
}

.check-icon {
  color: #2ecc71;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

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

@media (max-width: 768px) {
  .info-box {
    padding: 25px 20px;
  }

  .info-box h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .check-icon {
    display: none;
  }
  .info-box h3 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .info-box {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .info-box h3 {
    font-size: 1.15rem;
    flex-direction: row;
  }

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

/*-----------ANIMATIONEN-----------*/
.reveal {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.js .reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y, 30px)) translateX(var(--reveal-x, 0))
    scale(var(--reveal-scale, 1));
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.js .reveal.slide-left {
  --reveal-y: 0;
  --reveal-x: -50px;
}

.js .reveal.slide-right {
  --reveal-y: 0;
  --reveal-x: 50px;
}

.js .reveal.scale {
  --reveal-y: 0;
  --reveal-scale: 0.95;
}

.js .reveal.fade-only {
  --reveal-y: 0;
  --reveal-x: 0;
  --reveal-scale: 1;
}

.reveal.delay-1 {
  transition-delay: 0.1s;
}
.reveal.delay-2 {
  transition-delay: 0.2s;
}
.reveal.delay-3 {
  transition-delay: 0.3s;
}
.reveal.delay-4 {
  transition-delay: 0.4s;
}
.reveal.delay-5 {
  transition-delay: 0.5s;
}

.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

.hover-zoom:hover img {
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 166, 3, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(45, 166, 3, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 166, 3, 0);
  }
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .js .reveal,
  .js .reveal.visible,
  .hover-lift,
  .hover-zoom img,
  .btn-pulse,
  .float {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/*-----------BEREICH2-----------*/
.service-section {
  width: 100%;
  padding: 80px 20px;
  text-align: center;
}

.service-header {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.service-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* =========================
   3-SPALTEN GRID
========================= */

.service-boxes {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-box {
  background: #eef7eb;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 90px;
  transition: 0.3s ease;
  border: #bfbfbf 1px solid;
}

.service-box strong {
  font-size: 1rem;
  color: #222;
}

/* Hover (optional modern feel) */
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* =========================
   FOOTER TEXT + BUTTON
========================= */

.service-footer {
  max-width: 800px;
  margin: 40px auto 20px auto;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.service-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #bee3b1;
  color: #404040;
  text-decoration: underline;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
  border: #75c45a 1px solid;
}

.service-btn:hover {
  background: #2da603;
  transform: translateY(-2px);
}

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

@media (max-width: 1100px) {
  .top-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .top-header-inner > * {
    flex: 1 1 100%;
    justify-content: center;
  }
  .top-header-phone {
    text-align: center;
  }
  .service-section {
    width: fit-content;
    padding: 80px 20px;
    text-align: center;
    margin: 50px;
  }

  body {
    background-position: 0 12rem;
  }
}

@media (max-width: 900px) {
  .service-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  body {
    background-position: 0 9rem;
  }
}

@media (max-width: 600px) {
  .service-boxes {
    grid-template-columns: 1fr;
  }

  .service-header h3 {
    font-size: 1.6rem;
  }

  .service-subtitle {
    font-size: 1.1rem;
  }
}

/*-----------BEREICH3-----------*/
.pricing {
  padding: 80px 20px;
  text-align: center;
  background: rgba(247, 247, 247, 0.75);
}

.pricing-header {
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.pricing-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.pricing-header p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2da603;
  margin-bottom: 10px;
}

/* FOOTER */
.pricing-footer {
  margin-top: 50px;
}

.pricing-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #bee3b1;
  border: 1px solid #75c45a;
  border-radius: 10px;
  text-decoration: underline;
  color: #404040;
  transition: 0.3s;
}

.pricing-btn:hover {
  background: #2da603;
  color: #fff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header h2 {
    font-size: 1.6rem;
  }
  .pricing-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    margin-left: 40px;
    margin-right: 40px;
  }
}

/*-----------WERTANRECHNUNG-----------*/
.value-section {
  padding: 80px 20px;
  text-align: center;
  background: rgba(230, 239, 227, 0.75);
}

.value-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #2da603;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(44, 166, 3, 0.15);
  padding: 40px 35px;
  transition: 0.3s ease;
  overflow: hidden;
}

.value-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(44, 166, 3, 0.22);
}

.value-badge {
  display: inline-block;
  background: #2da603;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.value-container h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #2da603;
}

.value-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

.value-amount {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #e6efe3 0%, #fff 100%);
  border: 2px dashed #2da603;
  border-radius: 15px;
  padding: 25px 45px;
  margin-bottom: 15px;
}

.value-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2da603;
  line-height: 1;
}

.value-currency {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-hint {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.value-container ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.value-container li {
  list-style: none;
  background: #eef7eb;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-container .checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #2da603;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.value-container .pricing-btn {
  font-size: 1.1rem;
  padding: 14px 28px;
}

@keyframes value-glow {
  0%,
  100% {
    box-shadow: 0 10px 35px rgba(44, 166, 3, 0.15);
  }
  50% {
    box-shadow: 0 10px 45px rgba(44, 166, 3, 0.35);
  }
}

.value-container.reveal.visible {
  animation: value-glow 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .value-container.reveal.visible {
    animation: none;
  }
}

@media (max-width: 600px) {
  .value-container {
    padding: 30px 20px;
  }
  .value-container h2 {
    font-size: 1.6rem;
  }
  .value-number {
    font-size: 2.5rem;
  }
  .value-amount {
    padding: 20px 30px;
  }
  .value-container li {
    font-size: 0.9rem;
  }
}

/*-----------BEREICH4-----------*/
.process-section {
  padding: 80px 40px;
  text-align: center;
}

.process-title {
  font-size: 2rem;
  margin-bottom: 50px;
}

/* ===== Layout ===== */
.process-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* ===== Step ===== */
.process-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

/* ===== Number ===== */
.process-number {
  width: 55px;
  height: 55px;
  min-width: 55px;

  background: #2da603;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Text ===== */
.process-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.process-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

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

@media (max-width: 900px) {
  .process-container {
    flex-direction: column;
    gap: 25px;
  }

  .process-step {
    align-items: center;
  }
  li {
    font-size: 14px;
    list-style: none;
  }
}

@media (max-width: 480px) {
  .process-title {
    font-size: 1.5rem;
  }

  .process-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/*-----------BEREICH5-----------*/

.why-section {
  padding: 80px 40px;
  background-color: rgba(247, 247, 247, 0.75);
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LINKS TEXT */
.why-text {
  flex: 1;
}

.why-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.why-text h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #444;
}

.why-text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.why-text li {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #333;
}

.why-text p {
  color: #555;
  line-height: 1.6;
}

/* RECHTS BILD */
.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  transition: transform 0.5s ease;
}

.why-image:hover img {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-text ul {
    list-style-position: inside;
    padding-left: 0;
  }
}

/*-----------BEREICH6-----------*/

.reviews-section {
  padding: 80px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
}

.reviews-section h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.reviews-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.reviews-rating {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5fbb3f;
  margin-bottom: 20px;
}

.reviews-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

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

@media (max-width: 768px) {
  .reviews-section h3 {
    font-size: 1.6rem;
  }

  .reviews-section h4 {
    font-size: 1.1rem;
  }

  .reviews-rating {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 60px 15px;
  }

  .reviews-text {
    font-size: 0.95rem;
  }
}

/*-----------bewertungen------------*/
.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-container h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #444;
}

.contact-container p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.contact-phone a {
  font-weight: bold;
  color: #2da603;
  text-decoration: none;
}

.contact-phone a:hover {
  text-decoration: underline;
}

.contact-form-hint {
  margin-top: 10px;
  font-weight: 500;
}

.reviews-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 clamp(30px, 138vw, 260px);
  margin: 40px auto;
}

.reviews-container > div {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.google-review-container {
  justify-content: center;
  padding: 0 clamp(30px, 138vw, 260px);
  margin: 40px auto;
}

@media (max-width: 1000px) {
  .google-review-container {
    justify-content: center;
    padding: 0 clamp(30px, 98vw, 80px);
    margin: 40px auto;
  }
}
/*-----------footer-----------*/

.legal-section {
  background: linear-gradient(
    360deg,
    #000000 54.229589094195454%,
    #0b2f5b 100%
  );
  padding: 90px 20px;
  color: #fff;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.legal-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;

  padding: 25px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  text-align: left;

  transition: 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(190, 227, 177, 0.7);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.legal-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.legal-card p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #eaeaea;
}

.legal-card a {
  color: #bee3b1;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .legal-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .legal-container {
    grid-template-columns: 1fr;
  }

  .legal-card {
    text-align: center;
  }
}

/*-----------RESPONSIVE-----------*/

@media screen and (max-width: 900px) {
  h1 {
    font-size: 25px;
    line-height: 30px;
  }
  h1 b {
    font-size: 25px;
  }
  .top-header-bar {
    padding: 10px 3%;
  }
  .top-header-right {
    display: none;
  }
  .site-nav {
    padding: 10px 5%;
  }

  .logo {
    width: 140px;
  }

  nav {
    display: none;
  }

  .navi {
    display: block;
  }

  .burger-nav {
    display: block;
  }

  header {
    height: auto;
    min-height: calc(75vh - 110px);
  }
}

@media screen and (max-width: 700px) {
  main {
    text-align: center;
  }
  body {
    background-position: 0 8.5rem;
  }
  .top-header-bar {
    padding: 8px 3%;
    font-size: 13px;
  }
  .top-header-left,
  .top-header-right {
    gap: 8px;
  }
  .top-header-phone {
    font-size: 1rem;
  }
  .contact-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 500px) {
  .top-header-bar {
    padding: 8px 3%;
    font-size: 12px;
  }
  .top-header-badge,
  .top-header-rating {
    display: none;
  }
  .top-header-left {
    gap: 6px;
  }
  .top-header-phone {
    font-size: 0.9rem;
  }

  aside img {
    width: 40px;
  }
  .mail {
    top: 140px;
    right: 0;
  }
  .phone {
    top: 210px;
    right: 0;
  }

  .reviews-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0px;
    margin: 40px auto;
  }
  .google-review-container {
    justify-content: center;
    padding: 0 clamp(30px, 98vw, 10px);
    margin: 40px auto;
  }
  #stoerer {
    padding: 15px;
    margin-top: 200px;
  }
}
