/* ----------------------------------------
   0) Google Fonts
---------------------------------------- */
/* ----------------------------------------
   1) CSS-Variablen
---------------------------------------- */
:root {
  /* Farben */
  --color-primary: #0b2a46; /* Marineblau */
  --color-accent: #e94a1b; /* Tiefes Orange */
  --color-bg: #eaeae9; /* Warm-Light */
  --color-text: #2e2e2e; /* Dunkelgrau */
  --color-white: #ffffff; /* Weiß */
  --color-accent-light: #e94b1be6; /* Helles Orange */
  --color-orange-inside: #ff6538;
  --color-light-text: #5b5b5b;

  /* Typografie */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Buttons */
  --radius: 8px;
  --shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------
   2) Reset & Basis
---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
  letter-spacing: 0.2px;
}
h1 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
}
h2 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.section {
  padding: 0 150px;
  overflow: hidden;
  background-color: #0b2a46;
  opacity: 1;
  background-image: radial-gradient(
      rgba(231, 182, 166, 0.1) 2px,
      transparent 2px
    ),
    radial-gradient(rgba(231, 182, 166, 0.1) 2px, #0b2a46 2px);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
}

p {
  font-size: 1rem;
  font-weight: bolder;
}
.container {
  border-radius: 10px;
  margin: 100px auto;
}
.inner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.inner-wrapper h2 {
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}
.outer-wrapper {
  background-color: var(--color-bg);
  padding: 4rem 2rem;
  border-radius: 10px;
  border: solid 2px var(--color-accent);
}

.circleBg {
  background-color: #1d63a3;
  opacity: 1;
  background-image: repeating-radial-gradient(
      circle at 0 0,
      transparent 0,
      #0b2a460a 16px
    ),
    repeating-linear-gradient(#eaeae955, #eaeae9);
  text-align: center;
  padding: 2.5em 1em;
}

.brand .accentColor{
  color: var(--color-accent);
}

.p2rem {
  padding: 2rem;
}
.p1rem {
  padding: 1rem;
}

.pb1rem {
  padding-bottom: 1rem;
}
.pb2rem {
  padding-bottom: 2rem;
}

.ptb1rem {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.justify {
  text-align: justify;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.display-none {
  display: none;
}

.extra-text {
  text-align: justify;
  margin-bottom: 1rem;
}

.mw50 {
  width: 50%;
}

.margin10 {
  margin: 10px;
}

.border-radius {
  border-radius: var(--radius);
}
.span2 {
  grid-column: span 2;
}

.float-right {
  float: right;
}

.white {
  color: var(--color-bg);
}

.topWhiteGradient {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 1%
  );
  position: relative;
}

.darkColor {
  color: var(--color-text);
}

.primaryColor {
  color: var(--color-primary);
}

.topWhiteGradients {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 40%
  );
  position: absolute;
  bottom: -20px;
  height: 20px;
  width: 100%;
  z-index: 10;
}

.backgroundColor {
  background-color: #0b2a46;
  opacity: 1;
  background-image: radial-gradient(
      rgba(231, 182, 166, 0.1) 2px,
      transparent 2px
    ),
    radial-gradient(rgba(231, 182, 166, 0.1) 2px, #0b2a46 2px);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
  color: var(--color-bg);
}

/* Page-Progress-Slider */
.scroll-indicator {
  position: fixed;
  top: 50%;
  left: 10px;
  /* etwas Abstand vom Rand */
  transform: translateY(-50%);
  /* vertikal zentriert im Viewport */
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 1) Die Leiste ist der Positionierungs-Kontext */
.progress-line {
  position: relative;
  width: 5px;
  height: 70vh;
  /* oder was immer Dein Design vorgibt */
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 15px 0;
}

/* 2) Füllung von oben nach unten */
.progress-fill {
  position: absolute;
  top: 0;
  /* ← oben ansetzen */
  left: 0;
  width: 100%;
  height: 0;
  /* wird per JS hochgezogen */
  background: var(--color-accent);
  border-radius: 2px;
  transition: height 0.2s ease;
}

/* 3) Icons als absolute Elemente innerhalb .progress-line */
.section-icons {
  position: absolute;
  top: -5px;
  left: 10px;
  /* Abstand vom Strich */
  width: 24px;
  /* Breite der Icon-Box */
  height: 100%;
  /* genau so hoch wie .progress-line */
}

/* 4) Icon-Links zentral positionieren und mit translateY(-50%) zentrieren */
.icon-link {
  position: absolute;
  top: 0;
  /* wird per JS verschoben */
  left: 0;
  transform: translateY(-50%) scale(1);
  transform-origin: center center;
  transition: all 0.5s ease;
  color: #fff;
  /* Standard-Farbe (weiß) */
  pointer-events: auto;
  /* Klicks fangen */
  font-size: 1.2rem;
  /* oder Deine Default-Size */
}

/* falls Du SVGs inline nutzt */
.icon-link svg {
  fill: currentColor;
}

/* 5) Aktives Icon vergrößern & orange einfärben */
.icon-link.active {
  transform: translateY(-50%) scale(1.5);
  color: var(--color-accent);
  left: 5px;
}

/* Barrierefrei */
.visually-hidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

/* ----------------------------------------
   3) Navigation
---------------------------------------- */
.hero-nav {
  background-color: var(--color-white);
  padding: 0 60px;
}
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-bottom: 5px;
  z-index: 10;
  border-bottom: 1px solid var(--secondary-button-color);
}
.logo img {
  height: 70px;
  transform: translate3d(-15px, 3px, 0);
}
a.logo {
  height: 70px;
}
.heroLinks {
  display: flex;
  gap: 1rem;
}
.heroLinks a:not(.btn-tertiary) {
  color: var(--color-primary);
  font-weight: bold;
  padding: 5px;
  transition: all 0.2s ease;
}
.heroLinks a:hover:not(.btn-tertiary) {
  color: var(--color-accent);
  border-bottom: 3px solid var(--color-accent-light);
  padding-bottom: 10px;
  transform: translateY(-3px);
}
.nav-right {
  display: flex;
  align-items: center;
  padding-top: 10px;
}
.menu-icon {
  display: none;
}
.links {
  display: flex;
  align-items: center;
}

/* Navbar-Grundstruktur */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-nav li {
  position: relative;
}

/* Das Dropdown-Menü verstecken */
.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 160px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 8px;
}

/* Die einzelnen Einträge */
.main-nav .dropdown-menu li {
  margin: 0;
}

.main-nav .dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}

/* Hover-Effekt */
.main-nav .dropdown-menu li a:hover {
  background-color: #f0f0f0;
  border-radius: 8px;
  display: block;
}

/* Dropdown beim Überfahren anzeigen */
.main-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  display: block;
  border-radius: 8px;
}

/* ----------------------------------------
   4) Buttons
---------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: opacity 0.2s;
  cursor: pointer;
}
.btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-5px);
}
.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  transition: all 0.5s ease;
  border: solid 2px transparent;
}

.btn-primary:hover {
  color: var(--color-white);
  border: solid 2px var(--color-accent);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid transparent;
  transition: all 0.5s ease;
}

.btn-secondary:hover {
  color: var(--color-bg);
  border: solid 2px var(--color-bg);
}

.btn-tertiary {
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: all 0.5s ease;
  text-align: center;
  border: solid 2px transparent;
}
.btn-tertiary:hover {
  color: var(--color-bg);
  border: solid 2px var(--color-bg);
}

/* ----------------------------------------
   5) Hero-Section
---------------------------------------- */
.hero {
  padding: 0rem 4rem 0rem 4rem;
  /* background-color: var(--color-primary); */
  color: var(--color-white);
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 1%),
    linear-gradient(to top, #0b2a46 0%, rgba(11, 42, 70, 0) 20%),
    url(https://res.cloudinary.com/dvd2cd2be/image/upload/v1754395811/admin_gallery/wfrpglprlohl9ntdaegt.webp) center / cover no-repeat;
}
.hero-section {
  padding: 0 150px;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  background: rgba(11, 42, 70, 0.28);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.6px);
  -webkit-backdrop-filter: blur(2.6px);
  /* border: 1px solid rgba(11, 42, 70, 0.35); */
  padding: 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}
.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.hero-ctas .btn {
  margin-right: 1rem;
}
.hero-image {
  flex: 1;
  padding-left: 100px;
}
.hero-image img {
  max-width: 100%;
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70vh;
}
.icon-transform-6 {
  transform: translateY(6px);
}
/* ----------------------------------------
Agentur-Einleitung
---------------------------------------- */

.readable p {
  margin: 0 0 1rem;
  text-align: justify;
}

/* Erste Letter – Drop Cap */
.readable p:first-of-type::first-letter {
  font-size: 3rem;
  line-height: 1;
  float: left;
  font-weight: 700;
  color: var(--color-primary);
}

/* ----------------------------------------
   6) Icons
---------------------------------------- */
.icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  fill: var(--color-primary);
}

/* ----------------------------------------
   7) Features Section
---------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}
.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 1rem;
  color: var(--color-primary);
}

/* ----------------------------------------
8) Blog and Review Section
---------------------------------------- */
/* Blog-Image */
.latest-blog .blog-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.latest-blog .blog-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 200px; /* oder auto, je nach Ratio */
}

.home-blog-review {
  background-color: var(--color-bg);
  padding: 4rem 2rem;
}

/* Grid: 2/3 + 1/3 */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: stretch;
}
.latest-blog h3,
.testimonial h3 {
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: 1rem;
  background: var(--color-accent-light);
  border-radius: 8px 8px 0px 0px;
  padding: 10px;
}

/* Blog-Artikel */
.latest-blog article h4 a {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.latest-blog article h4 {
  margin-bottom: 0.5rem;
}
.latest-blog .excerpt {
  color: var(--color-text);
  margin-bottom: 1rem;
}
.latest-blog .date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.testimonial blockquote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.testimonial cite {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
}

/* ----------------------------------------
   Cards für Blog & Review
---------------------------------------- */
.content-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* Card füllt die volle Höhe ihres Grid‐Items */
  height: 100%;
}
.latest-blog .content-card {
  /* volle Breite im Grid */
  width: 100%;
}
.white-text {
  color: var(--color-white);
}

.review-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  justify-items: center;
  height: 90%;
  margin-top: -20px;
}

.image-review {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: url("/images/review-bg.webp") center / contain no-repeat;
}

.text-image {
  position: absolute;
  bottom: -10px;
}

/* ----------------------------------------
   Options Section
---------------------------------------- */
.features-lisst {
  list-style: none;
  color: var(--color-bg);
  padding: 2rem 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

/* ----------------------------------------
   9) Pricing Section
---------------------------------------- */
.outer-wrapper .lead {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}
.pricing-grid {
  display: grid;
  /* grid-template-columns: repeat(1, 1fr); */
  gap: 2rem;
  justify-items: center;
}
.pricing-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-bg);
  padding: 1rem;
  background: var(--color-primary);
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin: 1rem 0;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  width: 100%;
}
.features-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
}
.features-list li::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("/images/icons/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0.1rem;
}
.pricing-card .btn {
  margin-top: auto;
}

div#pkg-3 {
  grid-column: span 2;
}

/* ----------------------------------------
   10) Leistungen Section (Service-List)
---------------------------------------- */
.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.service-list li {
  background: linear-gradient(
    to bottom,
    /* erste Farbe */ var(--color-primary) 40%,
    /* zweite Farbe */ var(--color-white) 40%
  );
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--color-text);
  font-size: 0.85rem;
  position: relative;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 10px;
  cursor: pointer;
  padding-right: 10px;
  padding-left: 10px;
}

.service-list .card-front {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-list .card-front:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-list li strong {
  display: flex;
  font-size: 1.1rem;
  color: var(--color-bg);
  line-height: 1.2;
  margin-bottom: 25px;
  height: 70px;
  justify-content: center;
  align-items: center;
}

.click {
  width: 20px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.listText {
  position: relative;
  top: -187px;
  font-weight: bold;
  color: var(--color-bg);
  font-size: 1.1rem;
  background-color: var(--color-primary);
  border-radius: 8px 8px 0px 0px;
  padding: 5px 0px;
}

/* ----------------------------------------
   11) Branchen Section (Industry-Grid + Header)
---------------------------------------- */
.industry-header {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px 8px 0 0;
  margin: 0 auto 1.5rem;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.industry-item {
  background: linear-gradient(
    to bottom,
    /* erste Farbe */ var(--color-accent-light) 30%,
    /* zweite Farbe */ var(--color-white) 30%
  );
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 1s ease;
  min-height: 230px;
  min-width: 250px;
}
.industry-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.industry-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
  color: var(--color-bg);
}
.industry-item p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.industry-item.flipped {
  background-image: none; /* Gradient ausknipsen */
  background-color: var(--color-accent-light); /* neue Farbe */
  /* optional: box-shadow oder Transform anpassen */
  padding: 0.3rem;
}

/* ----------------------------------------
 12) Call-to-Action Section
---------------------------------------- */
.cta-block {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--color-primary);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  max-width: 600px;
}
.cta-block .btn {
  flex: 1 1 auto;
  text-align: center;
}
.cta-block .btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-accent-light),
    var(--color-accent)
  );
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.cta-block .btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--color-accent),
    var(--color-accent-light)
  );
}
.cta-block .btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
}

/* ----------------------------------------
   13) Flip-Card Section
---------------------------------------- */
/* Größe der Karte und Grundstil */
.card-container {
  perspective: 1000000000px; /* Ermöglicht 3D-Effekt */
}

/* Innere Kartenschicht, die rotiert */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  /* how long the flip takes */
  transition: all 1s ease;
  /* Optional: leichtes Anheben beim Klick */
  /* min-width: 250px; */
  min-height: 180px;
}

/* Vorder- und Rückseite Grundstil */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  /* Rück- und Vorderseite erhalten z.B. unterschiedliche Hintergründe */
  text-align: center;
  backface-visibility: hidden; /* Rückseite verbergen, wenn umgedreht */
  -webkit-backface-visibility: hidden; /* Safari */
  cursor: pointer;
}

/* Rückseite spezifisch */
.card-back {
  background: #eb5a1d; /* orange z.B. Vollfarbe als Platzhalter, falls Bild nicht geladen wird */
  transform: rotateY(180deg);
  transition: all 0.8s ease;
}

/* Unterschiedliche Inhalte auf Rückseite */
.card-back-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.card-back-info {
  padding: 1rem;
  /* Bild plus Text anordnen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-back-info img {
  max-width: 80%;
  margin-bottom: 0.5rem;
}

/* Flip-Effekt: Wenn die Karte die Klasse .flipped hat, innere Karte drehen */
.card-container.flipped .card-inner {
  transform: rotateY(180deg);
}

/* ----------------------------------------
   14) Footer Section
---------------------------------------- */

/* Animation Slideer */

/* Ausgangszustand: Element ist nach links versetzt und unsichtbar */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Wenn sichtbar (im Viewport): gleitet an Position und wird sichtbar */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Wenn gerade verlassen (Viewport nach oben verlassen): nach rechts versetzen und ausblenden */
.animate-on-scroll.out {
  opacity: 0;
  transform: translateY(-20px);
}

.imageHero {
  max-width: 100%;
  height: 400px;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: #eabcae;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--color-accent-light);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}

table.table.table-sm {
    font-size: small;
}

/* ----------------------------------------
   x1) Mobile Anpassungen
   ---------------------------------------- */


@media (max-width: 1180px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-item p {
    padding-bottom: 1rem;
  }
  .menu-icon {
    display: block;
    width: 40px;
    height: auto;
    cursor: pointer;
    margin-left: 10px;
  }
  .navigation.active {
    border-radius: 8px 8px 0 0;
  }
  .links {
    display: flex;
    flex-direction: column;
    background: var(--color-accent-light);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: right;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease-out;
  }
  .links.active {
    max-height: fit-content;
    opacity: 1;
    align-items: end;
    border-radius: 0 0 8px 8px;
    padding: 20px 0;
  }
  .heroLinks a:not(.main-color) {
    margin: 5px 20px;
    padding: 5px 10px;
    border-bottom: 1px solid #555;
    color: var(--color-white) !important;
  }
  .hero-nav {
    padding: 0 40px;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero-flex {
    flex-direction: column;
    align-items: center;
  }
  .hero-image img {
    max-width: 100%;
    margin-top: 2rem;
    padding-left: 0;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content,
  .hero-image {
    max-width: 100%;
    padding-left: 0;
  }
  div#pkg-3 {
    grid-column: span 1;
  }
  .span2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .hero {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 5%
      ),
      linear-gradient(to top, #0b2a46 0%, rgba(11, 42, 70, 0) 20%),
      url(https://res.cloudinary.com/dvd2cd2be/image/upload/v1754395672/admin_gallery/sycvtjxrsitda5nljqmk.webp) center / cover no-repeat;
  }

  .section {
    padding: 0 20px;
  }
  .hero-section {
    padding: 0 20px;
  }
  .container {
    border-radius: 10px;
    margin: 20px auto;
  }
  .outer-wrapper {
    padding: 2rem 1rem;
  }
  .hero-content,
  .hero-image {
    max-width: 100%;
    min-height: 50vh;
    padding: 10px;
  }
  .readable p {
    text-align: left;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .service-list {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .service-list li {
    padding-left: 15px;
    padding-right: 15px;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .cta-block {
    flex-direction: column;
    align-items: stretch;
  }
  .home-grid {
    grid-template-columns: 1fr;
  }
  .home-blog-review {
    padding: 2rem 1rem;
  }
  .industry-grid {
    justify-items: center;
  }
  .icon-link {
    display: none;
  }
  .progress-line {
    height: 100vh;
    border-radius: 0px;
  }
  .scroll-indicator {
    left: 0px;
  }
  .hero-ctas .btn {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .review-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-review {
    min-height: 350px;
    background: url(/images/review-bg-mobile.webp) center / contain no-repeat;
  }
}

@media (min-width: 1350px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .readable {
    column-count: 2;
    column-gap: 2.5rem;
  }
  div#pkg-3 {
    grid-column: span 1;
  }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
} 