/* 
  Bagaric Facility Services - Global Styles
  Based on existing blog design system
*/

:root {
  /* ==========================================================
     VERBINDLICHES FARBSCHEMA – NUR diese Farben verwenden.
     Keine Gradients, keine Zwischentöne.
     ========================================================== */
  --blue-dark:  #0f172a;   /* Dunkelblau – Footer & alle dunklen Flächen (Standorte, FAQ, CTA) */
  --blue:       #093993;   /* Blau – Akzente, Eyebrows, dunkle Buttons */
  --green:      #4caf50;   /* Grün – Primär-Aktion (Buttons, Highlights) */
  --green-dark: #3d9c41;   /* Grün – Hover */

  /* Alt-Namen zeigen aufs Schema → alles bleibt automatisch konsistent */
  --bagablue: var(--blue);
  --btn-green: var(--green);
  --btn-green-h: var(--green-dark);

  --bagablue-pale: #eef2fa;   /* sehr helles Blau – zarte Flächen */

  /* Stahl-Grau-Akzent (Standort-Details/Pins) – bewusst separat, kein Blau/Grün */
  --bagagreen: #526f80;
  --bagagreenheller: #6e97af;
  --bagagreen-dark: #3d5464;
  --bagagreen-pale: #eef3f6;

  --nav-bg: #1a1a1a;
  --text: #1a1a1a;
  --muted: #555;
  --border: #dde3e8;
  --bg: #ffffff;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 10px;
}

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

.btn-primary:hover {
  background: var(--btn-green-h);
  border-color: var(--btn-green-h);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-green {
  background: var(--btn-green);
  color: var(--white);
  border: 2px solid var(--btn-green);
}

.btn-green:hover {
  background: var(--btn-green-h);
  border-color: var(--btn-green-h);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bagablue);
}

/* ── NAVIGATION ── */
.site-nav {
  background: transparent;
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  max-width: 90%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav.scrolled {
  top: 15px;
  background: rgba(15, 23, 42, 0.95); /* Deep footer navy blue */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 40px;
}

.nav-logo-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--btn-green);
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 5px;
}

.hero-eye, .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bagablue);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-eye::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--btn-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--btn-green);
}
.hero {
  position: relative;
  background: var(--bg);
  color: var(--white);
  padding: 140px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 700px;
}

.hero-grid {
  display: flex;
  width: 1300px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-video-bg {
  position: absolute;
  top: 15px;
  left: 2.5%;
  width: 95%;
  height: calc(100% - 30px);
  border-radius: 30px;
  z-index: 0;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-scrolled .hero-video-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero-video-bg.dark-overlay::before {
  background: rgba(15, 23, 42, 0.88);
}

.hero-video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 40%, rgba(15, 23, 42, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  width: 50%;
  text-align: left;
}

.hero-spacer {
  width: 50%;
}

.hero-centered {
  text-align: center;
  justify-content: center;
  background: var(--bagagreen);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 600px;
  padding: 140px 0 100px;
}

/* Compact version for Blog Index */
.hero-compact {
  min-height: 350px !important;
  padding: 100px 0 40px !important;
}

.hero-centered::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.hero-content-centered {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
}

.hero-centered h1 {
  font-size: clamp(40px, 8vw, 84px);
  text-align: center;
  margin: 0 auto 32px;
  line-height: 1.0;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-compact h1 {
  font-size: clamp(28px, 5vw, 48px) !important;
  margin-bottom: 16px !important;
}

.hero-centered p {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 800px;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-compact p {
  font-size: clamp(15px, 1.6vw, 18px) !important;
  max-width: 680px !important;
  margin-bottom: 24px !important;
}

.hero-centered .hero-btns {
  justify-content: center;
}

.hero-centered .article-meta {
  justify-content: center;
  margin-bottom: 24px;
}

/* Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.meta-item svg {
  opacity: 0.8;
  color: var(--btn-green);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-trust-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 60px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.6);
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--btn-green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(28px, 3.8vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: left;
  /* verteilt den Text gleichmaessig auf die Zeilen, statt die letzte
     Zeile als kurzen Rest stehen zu lassen */
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--btn-green);
  text-decoration: none;
}

.hero p {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  text-align: left;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--btn-green);
  padding: 16px 20px;
  border-radius: 4px 12px 12px 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  border-left-color: var(--white);
  transform: translateY(-5px);
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--btn-green);
  flex-shrink: 0;
}

.trust-num {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-video-bg {
    width: 100%;
  }

  .hero-video-bg::before {
    background: rgba(15, 23, 42, 0.8);
  }

  .hero-grid {
    flex-direction: column;
    text-align: left;
  }

  .hero-content,
  .hero-spacer {
    width: 100%;
  }

  .hero-btns {
    justify-content: flex-start;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero-video-bg {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
  }
  
  .site-nav {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    border-radius: 0 !important;
  }
  
  .site-nav.scrolled {
    top: 0 !important;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}

/* ── SECTION HEADERS (GLOBAL) ── */
.sec-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.sec-tag {
  display: inline-block;
  color: var(--bagablue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.sec-header h2 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}

.sec-header p {
  color: var(--muted);
  font-size: 17px;
}

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}


.sic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.sic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.8) 60%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.sic-card:hover .sic-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.9) 70%, rgba(15, 23, 42, 0.6) 100%);
}

.sic-content {
  position: relative;
  z-index: 2;
  padding: 35px 30px;
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.sic-card:hover .sic-content {
  transform: translateY(0);
}

.sic-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--white);
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.sic-icon svg {
  width: 100%;
  height: 100%;
}

.sic-card:hover .sic-icon {
  transform: scale(1.1) translateY(-5px);
  color: var(--bagagreen-heller);
}

.sic-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
  transition: color 0.3s;
}

.sic-card:hover .sic-content h3 {
  color: var(--bagagreen-heller);
}

.sic-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.5;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, height 0.4s ease, margin-bottom 0.4s ease;
}

.sic-card:hover .sic-content p {
  height: 45px;
  opacity: 1;
  margin-bottom: 20px;
}

.sic-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.sic-card:hover .sic-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── PHILOSOPHY SECTION ── */
.philosophy {
  padding: 120px 0;
  background: var(--bg);
  overflow: hidden;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.philosophy-video {
  position: relative;
}

.video-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.video-frame:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}



@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}



.badge-text {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}

.philosophy-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 50px;
}

.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.phil-card {
  background: var(--white);
  padding: 24px 30px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.phil-card:hover {
  transform: translateX(10px);
  border-color: var(--btn-green);
}

.phil-icon {
  width: 56px;
  height: 56px;
  background: var(--bagablue);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phil-icon svg {
  width: 28px;
  height: 28px;
}

.phil-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.phil-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.philosophy-quote {
  border-left: 4px solid var(--btn-green);
  padding-left: 30px;
  margin-bottom: 50px;
}

.philosophy-quote blockquote {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.philosophy-content .animate-up:nth-child(1) {
  animation-delay: 0.1s;
}

.philosophy-content .animate-up:nth-child(2) {
  animation-delay: 0.2s;
}

.philosophy-content .animate-up:nth-child(3) {
  animation-delay: 0.3s;
}

.philosophy-content .animate-up:nth-child(4) {
  animation-delay: 0.4s;
}

.philosophy-content .animate-up:nth-child(5) {
  animation-delay: 0.5s;
}

/* ── GALLERY SECTION (BEFORE/AFTER) ── */
.gallery {
  padding: 100px 0;
  background: #ffffff;
}

.gallery-container {
  max-width: 1300px !important;
  width: 90% !important;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.ba-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
  background: transparent;
  padding: 0;
  border-radius: 30px;
  border: none !important;
}

.ba-info {
  grid-column: span 2;
  padding: 20px 10px 10px;
}

.ba-info h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--bagablue);
}

.ba-info p {
  font-size: 18px;
  /* Larger text as requested */
  line-height: 1.6;
  color: var(--text-light);
}

.ba-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: none !important;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Removed labels */

.gallery-grid-small {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.gallery-item {
  background: transparent;
  padding: 0;
  border-radius: 30px;
  border: none !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.g-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.g-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-info h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--bagablue);
}

.g-info p {
  font-size: 16px;
  /* Larger text as requested */
  line-height: 1.5;
  color: var(--text-light);
}

/* ── REVIEWS MARQUEE ── */
.reviews-marquee {
  background: var(--bagablue-pale);
  padding: 84px 0 96px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* ── Google-Reviews Kopfbereich ── */
.reviews-head {
  max-width: 720px;
  margin: 0 auto 44px;
  padding: 0 24px;
  text-align: center;
}

/* identisch zu .sec-tag – blaues Eyebrow wie überall auf der Seite */
.reviews-eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--bagablue);
  margin-bottom: 12px;
}

/* identisch zu .sec-header h2 – dunkle Überschrift wie überall auf der Seite */
.reviews-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 26px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(9, 57, 147, 0.08);
  box-shadow: 0 10px 34px rgba(9, 57, 147, 0.10);
  padding: 12px 22px;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.reviews-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(9, 57, 147, 0.18);
  border-color: rgba(9, 57, 147, 0.16);
}

.reviews-badge .g-logo {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.reviews-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.reviews-badge-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-badge-score {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1;
}

.reviews-badge-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

.reviews-badge-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.marquee-container {
  max-width: 1300px !important;
  width: 90% !important;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  user-select: none;
  padding: 20px 0;
  /* Extra space to prevent hover clipping */
  /* Mask for fading edges */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  /* Tight gap */
  animation: marquee-scroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-pill {
  position: relative;
  background: var(--white);
  padding: 26px 32px;
  border-radius: 20px;
  border: 1px solid rgba(9, 57, 147, 0.07) !important;
  min-width: 380px;
  max-width: 480px;
  box-shadow: 0 12px 34px rgba(9, 57, 147, 0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

/* Buntes Google-"G" in der oberen rechten Ecke jeder Kachel */
.review-pill::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 26px;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.611 20.083H42V20H24v8h11.303c-1.649 4.657-6.08 8-11.303 8-6.627 0-12-5.373-12-12s5.373-12 12-12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 12.955 4 4 12.955 4 24s8.955 20 20 20 20-8.955 20-20c0-1.341-.138-2.65-.389-3.917z'/%3E%3Cpath fill='%23FF3D00' d='M6.306 14.691l6.571 4.819C14.655 15.108 18.961 12 24 12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 16.318 4 9.656 8.337 6.306 14.691z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.166 0 9.86-1.977 13.409-5.192l-6.19-5.238A11.91 11.91 0 0 1 24 36c-5.202 0-9.619-3.317-11.283-7.946l-6.522 5.025C9.505 39.556 16.227 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.611 20.083H42V20H24v8h11.303a12.04 12.04 0 0 1-4.087 5.571l.003-.002 6.19 5.238C36.971 39.205 44 34 44 24c0-1.341-.138-2.65-.389-3.917z'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.review-pill:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(9, 57, 147, 0.17);
}

.rp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 26px;
  /* Platz für das Google-G in der Ecke */
}

.rp-user-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.rp-user {
  font-weight: 800;
  font-size: 16px;
  color: #1a1a1a;
  /* Black as requested */
}

.rp-stars {
  color: #fbbf24;
  font-size: 14px;
}

.rp-avatar {
  order: -1;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--bagablue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.review-pill p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  white-space: normal;
  /* NO CUT OFF - Show full text */
  display: block;
  overflow: visible;
}

/* Pause on hover */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 120px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
}

.faq-content h2 {
  font-size: 44px;
  margin-top: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--bg);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.faq-q {
  font-weight: 800;
  font-size: 18px;
  color: var(--bagablue);
  margin-bottom: 10px;
}

.faq-a {
  color: var(--text-light);
  line-height: 1.6;
}

/* ── FINAL CTA (ELITE REDESIGN) ── */






/* Subtle Glow behind text */


.cta-badge-mini {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}







.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}





/* Floating Badges */


.top-right {
  top: 40px;
  right: 40px;
}

.bottom-left {
  bottom: 40px;
  left: -40px;
  animation-delay: 1s;
}



.fb-text strong {
  display: block;
  font-size: 15px;
  color: var(--bagablue);
}

.fb-text span {
  font-size: 12px;
  color: var(--muted);
}

@keyframes float-soft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 992px) {
  

  

  .bottom-left {
    left: 40px;
  }
}

/* ── SITE FOOTER ── */
.site-footer {
  padding: 100px 0 40px;
  background: #0f172a;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  height: 40px;
  margin-bottom: 25px;
}

.footer-brand p {
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--btn-green);
  transform: translateY(-5px);
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: white;
  opacity: 0.6;
  font-size: 14px;
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  opacity: 1;
  color: var(--btn-green);
  padding-left: 5px;
}

.footer-contact p {
  opacity: 0.6;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* umbricht auf schmalen Schirmen, statt die beiden Zeilen zu quetschen */
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 12px;
  /* Frueher stand hier opacity: 0.4. Die deckelt aber alles im Element -
     ein Kind kann sich nicht wieder aufhellen. Der Eindruck der
     Copyright-Zeile ist deshalb direkt in die Farbe gerechnet
     (0.6 Textfarbe x 0.4 Deckkraft = 0.24), damit der Agentur-Hinweis
     daneben heller sein kann. */
  color: rgba(255, 255, 255, 0.24);
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Agentur-Hinweis rechts in der Fusszeile - bewusst heller als das
   Copyright daneben, damit er lesbar ist. */
.footer-credit {
  /* Dieselbe Helligkeit wie die Footer-Navigation. Weiss waere die Stufe
     von Telefonnummer und E-Mail und damit lauter als die Seitenlinks. */
  color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
}

.footer-credit a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: white;
}

/* ── ANIMATIONS ── */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s;
  will-change: opacity, transform;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

/* Staggered delay for grid items */
.services-grid .animate-left:nth-child(2) {
  transition-delay: 0.1s;
}

.services-grid .animate-left:nth-child(3) {
  transition-delay: 0.2s;
}

.workflow-grid-new .animate-left:nth-child(1) {
  transition-delay: 0.1s;
}

.workflow-grid-new .animate-left:nth-child(2) {
  transition-delay: 0.2s;
}

.workflow-grid-new .animate-left:nth-child(3) {
  transition-delay: 0.3s;
}

.workflow-grid-new .animate-left:nth-child(4) {
  transition-delay: 0.4s;
}

/* ── MOBILE RESPONSIVENESS (Elite Refinement) ── */
@media (max-width: 1024px) {
  /* Navigation overrides moved to bottom */

  .workflow-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .journey-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .sec-header h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .workflow-grid-new {
    grid-template-columns: 1fr;
  }

  .review-pill {
    min-width: 280px;
    padding: 20px;
  }

  .marquee-track {
    gap: 15px;
  }

  .marquee-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .review-pill {
    min-width: 250px;
  }
}

/* ── QUALITY SECTION ── */
.quality {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.quality-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 30px;
}

.quality-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.q-step {
  background: var(--bg);
  padding: 24px 30px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.q-step:hover {
  transform: translateX(-10px);
  border-color: var(--bagablue);
}

.q-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.q-icon-custom {
  width: 32px;
  height: 32px;
  position: relative;
  color: var(--bagablue);
}

/* ── APP ANIMATION ── */
.anim-app .app-sync-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-sync 1.5s infinite;
}

@keyframes pulse-sync {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

/* ── QR SCAN ANIMATION ── */
.anim-qr-premium {
  overflow: hidden;
}

.qr-scan-line {
  stroke: var(--btn-green);
  animation: scan-vertical 2s ease-in-out infinite;
}

@keyframes scan-vertical {

  0%,
  100% {
    transform: translateY(-8px);
    opacity: 0;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ── TICKET ANIMATION ── */
.ticket-check {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  stroke: var(--btn-green);
}

.q-step:hover .ticket-check {
  animation: draw-check 0.6s ease forwards;
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

.q-icon-custom svg {
  width: 100%;
  height: 100%;
}

.q-text h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.q-text p {
  font-size: 14px;
  margin-bottom: 0;
}

.quality-video {
  position: relative;
}



.mirror-tilt:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}



.q-badge 

/* ── WORKFLOW SECTION (ELITE ROADMAP) ── */
.workflow {
  padding: 60px 0;
  /* Aggressively reduced */
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.workflow-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  /* Tighter margin */
}

.workflow-header h2 {
  font-size: 48px;
  /* Slightly refined */
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: -1.5px;
  margin-top: 10px;
}

.workflow-journey-wrapper {
  position: relative;
  padding: 10px 0;
}

.journey-connecting-line {
  position: absolute;
  top: 110px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--btn-green), transparent);
  opacity: 0.1;
  z-index: 1;
}

.workflow-grid-elite {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  /* Tighter gap */
  position: relative;
  z-index: 2;
}

.workflow-card-elite {
  background: var(--white);
  padding: 40px 25px 30px;
  /* Much tighter padding */
  border-radius: 24px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.workflow-card-elite:hover {
  transform: translateY(-12px);
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(76, 175, 80, 0.05);
}

.step-num {
  font-size: 80px;
  /* Even larger watermark */
  font-weight: 900;
  color: rgba(9, 57, 147, 0.03);
  position: absolute;
  top: 10px;
  right: 30px;
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-main);
}

.step-icon {
  width: auto;
  height: auto;
  color: var(--btn-green);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 36px;
  /* Slightly larger, cleaner icon */
  height: 36px;
  stroke-width: 1.5px;
  /* Thinner for elegance */
}

.workflow-card-elite:hover .step-icon {
  transform: scale(1.1);
}

.workflow-card-elite h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.workflow-card-elite p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.step-cta {
  margin-top: 30px;
  font-weight: 800;
  color: var(--btn-green);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.step-cta:hover {
  gap: 15px;
}

.workflow-card-highlight {
  background: var(--bagablue);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(9, 57, 147, 0.2);
}

.workflow-card-highlight .step-num {
  color: rgba(255, 255, 255, 0.05);
}

.workflow-card-highlight h4 {
  color: var(--white);
}

.workflow-card-highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.step-cta-btn {
  margin-top: 30px;
  display: block;
  /* Full width */
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: var(--btn-green);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.step-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
  background: #66bb6a;
}

@media (max-width: 1100px) {
  .workflow-grid-elite {
    grid-template-columns: 1fr 1fr;
  }

  .journey-connecting-line {
    display: none;
  }
}

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

/* ── GALLERY SECTION (REDESIGN) ── */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Project Showcase (Split Version with Auto-Slider) */
.project-showcase {
  background: var(--bagablue);
  /* Dark blue background */
  border-radius: 40px;
  /* Fully rounded again */
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 550px;
}

.showcase-images-side {
  position: relative;
  background: #000;
  overflow: hidden;
}

.showcase-track {
  height: 100%;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.showcase-slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Progress Bar */
.showcase-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.progress-bar {
  height: 100%;
  background: var(--btn-green);
  width: 0;
  transition: width 0.1s linear;
}

.showcase-content {
  padding: 60px;
  background: var(--bagablue);
  /* Match the dark blue from gallery hover */
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-meta {
  margin-bottom: 25px;
}

.project-cat {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4CAF50 !important;
  /* Brighter green */
  margin-bottom: 8px;
}

.project-meta h4 {
  font-size: 32px;
  color: #ffffff !important;
  /* Force white */
  font-weight: 800;
  margin: 0;
}

.showcase-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9) !important;
  /* Force near-white */
  margin-bottom: 35px;
}

.showcase-content .btn-text {
  color: #4CAF50 !important;
  font-weight: 700;
  text-decoration: none;
}

.showcase-content .btn-text:hover {
  color: #ffffff !important;
}

/* Project Showcase Navigation */
.showcase-nav-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 25;
}

.slide-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--bagablue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slide-btn:hover {
  background: white;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.slide-btn.prev {
  transform: translateX(-10px);
}

.slide-btn.next {
  transform: translateX(10px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ba-card:hover img {
  transform: scale(1.08);
}

.ba-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 5;
}

.ba-badge.after {
  background: var(--btn-green);
}

.showcase-content {
  padding: 60px;
}

.project-cat {
  display: inline-block;
  color: var(--btn-green);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.showcase-content h4 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--bagablue);
  line-height: 1.1;
}

.showcase-content p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--bagablue);
  font-size: 15px;
  transition: var(--transition);
}

.btn-text i {
  transition: var(--transition);
}

.btn-text:hover {
  color: var(--btn-green);
}

.btn-text:hover i {
  transform: translateX(8px);
}

/* Gallery Grid Modern */
.gallery-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-item-new {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.g-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.g-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 57, 147, 0.9), transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item-new:hover .g-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-new:hover img {
  transform: scale(1.1);
}

.g-overlay h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.g-overlay .project-cat {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsiveness */
@media (max-width: 1200px) {
  .project-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-images {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .gallery-grid-modern {
    grid-template-columns: 1fr;
  }

  .showcase-content {
    padding: 40px 24px;
  }

  .showcase-content h4 {
    font-size: 26px;
  }
}

/* ── IMPACT SECTION (SUSTAINABILITY) ── */
.impact-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.impact-video-side {
  position: relative;
}

.impact-video-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.impact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-accent-border {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  pointer-events: none;
  z-index: 3;
}

.impact-floating-card {
  position: absolute;
  bottom: 60px;
  right: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 25px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: 1px solid white;
}

.ifc-icon {
  font-size: 32px;
}

.ifc-text {
  display: flex;
  flex-direction: column;
}

.ifc-num {
  font-size: 24px;
  font-weight: 900;
  color: #1b4332;
  line-height: 1;
}

.ifc-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.sec-tag-green {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(27, 67, 50, 0.1);
  color: #1b4332;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.impact-content-side h2 {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 25px;
}

.impact-intro {
  font-size: 20px;
  font-weight: 600;
  color: #1b4332;
  line-height: 1.5;
  margin-bottom: 40px;
}

.impact-story p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 30px;
}

.highlight-quote-box {
  position: relative;
  padding: 30px 40px;
  background: var(--bagablue);
  border-radius: 24px;
  margin-bottom: 40px;
  overflow: hidden;
}

.highlight-quote-box h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.hq-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--btn-green);
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.stat-pill {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.stat-pill:hover {
  transform: translateY(-5px);
  border-color: #1b4332;
}

.stat-icon {
  font-size: 24px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-info strong {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
}

.stat-info span {
  font-size: 13px;
  color: var(--muted);
}

.impact-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.impact-trust {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .impact-video-frame {
    aspect-ratio: 16/9;
  }

  .impact-floating-card {
    right: 20px;
    bottom: -20px;
  }
}

/* ── FAQ SECTION (MINIMALIST) ── */
.faq-section {
  padding: 120px 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-header h2 {
  font-size: 52px;
  font-weight: 900;
  color: #1a1a1a;
  /* Deep Black, no blue */
  letter-spacing: -1.5px;
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--blue-dark);
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(9, 57, 147, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  /* Clickable everywhere */
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(9, 57, 147, 0.28);
}

.faq-item.active {
  box-shadow: 0 22px 52px rgba(9, 57, 147, 0.32);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: #ffffff;
  color: var(--bagablue);
}

/* ── LOCATIONS SECTION ── */
.locations {
  padding: 120px 0;
  background: var(--bg);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(76, 175, 80, 0.3);
}

.location-card.active {
  border-color: var(--btn-green);
  background: linear-gradient(to bottom, #ffffff, #f9fbf9);
}

.location-card.active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--btn-green);
}

.loc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.loc-header h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--bagablue);
}

.loc-status {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--btn-green);
  color: var(--white);
}

.loc-company {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 25px;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.loc-item svg {
  width: 20px;
  height: 20px;
  color: var(--btn-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-item span {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-light);
}

.loc-item strong {
  color: var(--text);
}

.location-card > * {
  position: relative;
  z-index: 1;
}

.loc-map-bg {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 220px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  transition: var(--transition);
}

.location-card:hover .loc-map-bg {
  opacity: 0.7;
}

.location-card.active .loc-map-bg {
  opacity: 1;
}

.loc-map-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--btn-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  animation: pulse-dot 2s infinite;
}

.dot-hamburg { top: 22%; left: 42%; }
.dot-berlin { top: 32%; left: 70%; }

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Nav Locations Switcher */
.nav-locations {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px;
  border-radius: 100px;
  margin-right: 20px;
  gap: 2px;
}

.site-nav.scrolled .nav-locations {
  background: #f1f5f9;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.loc-link {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition);
}

.loc-link:hover {
  color: var(--white);
}

.site-nav.scrolled .loc-link {
  color: var(--text-light);
}

.site-nav.scrolled .loc-link:hover {
  color: var(--bagablue);
}

.loc-link.active {
  background: var(--btn-green) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.loc-divider {
  display: none;
}

/* ── SITE FOOTER (ELITE DESIGN) ── */
.site-footer {
  background: #0f172a;
  /* Deep dark navy */
  color: rgba(255, 255, 255, 0.6);
  padding: 100px 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  height: 40px;
  /* Lock height to match logo */
}

.footer-brand .footer-logo {
  height: 40px;
  display: block;
}

.footer-logo-name {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-5px);
  margin-bottom: 15px;
  /* Aggressive nudge */
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--btn-green);
  transform: translateX(5px);
}

.footer-cta-link {
  margin-top: 15px;
}

.footer-cta-link a {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

/* Trust Bar */
.footer-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
}

.google-trust .stars {
  color: #FFD700;
  /* Gold */
  font-size: 18px;
  letter-spacing: 2px;
}

.trust-icon {
  width: 40px;
  /* Larger background */
  height: 40px;
  background: rgba(76, 175, 80, 0.15);
  color: var(--btn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  /* Smaller icon inside */
  height: 18px;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  /* wie oben: keine opacity, sonst waere der Agentur-Hinweis wieder gedeckelt */
  color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--btn-green);
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-trust-bar {
    flex-direction: column;
    gap: 20px;
  }

  .trust-divider {
    display: none;
  }
}

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

/* ── PREMIUM MOBILE OVERRIDES ── */
@media (max-width: 992px) {
  /* Navigation */
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .nav-links a {
    font-size: 24px;
    font-weight: 800;
  }
  
  .nav-cta .btn {
    font-size: 18px;
    padding: 14px 32px;
  }

  /* Grid Resets */
  .philosophy-grid,
  .quality-grid,
  .impact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .philosophy-video, .quality-video {
    order: -1; /* Move video above text */
  }

  /* Padding Adjustments */
  .services, .philosophy, .quality, .workflow, .gallery, .impact-section, .faq-section, .final-cta, .site-footer {
    padding: 50px 0;
  }

  
}

@media (max-width: 768px) {
  /* Typography */
  .sec-header h2, .philosophy-content h2, .quality-content h2, .impact-content-side h2, .faq-header h2, .cta-content h2, .workflow-header h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
  }
  
  .hero h1 {
    font-size: 46px;
    line-height: 1.05;
    letter-spacing: -1px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Sections */
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-trust {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablet/mobile */
  }
  
  /* Cards */
  .service-card {
    padding: 30px;
  }
  
  .phil-card, .q-step, .stat-pill {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  /* Floating Badges fix for mobile */
  
  
  
  
  .impact-floating-card {
    right: 10px;
    bottom: 10px;
    padding: 15px;
  }

  /* Videos */
  .video-frame video {
    height: 350px !important;
  }
  .impact-video-frame {
    aspect-ratio: auto !important;
    height: 300px !important;
  }

  /* Workflow */
  .workflow-grid-elite {
    grid-template-columns: 1fr;
  }
  
  .workflow-card-elite {
    padding: 30px 20px;
  }

  /* Gallery */
  .project-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .showcase-images-side {
    aspect-ratio: 4/3;
  }
  
  .showcase-content {
    padding: 40px 24px;
  }

  /* Impact */
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-item {
    padding: 20px 15px !important;
  }
  .faq-question {
    padding: 6px 5px !important;
  }
  .faq-answer {
    padding: 0 5px !important;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .location-card {
    padding: 30px 20px;
  }
  .loc-header h3 {
    font-size: 24px;
  }

  /* Final CTA */
  
  
  
  
  
  .floating-badge 
  .floating-badge .fb-text strong {
    font-size: 14px;
  }
  .floating-badge .fb-text span {
    font-size: 11px;
  }
  
  .top-right {
    top: 20px;
    right: 10px;
  }
  
  .bottom-left {
    bottom: 20px;
    left: 10px;
    top: auto;
  }
  
  
  

  /* Footer */
  .footer-grid {
    gap: 40px;
  }
  .footer-trust-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* Infinite Gallery Marquee */
.gallery-marquee-wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.g-marquee-row {
  width: 100%;
  overflow: hidden;
}

.g-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.track-left {
  animation: scrollLeftGallery 50s linear infinite;
}

.track-right {
  animation: scrollRightGallery 50s linear infinite;
}

.g-marquee-track:hover {
  animation-play-state: paused;
}

.g-marquee-item {
  width: 380px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  cursor: pointer;
}

.g-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
  filter: grayscale(20%) brightness(0.9);
}

.g-marquee-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1.1);
}

@keyframes scrollLeftGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

@keyframes scrollRightGallery {
  0% { transform: translateX(calc(-50% - 10px)); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .g-marquee-item {
    width: 280px;
    height: 200px;
  }
}

/* Green Impact Card */
.green-impact-section {
  padding: 80px 0;
}

.green-impact-card {
  background: #0d2e1a; /* Solid dark green base */
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

.gic-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Higher opacity to see the video clearly */
  z-index: 0;
  pointer-events: none;
}

.green-impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(13, 46, 26, 0.7) 0%, rgba(26, 58, 42, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.gic-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.gic-content h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  margin: 20px 0;
  color: white;
}

.gic-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 50px;
}

.gic-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.gic-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.gic-stat:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.gic-icon {
  width: 48px;
  height: 48px;
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gic-icon svg {
  width: 24px;
  height: 24px;
}

.gic-stat-text {
  display: flex;
  flex-direction: column;
}

.gic-stat-text strong {
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.gic-stat-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.gic-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gic-trust {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 992px) {
  .gic-stats-row {
    grid-template-columns: 1fr;
  }
}

/* Workflow Accordion */
.accordion-container {
  display: flex;
  gap: 16px;
  height: 500px;
  width: 100%;
  margin-top: 50px;
}

.acc-item {
  flex: 1;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.acc-item.active {
  flex: 4;
}

.acc-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.acc-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.acc-item.active .acc-bg img {
  transform: scale(1.05);
}

.acc-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(13, 46, 26, 0.95) 0%, rgba(13, 46, 26, 0.1) 100%);
  transition: background 0.6s ease;
}

.acc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.acc-num {
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  margin-bottom: auto;
}

.acc-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  transition-delay: 0s;
  max-width: 400px;
}

.acc-item.active .acc-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.acc-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
  white-space: nowrap;
}

.acc-text p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.8);
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 992px) {
  .accordion-container {
    flex-direction: column;
    height: 800px;
  }
  .acc-item.active {
    flex: 3;
  }
  .acc-text h3 {
    white-space: normal;
  }
}

/* Cinematic Philosophy */
.philosophy-cinematic {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: white;
  margin: 60px 0;
}

.phil-cine-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.phil-cine-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phil-cine-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
}

.phil-cine-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.phil-cine-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.sec-tag-white {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.phil-cine-header h2 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
}

.intro-text-white {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.phil-cine-cards {
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 60px;
}

.phil-cine-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.phil-cine-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.phil-icon-cine {
  width: 56px;
  height: 56px;
  background: var(--btn-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 24px;
}

.phil-icon-cine svg {
  width: 28px;
  height: 28px;
}

.phil-cine-card h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.phil-cine-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.phil-cine-quote {
  max-width: 800px;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 40px;
  border-radius: 20px;
  border-left: 4px solid var(--btn-green);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.phil-cine-quote blockquote {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin: 0;
}

@media (max-width: 992px) {
  .phil-cine-cards {
    flex-direction: column;
  }
}

/* Bento Grid Philosophy */
.philosophy-bento-section {
  padding: 100px 0;
  background: var(--bg);
}

.bento-header {
  margin-bottom: 50px;
  text-align: center;
}

.bento-header h2 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  margin-top: 16px;
  color: var(--text);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 24px;
}

.bento-item {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.bento-video {
  grid-column: 1;
  grid-row: 1 / 5;
  position: relative;
  min-height: 600px;
}

.bento-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-video-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 800;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bento-intro {
  padding: 40px;
  background: var(--bagagreen-pale);
  border-color: transparent;
  display: flex;
  align-items: center;
}

.bento-intro p {
  font-size: 20px;
  font-weight: 600;
  color: var(--btn-green);
  line-height: 1.5;
  margin: 0;
}

.bento-card {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: var(--bagagreen-pale);
  color: var(--btn-green);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bento-icon svg {
  width: 28px;
  height: 28px;
}

.bento-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.bento-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.bento-quote {
  padding: 30px 40px;
  background: var(--btn-green);
  color: white;
  border-color: transparent;
  display: flex;
  align-items: center;
}

.bento-quote blockquote {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-video {
    grid-column: 1;
    grid-row: 1;
    min-height: 400px;
  }
}

/* Super Polished Original Layout */
.philosophy {
  padding: 100px 0;
  background: #ffffff;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-video {
  position: relative;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  transform: scale(0.98);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-frame:hover {
  transform: scale(1);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  pointer-events: none;
}





.badge-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.philosophy-content h2 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  margin: 16px 0 24px;
  line-height: 1.2;
}

.philosophy-content .intro-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 50px;
}

.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.phil-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.phil-icon {
  width: 64px;
  height: 64px;
  background: var(--bagagreen-pale);
  color: var(--btn-green);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phil-icon svg {
  width: 32px;
  height: 32px;
}

.phil-text-wrap h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.phil-text-wrap p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.philosophy-quote {
  position: relative;
  padding-left: 30px;
}

.philosophy-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -10px;
  font-size: 120px;
  color: var(--bagagreen-pale);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.philosophy-quote blockquote {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

@media (max-width: 992px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .video-frame {
    aspect-ratio: 16/9;
  }
}

/* Editorial Philosophy Overlap */
.philosophy-editorial {
  padding: 120px 0;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.pe-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.pe-video-col {
  width: 55%;
  position: relative;
  z-index: 1;
}

.pe-video-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.pe-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pe-video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.pe-content-col {
  width: 55%;
  margin-left: -10%; /* Overlap */
  position: relative;
  z-index: 2;
}

.pe-content-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 70px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.5);
}

.pe-content-card .sec-tag {
  margin-bottom: 20px;
  display: inline-block;
}

.pe-content-card h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.1;
}

.pe-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.pe-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pe-icon {
  width: 54px;
  height: 54px;
  background: var(--bagagreen-pale);
  color: var(--btn-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pe-icon svg {
  width: 24px;
  height: 24px;
}

.pe-text h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.pe-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.pe-quote {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.pe-quote blockquote {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  position: relative;
}

.pe-quote blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 80px;
  color: var(--bagagreen-pale);
  font-family: serif;
  line-height: 1;
  z-index: -1;
  opacity: 0.5;
}

@media (max-width: 992px) {
  .pe-wrapper {
    flex-direction: column;
  }
  .pe-video-col {
    width: 100%;
  }
  .pe-video-wrapper {
    height: 400px;
    border-radius: 30px 30px 0 0;
  }
  .pe-content-col {
    width: 100%;
    margin-left: 0;
    margin-top: -50px; /* Vertical overlap on mobile */
  }
  .pe-content-card {
    padding: 40px 30px;
    border-radius: 30px;
  }
}

/* Philosophy Glass Layout */
.philosophy-glass {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 850px;
}

.pg-video-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.pg-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(13, 46, 26, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.pg-content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.pg-glass-card {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 60px;
  color: white;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.pg-glass-card h2 {
  color: white;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  margin: 20px 0;
  line-height: 1.2;
}

.pg-glass-card .intro-text {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.pg-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pg-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pg-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4CAF50;
}

.pg-icon svg {
  width: 24px;
  height: 24px;
}

.pg-text h4 {
  color: white;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pg-text p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.6;
}

.pg-quote {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pg-quote blockquote {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .philosophy-glass { padding: 80px 0; min-height: auto; }
  .pg-content-wrapper { justify-content: center; }
  .pg-glass-card { padding: 40px 20px; border-radius: 24px; }
}

/* Inverse modifier for Editorial Overlap */
.philosophy-editorial.pe-inverse .pe-wrapper {
  flex-direction: row-reverse;
}

.philosophy-editorial.pe-inverse .pe-content-col {
  margin-left: 0;
  margin-right: -10%; /* Overlap from the left onto the video on the right */
}

@media (max-width: 992px) {
  .philosophy-editorial.pe-inverse .pe-wrapper {
    flex-direction: column;
  }
  .philosophy-editorial.pe-inverse .pe-content-col {
    margin-right: 0;
    margin-top: -50px; /* Same vertical overlap as normal */
  }
}

/* PEPP UPDATES */
.pe-glow-blob {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.4) 0%, rgba(76, 175, 80, 0) 70%);
  transform: translateY(-50%);
  filter: blur(80px);
  z-index: 1; /* behind the card */
  pointer-events: none;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
  0% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  100% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

.pe-content-card {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.pe-content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 120px rgba(76, 175, 80, 0.15);
}

.pe-feature {
  transition: transform 0.3s ease;
}

.pe-feature:hover {
  transform: translateX(10px);
}

.pe-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}

.pe-feature:hover .pe-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--btn-green);
  color: white;
}

/* Floating Badges */
.pe-video-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.5);
}

.pe-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--bagagreen-pale);
  color: var(--btn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.pe-badge-text {
  color: var(--text);
  font-size: 16px;
}

.pe-badge-text strong {
  color: var(--btn-green);
  font-weight: 900;
}

.anim-float {
  animation: float-badge 6s ease-in-out infinite;
}

.anim-float-delay {
  animation: float-badge 6s ease-in-out infinite;
  animation-delay: -3s;
}

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

@media (max-width: 992px) {
  .pe-glow-blob {
    width: 300px;
    height: 300px;
    top: 0;
    right: 0;
    transform: none;
  }
  .pe-video-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
  }
}


/* --- RESTORED LIVE CSS --- */
/* ── PHILOSOPHY SECTION ── */
.philosophy {
  padding: 120px 0;
  background: var(--bg);
  overflow: hidden;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.philosophy-video {
  position: relative;
}

.video-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.video-frame:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.video-floating-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.badge-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--bagagreenheller);
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}

.philosophy-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 50px;
}

.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.phil-card {
  background: var(--white);
  padding: 24px 30px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.phil-card:hover {
  transform: translateX(10px);
  border-color: var(--bagagreenheller);
}

.phil-icon {
  width: 56px;
  height: 56px;
  background: var(--bagablue-pale);
  color: var(--bagablue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phil-icon svg {
  width: 28px;
  height: 28px;
}

.phil-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.phil-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.philosophy-quote {
  border-left: 4px solid var(--bagagreenheller);
  padding-left: 30px;
  margin-bottom: 50px;
}

.philosophy-quote blockquote {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.philosophy-content .animate-up:nth-child(1) {
  animation-delay: 0.1s;
}

.philosophy-content .animate-up:nth-child(2) {
  animation-delay: 0.2s;
}

.philosophy-content .animate-up:nth-child(3) {
  animation-delay: 0.3s;
}

.philosophy-content .animate-up:nth-child(4) {
  animation-delay: 0.4s;
}

.philosophy-content .animate-up:nth-child(5) {
  animation-delay: 0.5s;
}


/* ── QUALITY SECTION ── */
.quality {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.quality-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 30px;
}

.quality-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.q-step {
  background: var(--bg);
  padding: 24px 30px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.q-step:hover {
  transform: translateX(-10px);
  border-color: var(--bagablue);
}

.q-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.q-icon-custom {
  width: 32px;
  height: 32px;
  position: relative;
  color: var(--bagablue);
}

/* ── APP ANIMATION ── */
.anim-app .app-sync-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-sync 1.5s infinite;
}

@keyframes pulse-sync {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

/* ── QR SCAN ANIMATION ── */
.anim-qr-premium {
  overflow: hidden;
}

.qr-scan-line {
  stroke: var(--bagagreenheller);
  animation: scan-vertical 2s ease-in-out infinite;
}

@keyframes scan-vertical {

  0%,
  100% {
    transform: translateY(-8px);
    opacity: 0;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ── TICKET ANIMATION ── */
.ticket-check {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  stroke: var(--bagagreenheller);
}

.q-step:hover .ticket-check {
  animation: draw-check 0.6s ease forwards;
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

.q-icon-custom svg {
  width: 100%;
  height: 100%;
}

.q-text h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.q-text p {
  font-size: 14px;
  margin-bottom: 0;
}

.quality-video {
  position: relative;
}

.mirror-tilt {
  transform: perspective(1000px) rotateY(5deg);
}

.mirror-tilt:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.q-badge {
  left: -20px;
  right: auto !important;
}

.q-badge .badge-num {
  color: var(--bagablue);
}



@media (max-width: 992px) {
  .philosophy-grid,
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .philosophy-video, .quality-video {
    order: -1;
  }
}

@media (max-width: 576px) {
  .video-floating-badge {
    padding: 16px;
    right: -10px;
    top: 20px;
  }
  .badge-num {
    font-size: 24px;
  }
}


/* ── FINAL CTA (REDESIGN) ── */
.final-cta {
  padding: 140px 0;
  background: var(--bg);
}

.cta-elite-card {
  background: var(--blue-dark);
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(9, 57, 147, 0.2);
}

.cta-elite-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  padding: 80px 80px 80px 100px;
  position: relative;
  z-index: 5;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h2 {
  font-size: clamp(36px, 4vw, 48px) !important;
  font-weight: 900 !important;
  margin-bottom: 24px;
  line-height: 1.1 !important;
  color: var(--white);
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

.cta-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.cta-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.cta-elite-card:hover .cta-main-img {
  transform: scale(1);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.floating-badge.top-right {
  top: 60px;
  right: 40px;
  animation-delay: -2s;
}

.floating-badge.bottom-left {
  bottom: 60px;
  left: -20px;
  animation-delay: -4s;
}

.fb-icon {
  width: 44px;
  height: 44px;
  background: var(--bagagreen);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
}

.fb-text {
  display: flex;
  flex-direction: column;
}

.fb-text strong {
  color: var(--bagablue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.fb-text span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

@media (max-width: 992px) {
  .cta-elite-card {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }
  .cta-content {
    padding: 60px 40px;
  }
  .cta-main-img {
    clip-path: none;
    position: relative;
    min-height: 400px;
  }
  .floating-badge.bottom-left {
    left: 20px;
    bottom: 20px;
  }
}


/* ── INTERACTIVE MAP SECTION ── */
.interactive-map-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
  /* Dunkle Marken-Karte – gleiches Dunkelblau wie Footer/FAQ/CTA (Schema). */
  background: var(--blue-dark);
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(9, 57, 147, 0.28);
}

.map-preview-panel {
  background: var(--white);
  border-radius: 40px;
  padding: 50px;
  min-height: 480px;
  box-shadow: 0 40px 100px rgba(9, 57, 147, 0.08);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-preview-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 120px rgba(9, 57, 147, 0.12);
}

.mp-placeholder {
  text-align: center;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mp-placeholder-icon {
  width: 64px;
  height: 64px;
  color: var(--border);
  margin-bottom: 10px;
}

.mp-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.mp-header h3 {
  font-size: 32px;
  font-weight: 900;
  color: var(--bagablue);
}

.mp-badge {
  background: var(--bagagreen);
  color: var(--white);
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mp-company {
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 30px;
}

.mp-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.mp-item svg {
  width: 24px;
  height: 24px;
  color: var(--bagagreen);
  flex-shrink: 0;
  margin-top: 2px;
}

.mp-item strong {
  color: var(--text);
}

.btn-glass-dark {
  background: var(--bagablue);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 10px 20px rgba(9, 57, 147, 0.2);
}

.btn-glass-dark:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(9, 57, 147, 0.3);
}

/* Map Visual */
.map-visual-container {
  position: relative;
  width: 100%;
  /* Seitenverhältnis der detaillierten Karte (viewBox 586×793), damit die
     Pins exakt sitzen (kein Letterbox-Versatz). */
  aspect-ratio: 586 / 793;
  /* Breite begrenzen + zentrieren, sonst wird die hochkant-Karte zu hoch */
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.germany-map-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* top/left bezeichnen den Ort auf der Karte. Ohne diese Verschiebung
     saesse dort die linke obere Ecke des Pins, der sichtbare Punkt aber
     mittig und weiter unten - dadurch rutschten Hamburg und Berlin je
     nach Breite ihrer Beschriftung 8 bis 11 Prozentpunkte nach Osten.
     Jetzt liegt der Punkt selbst auf der Koordinate. */
  transform: translate(-50%, -15%);
  transform-origin: 50% 15%;
}

.map-pin:hover, .map-pin.active {
  /* Verschiebung mitfuehren, sonst springt der Pin beim Hover an die Ecke */
  transform: translate(-50%, -15%) scale(1.2);
  z-index: 20;
}

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--bagagreen);
  border-radius: 50%;
  opacity: 0.4;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pin-dot {
  position: relative;
  width: 16px;
  height: 16px;
  background: var(--bagagreen);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map-pin.active .pin-dot {
  background: var(--bagablue);
}
.map-pin.active .pin-pulse {
  background: var(--bagablue);
}

.pin-label {
  margin-top: 8px;
  background: var(--white);
  color: var(--bagablue);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.map-pin:hover .pin-label, .map-pin.active .pin-label {
  background: var(--bagablue);
  color: var(--white);
}

@keyframes ping {
  75%, 100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* Positioning Pins on Germany Map (Approximate based on SVG bounds) */
.pin-hamburg {
  top: 20.52%;
  left: 45.32%;
}

.pin-berlin {
  top: 34.67%;
  left: 82.26%;
}

@media (max-width: 992px) {
  .interactive-map-section {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 30px;
  }
  .map-visual-container {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}


/* ── FUNNEL LAYOUT STYLES ── */
.funnel-header {
  background: var(--bagablue);
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.funnel-header-inner {
  display: flex;
  justify-content: center; /* Center the logo */
  align-items: center;
}

.funnel-footer {
  background: var(--bagablue);
  padding: 40px 0;
  margin-top: auto;
}



.funnel-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ff-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.ff-logo:hover {
  opacity: 1;
}

.ff-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.ff-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.ff-links a:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .funnel-footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
}

/* ────────────────────────────────────────────────────────────
   NUR GROSSE / ULTRA-WIDE MONITORE (> 2560px)
   Normale Bildschirme (Laptop, Full-HD 1920, QHD 2560) bleiben
   komplett unverändert – exakt wie vorher, KEIN Zoom.
   Erst oberhalb eines Standard-QHD-Monitors wird der Inhalt und
   die Sektionsbreite proportional mitskaliert, damit die Seite
   auf sehr breiten Monitoren nicht als kleine Insel wirkt.
   (Browser ohne zoom-Support ignorieren die Regel → alter Zustand.)
   Werte bei Bedarf feinjustieren.
   ──────────────────────────────────────────────────────────── */
/* Ziel: Auf sehr breiten Monitoren soll sich die Seite wie ein
   angenehmer ~1700px-Desktop verhalten – nur physisch groß skaliert.
   Der zoom-Faktor je Stufe = Monitorbreite / ~1720, damit Text,
   Abstände und Layout exakt wie auf einem normalen Bildschirm wirken,
   nur größer. Zum Nachjustieren einfach alle zoom-Werte gemeinsam
   etwas anheben (größer) oder senken (kleiner). */
@media (min-width: 2561px) { body { zoom: 1.5; } }
@media (min-width: 2880px) { body { zoom: 1.72; } }
@media (min-width: 3200px) { body { zoom: 1.95; } }   /* z.B. 3440px Ultrawide */
@media (min-width: 3520px) { body { zoom: 2.15; } }
@media (min-width: 3840px) { body { zoom: 2.3; } }    /* 4K / UWQHD */
@media (min-width: 4320px) { body { zoom: 2.55; } }
@media (min-width: 4800px) { body { zoom: 2.85; } }
@media (min-width: 5120px) { body { zoom: 3.05; } }   /* 5K2K Super-Ultrawide */
@media (min-width: 5760px) { body { zoom: 3.45; } }

/* ── BREADCRUMB IM HERO ──────────────────────────────────────────
   Sichtbarer Pfad ueber der H1. Ergaenzt das BreadcrumbList-Schema
   um einen echten Link und macht die Ebene fuer Besucher sichtbar.
   Heller Text, weil der Hero dunkel unterlegt ist.               */
.hero-bc {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-bc a,
.hero-bc span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.hero-bc a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero-bc .sep {
  color: rgba(255, 255, 255, 0.4);
}

.hero-bc .cur {
  color: #fff;
  font-weight: 600;
}
