:root {
  --if-petrol:  #0f5462;
  --if-orange:  #f28a28;
  --if-mint:    #36b5a4;

  --if-bg:      #f3f4f6;
  --if-bg-soft: #e5e7eb;
  --if-card:    #ffffff;
  --if-border:  rgba(15,84,98,.14);

  --if-text:       #0f172a;
  --if-text-soft:  #4b5563;
  --if-text-muted: #6b7280;

  --if-radius-lg: 12px;
  --if-radius-md: 10px;
  --if-radius-sm: 999px;

  --if-shadow-soft: 0 16px 34px rgba(15,23,42,0.16);
}

/* Basis */

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

body {
  margin: 0;
  font-size: 16px;
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #e5e7eb 40%, #cbd5f5 100%);
  color: var(--if-text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 72px;
}

section {
  margin-top: 3rem;
}

/* Header / Navigation */


header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid rgba(15,84,98,.06);
  backdrop-filter: blur(10px);
}

.main-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap img {
  height: 55px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  color: var(--if-text-soft);
  padding: 4px 0;
}

.nav-links a:hover {
  color: var(--if-petrol);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--if-text);
  border-radius: 999px;
}



/* CTAs */

.cta-row {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.btn-primary {
  background: var(--if-petrol);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(15,23,42,0.25);
  border: none;
  cursor: pointer;
  margin-top: 1em;
}

.btn-primary:hover {
  background: #03596b;
  box-shadow: 0 12px 34px rgba(15,23,42,0.28);
}


.btn-ghost {
  border-radius: var(--if-radius-sm);
  border: 1px solid rgba(15,84,98,.25);
  background: #ffffff;
  color: var(--if-petrol);
  font-weight: 500;
  border-radius: 999px;
  padding: 0.7rem 1.6rem; 
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.25);
  border: none;
  cursor: pointer;
  margin-top: 1em;
}

/* Hero-Side KPI Card */

.hero-side {
  border-radius: var(--if-radius-md);
  background: #ffffff;
  border: 1px solid var(--if-border);
  box-shadow: var(--if-shadow-soft);
  padding: 1.4rem 1.2rem;
}

.hero-side-inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-kpi {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
}

.hero-kpi-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--if-text-muted);
}

.hero-kpi strong {
  font-size: 18px;
}

.hero-kpi-right {
  text-align: right;
}

.mini-chart {
  border-radius: 18px;
  padding: 12px 14px;
  background: var(--if-bg-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-chart-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--if-text);
}

.mini-chart-row--muted {
  color: var(--if-text-muted);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.hero-tag {
  font-size: 12px;
  padding: .3rem .7rem;
  border-radius: var(--if-radius-sm);
  background: #ffffff;
  border: 1px solid rgba(15,84,98,.16);
  color: var(--if-text-soft);
}

/* Sections allgemein */

h2 {
  font-size: 1.8rem;
  margin-bottom: .3rem;
  color: var(--if-petrol);
}

h3 {
   font-size: 1.6rem; 
}

.section-sub {
  margin-top: 0;
  margin-bottom: 1.4rem;
  color: var(--if-text-soft);
}

/* Feature-Grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  background: var(--if-petrol);
  border-radius: var(--if-radius-lg);
  border: 1px solid rgba(15,84,98,0.08);
  box-shadow: 0 12px 28px rgba(15,23,42,0.10);
  cursor: pointer;
  padding: 1rem 1rem 0.95rem;
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15,23,42,0.16);
  border-color: rgba(15,84,98,0.18);
  background: #ffffff;
  color: var(--if-text-soft);
}

.feature-card:hover p{
  color: var(--if-text-soft);
}

.feature-card:hover h3{
  color: var(--if-petrol);
}

.feature-card:hover .feature-card-icon-right {
  background: var(--if-petrol);
}

/* kleines Icon rechts oben */

.feature-card-icon-right {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(148,163,184,0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--if-petrol); /* wird pro Card überschrieben */
}

.feature-card-body {
  padding-right: 2.6rem; /* Platz für Icon rechts */
}

.feature-card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #fff;
}

.feature-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}

/* Button */

.feature-card-btn {
  margin-top: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15,84,98,0.18);
  background: #ffffff;
  color: var(--if-petrol);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  cursor: pointer;
}

.feature-card-btn:hover {
  background: #ecfeff;
  border-color: rgba(14,165,233,0.6);
}

/* Responsive */

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

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





/* Pricing */

#pricing {
  margin-top: 3.4rem;
}

.toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--if-bg-soft);
  margin: 0 auto 1.4rem;
}

.toggle-btn {
  border: none;
  background: transparent;
  font-size: 13px;
  padding: 0.45rem .9rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--if-text-muted);
}

.toggle-btn.active {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(148,163,184,0.35);
  color: var(--if-petrol);
  font-weight: 600;
}

.plans {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 1rem;
}

.plan {
  background: #ffffff;
  border-radius: var(--if-radius-md);
  border: 1px solid var(--if-border);
  box-shadow: var(--if-shadow-soft);
  padding: 1.4rem 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.plan.featured {
  border-color: var(--if-orange);
  box-shadow: 0 20px 40px rgba(242,138,40,0.35);
  position: relative;
}

.plan-tag {
  color: var(--if-orange);
  font-weight: 600;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--if-petrol);
}

.price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--if-text-muted);
}

.plan-desc {
  color: var(--if-text-soft);
  margin: 0;
}

.plan .features {
  list-style: none;
  padding: 0;
  margin: .4rem 0 .6rem;
  color: var(--if-text-soft);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.plan .features i {
  color: var(--if-mint);
  margin-right: .4rem;
}

.plan .book-btn {
  margin-top: auto;
  text-align: center;
  display: inline-block;
  border-radius: var(--if-radius-sm);
  padding: .6rem 1rem;
  background: var(--if-petrol);
  color: #ffffff;
  font-weight: 600;
}

.plan.featured .book-btn {
  background: var(--if-orange);
}

/* Footer */

footer {
  border-top: 1px solid rgba(15,84,98,.08);
  background: #ffffff;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.8rem 20px 1.2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.4rem;
}

.footer-brand p {
  margin: .1rem 0;
  color: var(--if-text-soft);
}

.footer-nav h4 {
  margin: 0 0 .4rem;
  color: var(--if-text);
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--if-text-soft);
}

.footer-nav li + li {
  margin-top: .2rem;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: .8rem 20px 1.4rem;
  border-top: 1px solid rgba(15,84,98,.06);
  font-size: 14px;
  color: var(--if-text-muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 1.8rem 1.6rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .plans {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

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

@media (max-width: 640px) {
  main {
    padding-inline: 16px;
  }

  .main-nav {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 16px;
    top: 60px;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.18);
    display: none;
  }

  .nav-links.nav-open {
    display: flex;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.highlights {
  margin: 4rem 0;
}

/* Vollbreite Section-Hintergrund */
.highlights-card {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at top left, #ecfdf3 0, #fefce8 45%, #f5f5f7 100%);
  box-shadow: 0 22px 60px rgba(15,23,42,0.18);
  padding: 3.2rem 0; 
}

/* Inhalt zentriert, zwei Cards untereinander */
.highlights-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Card-Layout innen */
.highlight-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 2.2rem;
  align-items: center;
}

.highlight-text h2 {
  margin: 0 0 .6rem;
  font-size: 1.9rem;
  color: var(--if-petrol);
}

.highlight-text p {
  margin: 0 0 .7rem;
  font-size: 1rem;
  color: var(--if-text-soft);
}

.highlight-text ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: var(--if-text-soft);
}

.highlight-text li + li {
  margin-top: .2rem;
}

.highlight-media img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(15,23,42,0.25);
}

/* zweite Card gespiegelt */
.highlight-layout--reverse {
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
}

.highlight-layout--reverse .highlight-media {
  order: 1;
}

.highlight-layout--reverse .highlight-text {
  order: 2;
}

/* mobil: alles untereinander */
@media (max-width: 900px) {
  .highlight-layout,
  .highlight-layout--reverse {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .highlight-layout--reverse .highlight-media {
    order: 1;
  }

  .highlight-layout--reverse .highlight-text {
    order: 2;
  }
}

.faq-page {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.faq-hero {
  padding: 2.5rem 0 1.5rem;
  background: radial-gradient(circle at top left, #ecfdf3 0, #fefce8 45%, #f5f5f7 100%);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

.faq-hero h1 {
  margin: 0 0 .6rem;
  font-size: 2.1rem;
  color: var(--if-petrol);
}

.faq-hero p {
  margin: 0;
  font-size: 1rem;
  color: var(--if-text-soft);
}

.faq-list {
  padding: 2.5rem 0 0;
}

.faq-item {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15,23,42,0.12);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--if-petrol);
  cursor: pointer;
}

.faq-icon {
  margin-left: 1rem;
  font-size: 1.2rem;
  color: var(--if-petrol);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.2rem 0.2rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1rem;
}

.faq-answer p {
  margin: .6rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--if-text-soft);
}

.functions-page {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.functions-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* Hero */

.functions-hero {
  padding: 2.8rem 0 2.4rem;
}

.functions-hero-text h1 {
  margin: 0 0 .6rem;
  font-size: 2.1rem;
  color: var(--if-petrol);
}

.functions-hero-text p {
  margin: 0;
  max-width: 540px;
  font-size: 1rem;
  color: var(--if-text-soft);
}

.functions-hero-badges {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.functions-badge {
  font-size: .8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(56,189,248,0.5);
  color: var(--if-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Feature-Section */

.functions-highlights {
  margin-top: 2rem;
}

.functions-highlights-card {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at top left, #ecfdf3 0, #fefce8 45%, #f5f5f7 100%);
  box-shadow: 0 26px 70px rgba(15,23,42,0.18);
  padding: 3rem 0;
}

/* Innen: wieder deine Highlight-Grids */

.highlight-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.2fr);
  gap: 2.6rem;
  align-items: center;
  padding: 2.2rem 0;
  scroll-margin-top: 90px;
}

.highlight-layout + .highlight-layout {
  border-top: 1px solid rgba(148,163,184,0.2); /* dezente Trennung */
}

.highlight-layout--reverse {
  grid-template-columns: minmax(0,1.2fr) minmax(0,1.1fr);
}

.highlight-text h2 {
  margin: 0 0 .6rem;
  font-size: 1.7rem;
  color: var(--if-petrol);
}

.feature-tag {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--if-petrol);
  display: inline-block;
  margin-bottom: .3rem;
}

.highlight-text p {
  margin: 0 0 .6rem;
  font-size: 1rem;
  color: var(--if-text-soft);
}

.highlight-text ul {
  margin: .4rem 0 0;
  padding-left: 1.1rem;
  font-size: .95rem;
  color: var(--if-text-soft);
}

.highlight-text li + li {
  margin-top: .2rem;
}

.feature-meta {
  margin-top: .7rem;
  font-size: .9rem;
  color: #6b7280;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Videos groß wie in den Screenshots */

.highlight-media {
  display: flex;
  justify-content: center;
}

.video-wrapper.screen {
  position: relative;
  width: 100%;
  max-width: 960px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 60px rgba(15,23,42,0.4);
  background: #000;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: none;
  background: rgba(15,23,42,0.85);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(15,23,42,0.7);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.video-play-btn i {
  font-size: 24px;
  margin-left: 2px;
}

.video-play-btn:hover {
  background: rgba(37,99,235,0.95);
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(37,99,235,0.55);
}

.video-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* mobil */

@media (max-width: 900px) {
  .highlight-layout,
  .highlight-layout--reverse {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

@media (max-width: 640px) {
  .functions-inner { padding-inline: 16px; }
}

.pricing-page {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.pricing-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* Hero wie Legal/FAQ */

.pricing-hero {
  padding: 2.5rem 0 1.6rem;
  background: radial-gradient(circle at top left, #ecfdf3 0, #fefce8 45%, #f5f5f7 100%);
}

.pricing-hero h1 {
  margin: 0 0 .6rem;
  font-size: 2.1rem;
  color: var(--if-petrol);
}

.pricing-hero p {
  margin: 0;
  font-size: 1rem;
  color: var(--if-text-soft);
}

/* Tabelle in „Card“ */

.pricing-compare {
  padding: 2.4rem 0 0;
}

.comparison-table-wrapper {
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15,23,42,0.14);
  padding: 1.8rem 1.8rem 2rem;
  overflow-x: auto;
}

/* Grundstil Tabelle */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table thead th {
  padding: .7rem .8rem;
  text-align: left;
  font-weight: 600;
  color: var(--if-petrol);
  border-bottom: 1px solid rgba(148,163,184,0.45);
}

.comparison-table tbody td {
  padding: .55rem .8rem;
  border-bottom: 1px solid rgba(148,163,184,0.2);
  color: var(--if-text-soft);
}

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

/* Blur-/Fade-Effekt für nicht aktive Spalten */

.comparison-table.has-active-plan thead th,
.comparison-table.has-active-plan tbody td {
  opacity: .38;
  filter: blur(0.4px);
  transition: opacity .18s ease, filter .18s ease;
}

/* die aktive Spalte bleibt klar */

.comparison-table thead th.plan-active,
.comparison-table tbody td.plan-active {
  opacity: 1;
  filter: none;
}

/* Feature-Spalte immer klar */

.comparison-table thead th:first-child,
.comparison-table tbody td:first-child {
  opacity: 1 !important;
  filter: none !important;
  font-weight: 500;
  color: var(--if-text);
}

/* Accordion darunter */

.tarif-accordion {
  margin-top: 1.6rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15,23,42,0.12);
  padding: 1rem 1.2rem;
}

.tarif-accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--if-petrol);
  list-style: none;
}

.tarif-accordion summary::-webkit-details-marker { display: none; }

.tarif-accordion-body {
  margin-top: .8rem;
  font-size: .95rem;
  color: var(--if-text-soft);
}

.tarif-accordion-body p + p { margin-top: .4rem; }

/* mobil */

@media (max-width: 640px) {
  .pricing-inner { padding-inline: 16px; }
  .comparison-table-wrapper { padding-inline: 1rem; }
}

.help-page {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.help-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* Hero */

.help-hero {
  padding: 2.6rem 0 2rem;
  background: radial-gradient(circle at top left, #ecfdf3 0, #fefce8 45%, #f5f5f7 100%);
}

.help-hero-text h1 {
  margin: 0 0 .6rem;
  font-size: 2.1rem;
  color: var(--if-petrol);
}

.help-hero-text p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--if-text-soft);
}

/* Suche */

.help-search {
  position: relative;
  margin-top: 1rem;
  max-width: 520px;
}

.help-search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: .9rem;
}

#help-search-input {
  width: 100%;
  padding: .65rem 2.4rem .65rem 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  font-size: .95rem;
  outline: none;
}

#help-search-input:focus {
  border-color: var(--if-petrol);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.5);
}

#help-search-clear {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  visibility: hidden;
}

.help-quick-links {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.help-chip {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: #ffffff;
  padding: .35rem .8rem;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
}

.help-chip.active {
  background: var(--if-petrol);
  color: #ffffff;
  border-color: var(--if-petrol);
}

/* Kategorien */

.help-categories {
  padding: 2.4rem 0 1.8rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.help-category-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15,23,42,0.12);
  padding: 1.6rem 1.7rem;
}

.help-category-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(56,189,248,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--if-petrol);
  margin-bottom: .7rem;
}

.help-category-card h2 {
  margin: 0 0 .4rem;
  font-size: 1.2rem;
  color: var(--if-petrol);
}

.help-category-card p {
  margin: 0 0 .6rem;
  font-size: .95rem;
  color: var(--if-text-soft);
}

.help-category-links {
  margin: 0;
  padding-left: 1rem;
  font-size: .9rem;
  color: var(--if-text-soft);
}

.help-category-links li + li {
  margin-top: .2rem;
}

/* Artikel-Liste */

.help-results {
  padding: 1.2rem 0 0;
}

.help-results-header h2 {
  margin: 0 0 .4rem;
  font-size: 1.4rem;
  color: var(--if-petrol);
}

.help-results-header p {
  margin: 0 0 1rem;
  font-size: .9rem;
  color: var(--if-text-soft);
}

.help-articles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.help-article {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15,23,42,0.12);
  padding: 1.2rem 1.4rem;
}

.help-article h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  color: var(--if-petrol);
}

.help-article p {
  margin: 0 0 .5rem;
  font-size: .9rem;
  color: var(--if-text-soft);
}

.help-article-meta {
  font-size: .8rem;
  color: #6b7280;
}

.help-no-results {
  margin-top: 1rem;
  border-radius: 16px;
  background: #fef2f2;
  padding: 1rem 1.2rem;
}

/* Videos */

.help-videos {
  margin-top: 2.6rem;
}

.help-videos-card {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 36px;
  background: radial-gradient(circle at top left, #ecfdf3 0, #fefce8 45%, #f5f5f7 100%);
  box-shadow: 0 26px 70px rgba(15,23,42,0.18);
  padding: 2.6rem 0;
}

.help-videos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.help-videos-text h2 {
  margin: 0 0 .6rem;
  font-size: 1.6rem;
  color: var(--if-petrol);
}

.help-videos-text p {
  margin: 0 0 .7rem;
  font-size: .95rem;
  color: var(--if-text-soft);
}

.help-videos-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: .9rem;
  color: var(--if-text-soft);
}

.help-videos-list li + li { margin-top: .2rem; }

.help-videos-media .video-wrapper.screen {
  max-width: 960px;
}

/* Footer-Section */

.help-footer-section {
  padding: 2.8rem 0 0;
}

.help-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.help-contact-list {
  margin: .6rem 0 1rem;
  padding-left: 0;
  list-style: none;
  font-size: .95rem;
  color: var(--if-text-soft);
}

.help-contact-list li {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.help-contact-btn {
  margin-top: .2rem;
}

/* Responsive */

@media (max-width: 960px) {
  .help-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .help-articles-list {
    grid-template-columns: 1fr;
  }
  .help-videos-grid,
  .help-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .help-inner { padding-inline: 16px; }
  .help-grid { grid-template-columns: 1fr; }
  .help-videos-card { padding-inline: 0; }
}

.help-article-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.help-article-modal.is-open {
  display: block;
}

.help-article-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(3px);
}

.help-article-dialog {
  position: relative;
  max-width: 760px;
  max-height: 82vh;
  margin: 5vh auto 0;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(15,23,42,0.6);
  padding: 1.8rem 2rem 1.6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.help-article-close {
  position: absolute;
  top: .8rem;
  right: .9rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #6b7280;
  font-size: 1.1rem;
}

.help-article-content {
  margin-top: .6rem;
  overflow: auto;
  padding-right: .4rem;
}

/* Typo im Modal */
.help-article-content h1 {
  margin: 0 0 .6rem;
  font-size: 1.5rem;
  color: var(--if-petrol);
}
.help-article-content h2 {
  margin: 1.4rem 0 .4rem;
  font-size: 1.1rem;
  color: var(--if-petrol);
}
.help-article-content p {
  margin: 0 0 .6rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--if-text);
}
.help-article-content ul,
.help-article-content ol {
  margin: 0 0 .8rem 1.2rem;
  font-size: .95rem;
  color: var(--if-text);
}
.help-article-content li + li {
  margin-top: .2rem;
}

@media (max-width: 640px) {
  .help-article-dialog {
    margin: 4vh 1rem 0;
    padding-inline: 1.3rem;
  }
}

.help-results-header {
    margin-bottom: 1em;
    padding: 1em;
}

.help-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  font-size: .8rem;
  color: #6b7280;
}

.help-article-category {
  padding: .15rem .6rem;
  border-radius: 999px;
  background: rgba(148,163,184,0.12);
}

.help-article-open {
  border: none;
  background: transparent;
  color: var(--if-petrol);
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  cursor: pointer;
  padding: .25rem .55rem;
  border-radius: 999px;
  transition: background-color .15s ease, color .15s ease, transform .1s ease;
}

.help-article-open::after {
  content: '→';
  font-size: .8rem;
}

.help-article-open:hover {
  background: rgba(56,189,248,0.08);
  color: #0f172a;
  transform: translateY(-1px);
}

.help-article-open:active {
  transform: translateY(0);
}

.help-category-links {
  margin: .4rem 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.help-category-links li a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--if-petrol);
  text-decoration: none;
  background: rgba(148,163,184,0.06);
  transition: background-color .15s ease, color .15s ease, transform .1s ease;
}

.help-category-links li a::before {
  content: '📄';
  font-size: .9rem;
}

.help-category-links li a:hover {
  background: rgba(56,189,248,0.14);
  color: #0f172a;
  transform: translateY(-1px);
}

.help-category-links li a:active {
  transform: translateY(0);
}


/*** Hero neu ***/

.hero {
  padding: 5.2rem 0 3.6rem;
  margin-top: 0rem;
  background: radial-gradient(circle at top left, #ecfdf3 0, #fefce8 45%, #f5f5f7 100%);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: flex-start;
}

.hero-text h1 {
  margin: .4rem 0 .8rem;
  font-size: 2.3rem;
  line-height: 1.15;
  color: var(--if-petrol);
}

.hero-text p {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  color: var(--if-text-soft);
}

.hero-tagline {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--if-petrol);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: .9rem;
}

.hero-benefits {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: .9rem;
  color: var(--if-text-soft);
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.hero-benefits li + li {
  margin-top: .2rem;
}

.hero-benefits i {
  color: #16a34a;
}

/* Media / Video */

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-video-wrapper {
  max-width: 400px;
  margin-top: 1.4rem; 
  transform: none; 
}

.hero-text {
  padding-top: 1.2rem;
}

.hero-video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.40);
  background: #020617;
  object-fit: cover;
}

/* Größerer Play-Button im Hero */

.video-play-btn--hero {
  width: 80px;
  height: 80px;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-inline: 1.6rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 4.2rem 0 2.4rem;
  }
}

.hero .hero-ctas {
  display: inline-flex;
  gap: .4rem;
  margin-bottom: .8rem;
}

.hero .btn-primary,
.hero .btn-secondary {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .9rem;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 0rem;
  cursor: pointer;
}

/* Hero-Primary */

.hero .btn-primary {
  box-shadow: 0 10px 26px rgba(15,23,42,0.28);
  padding-inline: 1.2rem;
}

/* Hero-Secondary */

.hero .btn-secondary {
  background: transparent;
  border: 1px solid rgba(15,23,42,0.18);
  color: #0f172a;
  box-shadow: none;
}

.hero .btn-secondary:hover {
  background: rgba(15,23,42,0.03);
}

.if-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.if-modal.is-open {
  display: flex;
}

.if-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
}

.if-modal__dialog {
  position: relative;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  background: #0b1020;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.if-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.if-modal__body {
  padding: 20px;
  overflow: auto;
  background: #fff;
}

.if-modal__close {
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 24px;
  cursor: pointer;
}

.feature-meta i{
  margin-right: 0.5em;
}

.if-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.if-modal.is-open {
  display: flex;
}

.if-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
}

.if-modal__dialog--video {
  position: relative;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  background: #020617;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.9);
}

.if-modal__video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.if-modal__video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.if-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 26px;
  cursor: pointer;
  z-index: 1;
}

.signup-step {
  display: none;
}

.signup-step.is-active {
  display: block;
}


.section-signup {
  padding: 64px 0 80px;
}

.section-signup h1 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.section-intro {
  max-width: 640px;
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 24px;
}

.signup-step {
  display: none;
  background: #f9fafb;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  border: 1px solid #e5e7eb;
  padding: 28px 28px 24px;
}

.signup-step.is-active {
  display: block;
}

.signup-step h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #111827;
}

.signup-step > p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 18px;
}


.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px 24px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-inline {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
}

.form-field label {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field textarea,
.form-field select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 9px 14px;
  font-size: 16px;
  color: #111827;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.form-field textarea {
  border-radius: 16px;
  min-height: 80px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.2);
  background-color: #f9fafb;
}

.form-help {
  font-size: 14px;
  color: #6b7280;
}


.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.plan-card {
  position: relative;
  cursor: pointer;
}

.plan-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-card-inner {
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.plan-card-inner:hover {
  border-color: #0f766e;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  transform: translateY(-1px);
}

.plan-card input[type="radio"]:checked + .plan-card-inner {
  border-color: #f97316;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}

.plan-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.plan-name {
  font-weight: 700;
  color: #111827;
}

.plan-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e5f3ff;
  color: #0f172a;
}

.plan-badge-primary {
  background: #ffedd5;
  color: #9a3412;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-main {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.price-sub {
  font-size: 12px;
  color: #6b7280;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  font-size: 15px;
  color: #374151;
}

.plan-features li + li {
  margin-top: 3px;
}


.billing-toggle {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  font-size: 14px;
}

.billing-label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}


.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  position: relative;
  cursor: pointer;
}

.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill span {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  color: #111827;
  background: #ffffff;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pill input:checked + span {
  border-color: #0f766e;
  background: #ecfdf3;
  color: #065f46;
}


.signup-nav {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

#signup-form .btn-primary,
#signup-form .btn-secondary {
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-top: 1em;
}

#signup-form .btn-primary {
  background: #0f766e;
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.35);
}

#signup-form .btn-primary:hover {
  filter: brightness(1.05);
}

#signup-form .btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

#signup-form  .btn-secondary:disabled {
  opacity: 0.45;
}



#signup-summary {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 16px 18px 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  margin-bottom: 14px;
}

#signup-summary h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
}


.summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 8px 32px;
}

@media (max-width: 768px) {
  .summary-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.summary-group-title {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}

.summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #374151;
}

.summary-list li {
  line-height: 1.4;
}

.summary-list li + li {
  margin-top: 2px;
}

.summary-label {
  font-weight: 600;
  color: #111827;
}

.summary-value {
  margin-left: 4px;
  color: #111827;
}

.summary-value a {
  color: #0f766e;
  text-decoration: none;
}

.summary-value a:hover {
  text-decoration: underline;
}


.signup-note {
  font-size: 16px;
  color: #4b5563;
  margin-top: 6px;
}


.signup-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.signup-progress-label {
  font-size: 12px;
  color: #6b7280;
}

.signup-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.signup-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(to right, #0f766e, #22c55e);
  transition: width 0.25s ease;
}

.signup-plan-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #065f46;
  font-size: 13px;
  margin-bottom: 16px;
}

.signup-plan-indicator .label {
  font-weight: 600;
  color: #047857;
}

.signup-plan-indicator .value {
  font-weight: 600;
}

.signup-status {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.signup-status--success {
  color: #166534;
  background: #dcfce7;
  border-radius: 6px;
  padding: 8px 10px;
}

.signup-status--error {
  color: #991b1b;
  background: #fee2e2;
  border-radius: 6px;
  padding: 8px 10px;
}

.signup-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  z-index: 40;
}

.signup-modal {
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.signup-modal,
.signup-modal-backdrop {
  display: none;
}

.signup-modal.is-visible,
.signup-modal-backdrop.is-visible {
  display: flex;
}

.signup-modal-inner {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 24px 20px 20px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
}

.signup-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.signup-modal-box {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #EFF6FF;
}

.pricing-cta {
  text-align: center;
  margin-top: 2.4rem;
}

.btn-primary--big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(249, 115, 22, 0.35);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary--big:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(249, 115, 22, 0.45);
}

.pricing-cta-sub {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #4B5563;
}

.clients-section {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 3rem 0;
  background: #dbeafe;
  margin-top: -4rem;
}

.clients-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}


.clients-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.clients-title {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.clients-sub {
  margin: 0 auto 2.5rem;
  max-width: 540px;
  color: #6b7280;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  align-items: center;
  justify-content: center;
}

.client-logo-wrap {
  flex: 0 0 auto;
}

.client-logo {
  max-height: 60px;
  max-width: 180px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .clients-section {
    padding: 3rem 1.25rem;
  }

  .clients-title {
    font-size: 1.5rem;
  }

  .client-logo {
    max-height: 36px;
    max-width: 150px;
  }
}

