:root {
  /* Colors from briefing */
  --c-orange: #FC4706;
  --c-purple: #6D088C;
  --c-dark: #111118;
  --c-gray: #3A3A4A;
  --c-muted: #8A8A9A;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F7F7FA;
  --c-border: #E8E8F0;

  /* Gradients */
  --grad-nav: linear-gradient(135deg, #FC4706 0%, #C02860 60%, #710985 100%);
  --grad-primary: linear-gradient(135deg, #FC4706 0%, #C02860 60%, #4F06AF 100%);
  --grad-hover: linear-gradient(135deg, #FD6530 0%, #B03070 60%, #4F06AF 100%);

  /* Typography */
  --font-heading: 'Open Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(17, 17, 24, 0.05);
  --shadow-md: 0 12px 24px rgba(17, 17, 24, 0.08);
  --shadow-lg: 0 24px 48px rgba(17, 17, 24, 0.12);
  --shadow-float: 0 32px 64px rgba(255, 93, 32, 0.15);

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--c-gray);
  background-color: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--c-purple);
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.48rem, 4.8vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.65rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: none !important;
  /* Removed site-wide */
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section-pad {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 8rem 0;
  }
}

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

.subtext {
  color: var(--c-dark);
  font-size: 1.125rem;
  max-width: 60ch;
}

.subtext-center {
  margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: var(--trans-normal);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-orange);
  color: white;
  box-shadow: 0 8px 24px rgba(252, 71, 6, 0.3);
}

.btn-primary:hover {
  background: #E03D00;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(252, 71, 6, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 1px solid var(--c-border);
}

.hero-subpage {
  padding-top: 160px;
  padding-bottom: 2rem;
  background: white;
  text-align: center;
}

.hero-subpage+section,
.hero-subpage+.section-pad {
  padding-top: 1rem !important;
}

.hero-subpage h1,
.hero-subpage h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--c-purple);
  margin-bottom: 1.5rem;
}



.hero-subpage h1 {
  margin-bottom: 1.5rem;
  color: var(--c-purple);
}

/* Center the subtitle text in subpage heroes */
.hero-subpage .subtext {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}


.btn-outline:hover {
  border-color: var(--c-dark);
  background: var(--c-bg-soft);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-white {
  background: white;
  color: var(--c-dark);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes floatY {

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

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

@keyframes blobAnim {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  33% {
    transform: scale(1.1) translate(30px, -50px);
  }

  66% {
    transform: scale(0.9) translate(-20px, 20px);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: calc(1.5rem + 20px);
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  transition: var(--trans-normal);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  background: var(--grad-nav);
  border-radius: 100px;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.9rem 2.5rem;
  /* Slightly taller */
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 10;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 16rem;
  /* Wider clearance for the logo + wordmark */
}

.nav-left,
.nav-right {
  display: flex;
  justify-content: space-between;
  gap: 4.25rem;
  flex: 1;
  align-items: center;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: white;
  /* Restored to white */
  font-weight: 700;
  font-size: 1rem;
  transition: var(--trans-fast);
}

.nav-cta {
  display: none;
  /* Removed from navbar */
}

.nav-cta:hover {
  transform: scale(1.05) translateY(-1px) !important;
  box-shadow: 0 8px 25px rgba(252, 71, 6, 0.3) !important;
}

.nav-left a:hover,
.nav-right a:hover {
  opacity: 0.8;
}

.lang-switch {
  background: white;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  margin-left: 1rem;
}

.lang-switch .active {
  color: var(--c-purple);
}

.lang-switch .sep {
  color: var(--c-muted);
  font-weight: 400;
}

.lang-switch .inactive {
  color: var(--c-muted);
  font-weight: 400;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: var(--trans-fast);
}

/* Section 1: Hero */
.hero {
  position: relative;
  padding-top: calc(68px + 7rem);
  padding-bottom: 8rem;
  background-image: url('02_Hero/hero_background.svg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 100px;
}

.hero-blobs {
  display: none;
}

.hero-subpage {
  padding-top: 180px;
}

@media (max-width: 768px) {
  .hero-subpage {
    padding-top: 140px;
    padding-bottom: 4rem;
  }

  .hero-subpage .container {
    margin-bottom: 2rem !important;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* Wider visual column for bigger image */
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-gray);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--c-orange);
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--c-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--c-border);
  padding-top: 2rem;
}

.stat-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.875rem;
  color: var(--c-muted);
}

/* Visibility enhancements for Hero on Gradient background */
.hero .hero-content h1,
.hero .hero-content h1 span,
.hero .hero-content p,
.hero .hero-stats h4,
.hero .hero-stats .stat-item span {
  color: white;
}

.hero .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.hero .btn-primary {
  background: white;
  color: var(--c-orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero .btn-primary:hover {
  background: #f0f0f0;
}

.hero .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 158%;
  /* Increased by 50% from 105% */
  height: auto;
  filter: drop-shadow(0 32px 64px rgba(17, 17, 24, 0.15));
}

/* Removed float-card styles */

/* Section 2: Logos */
.logos-strip {
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-border);
  padding: 3rem 0;
}

.logos-strip .eyebrow {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--c-muted);
}

.logos-strip {
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
  background: white;
}

.logos-strip::before,
.logos-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-strip::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.logos-strip::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.logos-grid {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: logo-scroll 80s linear infinite;
  padding: 1rem 0;
}

.logos-grid:hover {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 2.5rem));
    /* Adjust for half gap */
  }
}

.logos-grid img {
  height: 40px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  object-fit: contain;
}

.logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.15);
}

/* Section 3: Problem */
.problem-section {
  background: var(--c-bg-soft);
  color: var(--c-gray);
  position: relative;
}

.problem-section h2 {
  color: var(--c-purple);
}

.problem-section .eyebrow {
  color: #898999;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: var(--trans-normal);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-normal);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--c-purple);
}

.problem-icon svg {
  width: 1em;
  height: 1em;
  display: block;
}

.problem-card h3 {
  color: var(--c-purple);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--c-muted);
  font-size: 0.9375rem;
}

.problem-arrow {
  text-align: center;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--c-purple);
  padding: 1rem;
}

/* Section 4: Zahlen */
.stats-section {
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-border);
  margin-top: 4rem;
}

.stats-card {
  background: var(--c-bg-soft);
  padding: 4rem 2rem;
  text-align: center;
}

.stats-card .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-purple);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-card .label {
  font-weight: 700;
  color: var(--c-purple);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: block;
}

.stats-card .desc {
  color: var(--c-muted);
  font-size: 0.875rem;
}

/* Section 5: Features */
.features-section {
  background: var(--c-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--trans-normal);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--c-purple);
}

.feature-icon svg {
  width: 1em;
  height: 1em;
  display: block;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--c-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  display: none !important;
  /* Removed site-wide */
}

/* Section 6: Product Visual */
.visual-section {
  background: var(--c-bg-soft);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.visual-image-wrapper {
  position: relative;
}


/* Modern Video Container */
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  display: block;
}

.unmute-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(252, 71, 6, 0.95);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(252, 71, 6, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.unmute-overlay svg {
  width: 18px;
  height: 18px;
}

.unmute-overlay:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 15px 50px rgba(252, 71, 6, 0.5);
}

.unmute-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.unmute-overlay.mini {
  top: auto;
  bottom: 20px;
  left: auto;
  right: 20px;
  transform: translateY(0);
  padding: 10px 18px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.unmute-overlay.mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 71, 6, 0.4);
}

.visual-image {
  width: 100%;
  display: block;
}

.visual-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.visual-text .checklist {
  gap: 0.25rem;
  margin-top: 0;
}

.visual-text .checklist li {
  padding: 0.4rem 0;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 0 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--c-dark);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.checklist li:first-child {
  padding-top: 0;
}

.checklist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.visual-text .checklist-icon {
  display: none !important;
}

.checklist-content {
  flex: 1;
  line-height: 1.7;
  font-size: 1.05rem;
}

.checklist-content strong {
  display: block;
  color: var(--c-purple);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

/* Hide icons ONLY when in the visual-text layout or feature subpages where we want a cleaner list */
.visual-text .checklist-icon,
.feature-details .checklist-icon {
  display: none !important;
}

.checklist-icon {
  color: white;
  background: var(--c-orange);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}

.checklist-icon.simple {
  background: transparent;
  color: var(--c-orange);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Section 7: Testimonials */
.testimonials-section {
  background: var(--c-bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testi-card {
  background: var(--c-bg-soft);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.testi-quote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 0.9375rem;
  font-family: var(--font-body);
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--c-muted);
}

/* Section 8: Trust-Bar */
.trust-bar {
  background: white;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 3rem 0;
}

.trust-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  font-size: 2.5rem;
  color: var(--c-purple);
  display: flex;
}

.trust-icon svg {
  width: 1em;
  height: 1em;
}

.trust-text h4 {
  font-size: 0.9375rem;
  font-family: var(--font-body);
  margin-bottom: 0.125rem;
}

.trust-text p {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin: 0;
}

/* Section 9: CTA */
.cta-section {
  background: white;
  color: var(--c-gray);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--c-purple);
}

.cta-section .eyebrow {
  color: #898999;
}

.cta-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--grad-nav);
  color: white;
  padding: 4.8rem 0 2.4rem;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
  color: white;
  text-decoration: none;
  transition: var(--trans-fast);
}

.footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.2rem;
}

.footer-brand img {
  height: 30px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: white;
  font-size: 1rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--trans-fast);
}

.footer-col ul a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.6rem;
  text-align: center;
  color: white;
  font-size: 0.875rem;
}

/* Responsive Variables */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2rem;
  }

  .problem-grid,
  .stats-grid,
  .features-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {

  .hero-grid,
  .visual-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .subtext {
    margin-left: auto;
    margin-right: auto;
  }

  /* Removed float-card overrides */
  .visual-grid .visual-image-wrapper {
    grid-row: 2;
  }

  .checklist {
    text-align: left;
    display: inline-block;
  }

  .trust-flex {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .logo {
    position: static;
    transform: none;
    margin: 0;
  }

  .nav-container {
    padding: 0.75rem 1.5rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--grad-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(109, 8, 140, 0.3);
    border-radius: 24px;
    margin-top: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--trans-normal);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    padding: 0;
  }

  .nav-left a,
  .nav-right a {
    color: white !important;
  }

  .lang-switch {
    background: rgba(255, 255, 255, 0.15);
    margin-left: 0;
    color: white;
  }

  .lang-switch .active {
    color: white;
  }

  .lang-switch .sep,
  .lang-switch .inactive {
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-links .btn {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .problem-grid,
  .stats-grid,
  .features-grid,
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Hero Mobile Optimizations */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
    padding: 14px 24px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 3rem;
  }

  .logos-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .btn {
    width: 100%;
    font-size: 0.875rem;
    padding: 14px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Pricing Page Detailed Table --- */
.preise-section {
  background: var(--c-bg);
}

.comparison-table-container {
  margin-top: 4rem;
  overflow-x: auto;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--c-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}

.comparison-table th {
  background: #FDFDFD;
  font-weight: 700;
  color: var(--c-dark);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  background: inherit;
  z-index: 2;
  width: 35%;
  border-right: 1px solid var(--c-border);
}

.comparison-table td:first-child {
  background: white;
  font-weight: 500;
  color: var(--c-dark);
}

.table-category-row td {
  background: #F8F9FC !important;
  color: var(--c-purple);
  font-weight: 700 !important;
  font-size: 1.05rem;
  padding: 0.8rem 1.5rem !important;
  text-align: left !important;
  border-right: none !important;
}

.check-icon {
  color: var(--c-orange);
  width: 20px;
  height: 20px;
}

.cross-icon {
  color: #E2E8F0;
  width: 18px;
  height: 18px;
}

.table-pkg-name {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.table-pkg-btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
  .comparison-table-container {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }
}

/* Section 9: Feature Detail Pages */
.feature-extra-info .problem-card {
  text-align: center;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 4rem;
  text-align: left;
  /* Always left-aligned on desktop, reset from hero center */
}

.feature-detail-grid h2,
.feature-detail-grid h3,
.feature-detail-grid p,
.feature-detail-grid .subtext {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.feature-detail-grid .checklist {
  text-align: left;
  display: block;
}

.feature-visual-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.feature-visual-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.feature-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-highlights {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}

.sidebar-highlights h3 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--c-dark);
  font-weight: 700;
}

.sidebar-quote {
  background: linear-gradient(135deg, #FC4706 0%, #C02860 60%, #6D088C 100%);
  padding: 2.5rem;
  border-radius: 24px;
  color: white;
  box-shadow: 0 15px 40px rgba(109, 8, 140, 0.25);
  position: relative;
}

.sidebar-quote::before {
  content: "„";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}

.quote-text {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.author-title {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.2rem;
}

@media (max-width: 1024px) {
  .feature-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-sidebar {
    order: 2;
  }
}

@media (max-width: 768px) {

  .feature-detail-grid,
  .feature-detail-grid h2,
  .feature-detail-grid h3,
  .feature-detail-grid p,
  .feature-detail-grid .subtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-detail-grid .checklist {
    text-align: left;
    /* Keep list items readable on mobile */
    display: inline-block;
  }
}

/* Feature Button Styling */
.btn-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(109, 8, 140, 0.05);
  color: var(--c-purple);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid rgba(109, 8, 140, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  margin-top: 1.5rem;
}

.btn-feature:hover {
  background: var(--c-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(109, 8, 140, 0.2);
  border-color: var(--c-purple);
}

.btn-feature svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-feature:hover svg {
  transform: translateX(4px);
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--grad-primary);
  color: white;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: none;
  background: var(--grad-hover);
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 0.5rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  margin-bottom: 0 !important;
  color: var(--c-dark);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
  color: var(--c-purple);
}

.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--c-purple);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal line */
.faq-toggle::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-toggle::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .faq-item.active .faq-answer: max-height is handled via JS for perfect smoothness */

.faq-answer .subtext {
  padding-bottom: 2rem;
  margin-bottom: 0 !important;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section Redesign */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: #fff;
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  transition: var(--trans-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-normal);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: var(--c-bg-soft);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--c-purple);
  transition: all 0.4s ease;
}

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



.contact-card h4.eyebrow {
  margin-bottom: 1rem;
  color: #898999;
}

.contact-card span,
.contact-card a {
  font-size: 1.125rem;
  color: var(--c-dark);
  text-decoration: none;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--c-orange);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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