/* ================================
   LOCAL INTER FONT (CSP SAFE)
================================ */

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =================================================
   DESIGN TOKENS
================================================= */

:root {
  --background: hsl(210 20% 98%);
  --foreground: hsl(220 30% 15%);
  --primary: hsl(220 60% 20%);
  --primary-foreground: #ffffff;
  --accent: hsl(25 95% 55%);
  --accent-soft: hsl(25 95% 55% / 0.12);
  --border: hsl(220 15% 90%);
  --radius: 16px;
  --gradient-hero: linear-gradient(
    135deg,
    hsl(220 60% 20%) 0%,
    hsl(220 50% 30%) 100%
  );
  --shadow-soft: 0 4px 20px -4px hsl(220 60% 20% / 0.1);
  --shadow-card: 0 12px 32px -12px hsl(220 60% 20% / 0.15);
  --header-offset: 96px;
  --scroll-behavior: smooth;
}

/* =================================================
   BASE
================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: #ffffff;
  color: var(--foreground);
  line-height: 1.6;
}

body.legal-page {
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), hsl(20 90% 50%));
  z-index: 1100;
  transition: width 0.1s linear;
}

[hidden] {
  display: none;
}

section[id] {
  scroll-margin-top: 72px;
}


/* =================================================
   GLOBAL SECTION LAYOUT
================================================= */

.section {
  padding: clamp(72px, 8vw, 96px) 0;
  margin: 0;
}

.section + .section {
  border-top: none;
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
  text-align: center;
}

.section-header-left {
  max-width: 720px;
  margin: 0 0 24px;
  text-align: left;
}

.section-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  white-space: normal;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: hsl(220 10% 45%);
}

/* =================================================
   CARD STANDARD (GLOBAL)
================================================= */

.card {
  background: #ffffff;
  border: 1px solid hsl(25 95% 55% / 0.25);
  border-radius: var(--radius);
    transition:
    transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.2, 0.6, 0.2, 1),
    border-color 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.card:hover {
  transform: translateY(-2px);
  border-color: hsl(25 95% 55% / 0.45);
  box-shadow: var(--shadow-card);
}

.card,
.leistung-card,
.vorteil-card,
.preis-card,
.kontakt-form,
.kontakt-info-card {
  padding: clamp(28px, 3vw, 40px);
  transition:
    transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.2, 0.6, 0.2, 1),
    border-color 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.kontakt-form-card > p {
  font-size: 15.5px;
  color: hsl(220 10% 40%);
  margin-bottom: 32px;
}

.leistung-card:hover,
.vorteil-card:hover,
.prozess-card:hover {
  transform: translateY(-2px);
  border-color: hsl(25 95% 55% / 0.45);
  box-shadow: var(--shadow-card);
}

/* =================================================
   HEADER
================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(245, 247, 250, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    height 0.3s ease;
}

/* Restore sticky header on all viewports */
.header {
  position: fixed;
  /* Ensure header stays visible while scrolling */
  top: 0;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 12px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0));
}

.header a:hover {
  color: var(--accent);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.25s ease;
}

.header.scrolled {
  height: 72px;
  background: rgba(245, 247, 250, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 24px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.header.scrolled::after {
  opacity: 1;
}

.header.scrolled .header-inner {
  padding: 8px 24px;
}

.logo-wrap img {
  height: 32px;
  transition: height 0.25s ease;
}

.header.scrolled .logo-wrap img {
  height: 28px;
}

.header:not(.scrolled) .burger span,
.header.scrolled .burger span {
  background-color: var(--foreground);
}

/* ================= BURGER ================= */

.burger {
  --burger-line-thickness: 2px;
  --burger-gap: calc((100% - (3 * var(--burger-line-thickness))) / 2);
  --burger-shift: calc(var(--burger-gap) + var(--burger-line-thickness));
  width: 2.25rem;
  height: 1.75rem;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10002;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Gleichmäßige Verteilung: 3 Linien mit identischem Abstand in allen Viewports */
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-thickness);
  background-color: #0f172a !important;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: calc(var(--burger-line-thickness) + var(--burger-gap));
}

.burger span:nth-child(3) {
  top: calc((2 * var(--burger-line-thickness)) + (2 * var(--burger-gap)));
}

.burger.active span {
  background-color: #0f172a !important;
}

.burger.active span:nth-child(1) {
  transform: translateY(var(--burger-shift)) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(calc(-1 * var(--burger-shift))) rotate(-45deg);
}

/* =================================================
   HERO
================================================= */

.hero {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  padding-top: calc(var(--header-offset) + 64px);
  padding-bottom: 120px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
height: 1px;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    hsl(0 0% 100% / 0.25),
    transparent
  );
}

.hero-container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-actions {
  margin-top: 24px;
}

.hero-container > * {
  animation: heroFade 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

.hero-container > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-container > *:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-container > *:nth-child(3) {
  animation-delay: 0.2s;
}

.hero-container > *:nth-child(4) {
  animation-delay: 0.28s;
}

.hero-container > *:nth-child(5) {
  animation-delay: 0.36s;
}

.hero-badge {
  display: inline-flex;
  padding: 14px 26px;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.14);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin: 24px 0;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.hero-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  color: hsl(210 40% 98%);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0 40px;
  font-size: 15px;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsl(210 40% 98%);
}

.hero-features .check {
  color: var(--accent);
  font-weight: 700;
}

.hero-trust {
  display: flex;
  justify-content: center;
  margin: 0 auto 32px;
}

.hero-trust-image {
  width: min(720px, 100%);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 40px -24px hsl(220 60% 20% / 0.6);
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -6px hsl(25 95% 55% / 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px hsl(25 95% 55% / 0.18),
    0 12px 32px -6px hsl(25 95% 55% / 0.55);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid hsl(0 0% 100% / 0.35);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn-secondary:hover {
  background: hsl(0 0% 100% / 0.08);
  border-color: hsl(0 0% 100% / 0.6);
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .hero-actions .btn-primary {
    padding: 16px 36px;
  }
}

/* =================================================
   LEISTUNGEN
================================================= */

.leistungen {
  background: #ffffff;
}

.leistungen-container {
  max-width: 1200px;
  margin: 0 auto;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.leistung-card {
  background: #ffffff;
  border: 1px solid hsl(25 95% 55% / 0.18);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.2, 0.6, 0.2, 1),
    border-color 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
}


.leistung-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leistung-icon .icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.leistung-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  border-color: hsl(25 95% 55% / 0.35);
}

.leistung-card:hover .leistung-icon {
  background: var(--accent);
}

.leistung-card:hover .leistung-icon .icon {
  color: #ffffff;
}

.leistung-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.leistung-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: hsl(220 10% 40%);
  max-width: 38ch;
}

/* =================================================
   VORTEILE
================================================= */

.vorteile {
  background: hsl(220 20% 96%);
}

.vorteile-container {
  max-width: 1200px;
  margin: 0 auto;
}

#vorteile .section-header {
  margin-bottom: 24px;
}

.vorteile-content {
  text-align: left;
}

.vorteile-text {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: left;
}

.vorteile-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}

.vorteile-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.65;
  color: hsl(220 10% 32%);
}

.check-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.vorteile-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0;
  align-self: start;
}

.vorteil-card {
  background: #ffffff;
  border: 1px solid hsl(25 95% 55% / 0.25);
  border-radius: var(--radius);
  padding: 28px;
  height: auto;
  min-height: 220px;
  align-self: flex-start;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.6, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.2, 0.6, 0.2, 1),
    border-color 0.25s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.vorteil-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vorteil-icon .icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.vorteil-card:hover .vorteil-icon {
  background: var(--accent);
}

.vorteil-card:hover .vorteil-icon .icon {
  color: #ffffff;
}

/* =================================================
   MOBILE MENU
================================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: hsl(220 60% 20% / 0.96);
  backdrop-filter: blur(12px);
  z-index: 10010;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 auto;
}

.mobile-menu li {
  margin: 18px 0;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: hsl(210 40% 85%);
  outline-offset: 4px;
}

.mobile-menu .menu-cta {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 18px 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 30px -10px hsl(25 95% 55% / 0.6);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  z-index: 10005;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 11001;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transform-origin: center;
}

.mobile-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-close:hover span {
  background: var(--accent);
}

/* =================================================
   ANIMATIONS
================================================= */

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =================================================
   CARD REVEAL (GLOBAL FADE-IN)
================================================= */

.card-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 200ms ease-out,
    transform 200ms ease-out;
}

.card-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .card-reveal,
  .card-reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =================================================
   RESPONSIVE
================================================= */

@media (max-width: 900px) {
  .leistungen-grid,
  .vorteile-cards,
  .benefits-grid,
  .references-grid,
  .audit-grid {
    grid-template-columns: 1fr;
  }

  .vorteile-container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 20px 96px;
  }

  .audit-panel {
    grid-template-columns: 1fr;
  }

  .references-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-prozess .prozess-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .burger {
    display: none !important;
  }

  .mobile-menu,
  .menu-overlay {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }

  /* Mobile burger/menu visibility */
  .burger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-menu,
  .menu-overlay {
    display: block !important;
  }

  /* Mobile header padding to keep burger inside viewport */
  .header-inner {
    padding: 0 16px;
  }

  /* Mobile header height + CTA visibility on landing page */
  .landing-page .header {
    height: 72px;
  }

  .landing-page .header-inner {
    padding: 0 16px;
  }

  .landing-page .nav-cta {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
  }

  /* Mobile close icon sizing */
  .mobile-close {
    width: 36px;
    height: 36px;
  }

  .mobile-close span {
    width: 20px;
  }

  /* Mobile menu CTA wrap */
  .mobile-menu .menu-cta {
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }
}

/* =================================================
   PROZESS
================================================= */

.prozess {
  background: #ffffff;
}

/* =================================================
   REFERENZEN
================================================= */

.references {
  background: hsl(220 20% 96%);
}

.references-container {
  max-width: 1200px;
  margin: 0 auto;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.reference-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reference-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reference-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: hsl(220 30% 95%);
  color: hsl(220 30% 35%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.reference-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.reference-card p {
  margin: 0;
  color: hsl(220 10% 40%);
  line-height: 1.6;
  font-size: 15.5px;
}

.reference-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: auto;
  padding-top: 8px;
}

.reference-stats strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.reference-stats span {
  display: block;
  font-size: 13px;
  color: hsl(220 10% 45%);
}

.references-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid hsl(25 95% 55% / 0.2);
  background: #ffffff;
}

.references-cta h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.references-cta p {
  margin: 0;
  color: hsl(220 10% 40%);
}

/* =================================================
   WEBSITE-CHECK LANDING
================================================= */

.landing-page .header-inner {
  padding: 0 24px;
}

.landing-hero {
  text-align: center;
  min-height: 120vh;

}
.landing-page .landing-hero {
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 120px;
}
.benefits {
  background: #ffffff;
}

.benefits-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.benefit-card p {
  margin: 0;
  color: hsl(220 10% 40%);
  font-size: 15.5px;
  line-height: 1.6;
}

.landing-prozess .prozess-grid {
  grid-template-columns: repeat(3, 1fr);
}

.landing-prozess .prozess-step {
  position: static;
  margin-bottom: 16px;
}

.landing-prozess .prozess-card {
  padding-top: 28px;
}

.landing-form .kontakt-grid {
  align-items: flex-start;
}

.qualification-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.qualification-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15.5px;
  color: hsl(220 10% 35%);
}

.qualification-list span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.qualification-note {
  margin: 0;
  font-size: 14px;
  color: hsl(220 10% 45%);
}

.prozess-container {
  max-width: 1200px;
  margin: 0 auto;
}

.prozess .section-badge {
  display: inline-block;
  margin-bottom: 24px;
}

.prozess .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.prozess .section-subtitle {
  margin-bottom: 32px;
}
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 0;
}

.prozess-card {
  background: #ffffff;
  border: 1px solid hsl(25 95% 55% / 0.25);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  text-align: left;
}

.prozess-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prozess-icon .icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.prozess-card:hover .prozess-icon {
  background: var(--accent);
  transform: translateY(-2px);
  transition: transform 0.25s ease;
}

.prozess-card:hover .prozess-icon .icon {
  color: #ffffff;
}

.prozess-step {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px hsl(25 95% 55% / 0.6);
  pointer-events: none;
}

.prozess-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  text-wrap: balance;
}

.prozess-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: hsl(220 10% 40%);
}

.prozess-card:hover .prozess-step {
  filter: brightness(1.05);
  box-shadow: 0 8px 20px -6px hsl(25 95% 55% / 0.7);
}

.prozess-card:focus-within {
  outline: 2px solid hsl(25 95% 55% / 0.35);
  outline-offset: 4px;
}


@media (max-width: 1024px) {
  .prozess-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .prozess-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .prozess-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    width: 32px;
    height: 1px;
    background: hsl(25 95% 55% / 0.25);
  }

  .prozess-card:last-child::after {
    display: none;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: linear-gradient(135deg, #1f2a44 0%, #1b243a 100%);
  color: #cbd5e1;
  padding: 90px 0 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 0.6fr;
  column-gap: 48px;
  align-items: start;
}
.footer-services,
.footer-insights,
.footer-legal {
  text-align: left;
}
.footer-container > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* UNIFICARE h4 */
.footer-container h4 {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Brand */
.footer-brand {
  max-width: 420px;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: hsl(210 15% 70%);
}

/* Link-uri unificate */
.footer-services a,
.footer-insights a,
.footer-legal a {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 400;
  color: hsl(210 15% 75%);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-services a:hover,
.footer-insights a:hover,
.footer-legal a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid hsl(220 20% 25%);
  text-align: center;
  font-size: 14px;
  color: hsl(210 15% 60%);
  opacity: 0.8;
}
/* =================================================
   EXIT-INTENT MODAL
================================================= */

.exit-modal-container {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
  padding: 24px;
}

.exit-modal-container.open {
  display: flex;
  pointer-events: auto;
}


.exit-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .2s ease;
  backdrop-filter: blur(2px);
}
.exit-modal-container.open .exit-modal-overlay {
  opacity: 1;
}

.exit-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 420px;
  width: calc(100% - 32px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.exit-modal-container.open .exit-modal {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.exit-modal h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
}

.exit-modal p {
  margin: 0 0 12px;
  color: hsl(220 10% 40%);
  line-height: 1.6;
}

.exit-modal-sub {
  margin-bottom: 20px;
  font-weight: 600;
  color: hsl(220 10% 35%);
}

.exit-modal-cta {
  width: 100%;
}

.exit-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: hsl(220 10% 35%);
}

@media (max-width: 768px) {
  .exit-modal {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  /* Mobile: benefits subtitle readability */
  .benefits .section-subtitle {
    font-size: 15.5px;
    line-height: 1.6;
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Mobile: landing hero spacing for above-the-fold CTA */
  .landing-hero {
    padding-top: calc(var(--header-offset) + 24px);
    padding-bottom: 56px;
  }

  .landing-hero .hero-actions {
    margin-top: 16px;
  }

  /* Mobile: benefits cards alignment rules */
  .benefit-card h3 {
    text-align: center;
  }

  .benefit-card p {
    text-align: left;
  }

  /* Mobile: process cards alignment rules */
  .landing-prozess .prozess-card h3 {
    text-align: center;
  }

  .landing-prozess .prozess-card p {
    text-align: left;
  }

  /* Mobile: CTA/decision card alignment */
  .landing-form .kontakt-form-card h3,
  .landing-form .kontakt-hint,
  .landing-form .kontakt-note {
    text-align: center;
  }

  .landing-form .kontakt-form {
    text-align: left;
  }

  .landing-form .kontakt-form label {
    text-align: left;
  }

  .landing-form .kontakt-form input,
  .landing-form .kontakt-form textarea {
    width: 100%;
  }

  .landing-form .kontakt-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Mobile: landing sections stacked + full width */
  .benefits-grid,
  .landing-prozess .prozess-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .landing-prozess .prozess-card,
  .landing-form .kontakt-form-card {
    width: 100%;
  }

  /* Mobile: match benefits card sizing to Prozess cards */
  .benefit-card {
    padding: 32px 24px;
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}


/* =================================================
   PREISE
================================================= */

.preise {
  background: hsl(220 20% 96%);
}

/* =================================================
   WEBSITE-CHECK
================================================= */

.audit {
  background: #ffffff;
}

.audit-container {
  max-width: 1200px;
  margin: 0 auto;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.audit-card {
  background: #ffffff;
  border: 1px solid hsl(25 95% 55% / 0.2);
  border-radius: var(--radius);
  padding: 30px;
  text-align: left;
}

.audit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.audit-icon .icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.audit-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.audit-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: hsl(220 10% 40%);
}

.audit-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid hsl(25 95% 55% / 0.25);
  border-radius: var(--radius);
  background: hsl(25 95% 55% / 0.04);
  padding: clamp(28px, 3vw, 40px);
}

.audit-panel h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.audit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.audit-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  color: hsl(220 10% 35%);
}

.audit-list span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.audit-cta {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.audit-cta p {
  margin: 0 0 16px;
  color: hsl(220 10% 40%);
}

.preise-container {
  max-width: 1200px;
  margin: 0 auto;
}

.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

#preise .section-title {
  white-space: nowrap;
}

.preis-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.preis-highlight {
  background: linear-gradient(180deg, var(--primary), hsl(220 25% 18%));
  color: #ffffff;
  border-color: transparent;
}

.preis-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px -6px hsl(25 95% 55% / 0.7);
}

.preis-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.preis-desc {
  font-size: 15px;
  margin-bottom: 24px;
  color: hsl(220 10% 45%);
}

.preis-highlight .preis-desc {
  color: hsl(210 40% 85%);
}

.preis-value {
  margin-bottom: 28px;
}

.preis-number {
  font-size: 40px;
  font-weight: 900;
}

.preis-once {
  display: block;
  font-size: 14px;
  opacity: 0.7;
}

.preis-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.preis-features li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
  padding-left: 28px;
}

.preis-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.preis-highlight .preis-features li::before {
  color: var(--accent);
}

.preis-btn {
  width: 100%;
  margin-top: auto;
}

.preis-card .btn-secondary {
  color: var(--primary);
  border-color: var(--primary);
}

.preis-card .btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
}

.preis-hint {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: hsl(220 10% 45%);
  text-align: center;
}

.preis-highlight .preis-hint {
  color: hsl(210 40% 90%);
}

@media (max-width: 900px) {
  .preise-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================
   FAQ
================================================= */

.faq {
  background: hsl(220 20% 96%);
position: relative;
  z-index: 5;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
 position: relative;
  z-index: 1;
  border: 1px solid hsl(220 15% 90%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
}

.faq-item.active {
  background: linear-gradient(to right, hsl(25 95% 55% / 0.04), #ffffff 40%);
}

.faq-item.active::before {
  opacity: 1;
  padding-left: 4px;
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: hsl(220 15% 25%);
  transition: color 0.2s ease;
  position: relative;
  z-index: 2;
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question {
  color: var(--accent);
}

.faq-question:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--accent-soft);
  border-radius: calc(var(--radius) - 2px);
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer p {
  padding: 0 26px 22px;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: hsl(220 10% 40%);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg) translateY(1px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
}
/* =================================================
   KONTAKT – FINAL PREMIUM (STABIL)
================================================= */

.kontakt {
  background: #ffffff;
}

.kontakt-container {
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.kontakt-info-card,
.kontakt-form-card {
  padding: 40px;
}

.kontakt-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.kontakt-icon .icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.kontakt-info-card h3,
.kontakt-form-card h3,
.kontakt-form h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.kontakt-form h3 {
  font-size: 22px;
}

.kontakt-info-card p {
  font-size: 15.5px;
  color: hsl(220 10% 40%);
  margin-bottom: 32px;
}

.kontakt-info-card > p {
  font-size: 15.5px;
  color: hsl(220 10% 40%);
  margin-bottom: 32px;
}

.kontakt-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-label {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.kontakt-link {
  color: hsl(220 10% 45%);
  text-decoration: none;
  font-size: 15px;
}

.kontakt-item:hover .kontakt-link {
  color: var(--accent);
}

.kontakt-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.kontakt-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.kontakt-form input,
.kontakt-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid hsl(220 15% 88%);
  font-family: inherit;
  font-size: 15px;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px hsl(25 95% 55% / 0.15);
}

.kontakt-form p,
.kontakt-after,
.kontakt-note {
  font-size: 14px;
  line-height: 1.6;
  color: hsl(220 10% 45%);
  margin-top: 14px;
opacity: 0.85;
}

.kontakt-form {
  padding: 48px 44px;
  border-radius: var(--radius);
  border: 1px solid hsl(25 95% 55% / 0.22);
}

.kontakt-success-inner {
  border-radius: var(--radius);
  border: 1px solid hsl(25 95% 55% / 0.22);
  padding: 36px 32px;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  animation: kontaktSuccessReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.kontakt-success-inner h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.kontakt-success-inner p {
  margin: 0;
  line-height: 1.6;
  color: hsl(220 10% 40%);
}


.kontakt-success-icon svg {
  width: 34px;
  height: 34px;
}

.kontakt-form:hover {
  border-color: hsl(25 95% 55% / 0.45);
}

.kontakt-info {
  gap: 20px;
}

.kontakt-item {
  background: #fff;
  border: 1px solid hsl(25 95% 55% / 0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  align-items: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.kontakt-item span:not(.kontakt-label) {
  color: hsl(220 10% 45%);
}
.kontakt-address {
  display: block;
  margin-bottom: 6px;
}

.kontakt-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.kontakt-form-card {
  background: #fff;
  border: 1px solid hsl(25 95% 55% / 0.25);
  box-shadow: 0 20px 50px -20px hsl(220 60% 20% / 0.25);
}

.kontakt-submit {
  font-size: 16px;
  font-weight: 700;
  padding: 18px 28px;
margin-bottom: 18px;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(135deg, hsl(25 95% 55%) 0%, hsl(25 95% 48%) 100%);
  box-shadow: 0 12px 30px -12px hsl(25 95% 55% / 0.65);
}

.kontakt-submit:hover,
.kontakt-submit:focus,
.kontakt-submit:focus-visible {
  border: none;
  outline: none;
  box-shadow: 0 16px 36px -12px hsl(25 95% 55% / 0.75);
}

@keyframes kontaktSuccessReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =================================================
   NAV
================================================= */

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 32px;
  min-width: 130px;
  border-radius: 10px;
  background: linear-gradient(180deg, hsl(25 95% 60%), hsl(25 95% 52%));
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 6px 18px -10px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.45);
  filter: brightness(1.03);
}

/* =================================================
   LEGAL PAGES
================================================= */

.legal-main {
  padding-top: 160px;
  padding-bottom: 120px;
}

.legal-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-head {
  text-align: center;
  margin-bottom: 64px;
}

.legal-head h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.legal-text {
  text-align: left;
}

.legal-text p,
.legal-text li {
  font-size: 16px;
  line-height: 1.7;
  color: hsl(220 10% 32%);
}

.legal-text a {
  color: inherit;
  text-decoration: none;
}

.legal-text a:hover {
  color: var(--primary);
}

.legal-text a[href^="mailto:"] {
  color: hsl(220 10% 32%);
  text-decoration: none;
  transition: color 0.25s ease;
}

.legal-text a[href^="mailto:"]:hover {
  color: var(--accent);
  text-decoration: none;
}

/* =================================================
   MOBILE OVERRIDES
================================================= */

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-offset) + 40px);
    padding-bottom: 72px;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .hero-accent {
    display: block;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .legal-wrapper {
    width: 100%;
    padding: 0 16px;
  }

  .legal-head h1 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    white-space: normal;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .leistungen-grid {
    gap: 20px;
  }

  .leistung-card p {
    max-width: none;
  }

  .vorteile-text {
    margin-bottom: 40px;
  }

  .vorteile-list li {
    font-size: 16px;
    gap: 16px;
  }

  .vorteile-cards {
    gap: 20px;
  }

  .prozess .section-subtitle {
    margin-bottom: 40px;
  }

  #preise .section-title {
    white-space: normal;
  }

  .preis-card {
    padding: 32px 24px;
  }

  .preis-number {
    font-size: 34px;
  }

  .kontakt-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }

  .kontakt-form {
    padding: 32px 24px;
  }

   .leistungen-container,
  .vorteile-container,
  .prozess-container,
  .preise-container,
  .faq-container,
  .kontakt-container,
  .references-container,
  .audit-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Mobile: references + website-check CTA tap targets */
  .references-cta,
  .audit-panel {
    padding: 24px;
  }

  .references-cta .btn,
  .audit-cta .btn {
    width: 100%;
    min-height: 44px;
  }

  .reference-stats {
    grid-template-columns: 1fr;
  }

  .audit-list li {
    align-items: flex-start;
  }

  /* Mobile: references + website-check cards full width */
  .references-grid,
  .audit-grid {
    grid-template-columns: 1fr;
  }

  .reference-card,
  .audit-card {
    width: 100%;
  }

  /* Mobile: references card alignment */
  .reference-meta {
    justify-content: center;
  }

  .reference-card h3 {
    text-align: center;
  }

  .reference-card p,
  .reference-stats {
    text-align: left;
  }

  /* Mobile: references special CTA card title centered with equal spacing */
  .references-cta {
    justify-content: center;
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
    align-items: center;
  }

  .references-cta p,
  .references-cta .btn {
    display: none;
  }

  .references-cta h3 {
    margin: 0;
    /* Mobile: center CTA title vertically */
    align-self: center;
  }

  /* Mobile: website-check panel stacks and CTA is tappable */
  .audit-panel {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .audit-cta .btn {
    width: 100%;
    min-height: 44px;
  }

  /* Mobile: website-check CTA card alignment */
  .audit-cta {
    text-align: center;
  }

  .audit-cta p {
    text-align: center;
  }

  .audit-cta .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1023px) {
  .mobile-menu {
    padding-bottom: 16px;
    overflow-y: auto;
  }

  .mobile-menu ul {
    margin-bottom: 24px;
  }

  .mobile-menu .menu-cta {
    margin-top: 24px;
  }
}
.kontakt-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: hsl(220 15% 94%);
color: hsl(220 20% 35%);

}
.text-accent {
  color: var(--accent) !important;
  font-weight: 500;
}

.text-accent:hover {
  text-decoration: none;
}
/* ===============================
   SEO PAGE – CLEAN STRUCTURE FINAL
================================ */

/* Base */
.seo-main {
  background: #ffffff;
  margin: 0;
}

.seo-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===============================
   HERO
================================ */

.seo-hero-minimal {
  background: #ffffff;
  padding-top: 140px;
  padding-bottom: 40px;
  position: relative;
}
.seo-hero-minimal + .seo-content-section {
  padding-top: 32px;
}
.seo-hero-minimal h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.seo-lead {
  font-size: 20px;
  line-height: 1.7;
  color: hsl(220 10% 40%);
}

/* ===============================
   SEPARATOR
================================ */

.seo-separator {
  width: 240px;
  height: 3px;
  margin: 32px auto;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    hsl(220 45% 32%) 0%,
    hsl(220 45% 32%) 70%,
    var(--accent) 70%,
    var(--accent) 100%
  );
}

/* ===============================
   CONTENT SECTIONS
================================ */

.seo-content-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.seo-content-section h2 {
  position: relative;
  font-size: 30px;
  margin-top: 64px;
  margin-bottom: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Remove extra margin on first H2 */
.seo-content-section:first-of-type h2:first-of-type {
  margin-top: 0;
}

.seo-content-section h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: hsl(25 95% 55% / 0.35);
}

.seo-content-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.seo-content p {
  font-size: 17px;
  line-height: 1.75;
  color: hsl(220 10% 35%);
  margin-bottom: 24px;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

/* ===============================
   LIST
================================ */

.seo-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.seo-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  font-size: 16.5px;
  line-height: 1.7;
}

.seo-list li:last-child {
  margin-bottom: 0;
}

.seo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ===============================
   HIGHLIGHT BOX
================================ */

.seo-highlight {
  background: #ffffff;
  max-width: 820px;
  border: 1px solid hsl(25 95% 55% / 0.25);
  border-radius: 16px;
  box-shadow: 0 12px 30px -20px hsl(220 60% 20% / 0.25);
  padding: 36px 40px;
  margin: 48px auto 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

/* ===============================
   SEO BADGE
================================ */

.seo-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: hsl(25 95% 55% / 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

/* ===============================
   INLINE CTA
================================ */
.inline-cta-card {
  background: linear-gradient(135deg, #f6f8fb 0%, #eef2f7 100%);
  border-radius: 18px;
  padding: 32px 36px; /* redus pentru echilibru */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-shadow: 0 25px 50px -25px rgba(15, 23, 42, 0.15);
  border: 1px solid hsl(220 20% 88%);
}

.inline-cta-text h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.inline-cta-text p {
  margin: 0;
  max-width: 520px;
  color: hsl(220 20% 35%);
  line-height: 1.6;
}

.inline-cta-action {
  flex-shrink: 0;
}

/* ===============================
   FINAL LIGHT CTA
================================ */

.seo-final-cta-light,
.seo-soft-cta {
  padding: 64px 0;
  background: hsl(220 20% 96%);
  text-align: center;
  border-top: 1px solid hsl(220 15% 90%);
}

.seo-final-cta-light h2,
.seo-soft-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.seo-final-cta-light p,
.seo-soft-cta p {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.7;
  color: hsl(220 20% 35%);
}
/* Disable global section padding inside SEO pages */
.seo-main .section {
  padding-top: 0;
  padding-bottom: 0;
}
.seo-hero-minimal + .seo-content-section {
  padding-top: 8px;
}
.seo-main > .seo-content-section:last-of-type {
  padding-bottom: 24px;
}

.seo-inline-cta-premium {
  padding-top: 32px 0;
}


/* Următoarea secțiune gri */
.seo-inline-cta-premium + section {
  padding-top: 64px;
}
/* Reduce space between hero and first content section */
.seo-hero-minimal {
  padding-bottom: 40px;
}

.seo-hero-minimal + .seo-content-section {
  padding-top: 32px;
}


/* Force center alignment for section headers */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-lead-center {
  text-align: center;
  max-width: 820px;
  margin: 40px auto 56px;
  font-size: 18px;
}
}
.seo-hero-minimal + .seo-content-section h2:first-of-type {
  margin-top: 0;
}