/* ==========================================================================
   DESIGN OPTIMIERT - V3.8 (HUBSPOT OPTIMIZATION + GDPR + VALIDATION)
   ========================================================================== */

/* 1. Variables & Globale Stile */
:root {
  --brand: #f29100;
  --brand-light: #ffac3e;
  --brand-dark: #c37300;
  --ink: #1a1d24;
  --ink-light: #3a404f;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-dark: #1a1d24;
  --bg-soft: #f4f6f9;
  --focus-ring: rgba(242, 145, 0, 0.4);
  --radius: 12px;
  --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.07);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  color: var(--ink-light);
  background-color: var(--bg);
  margin: 0;
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px var(--focus-ring);
  border-radius: var(--radius);
}

.card:focus-visible {
  border-radius: var(--radius);
}

/* ... (restlicher CSS-Code bleibt identisch bis zum Slider-Block) ... */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease-out;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn.cta-primary {
  background: linear-gradient(45deg, var(--brand), var(--brand-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(242, 145, 0, 0.35);
}

.btn.cta-primary:hover {
  background: linear-gradient(45deg, #ff9d0d, #ffc05e);
  box-shadow: 0 6px 20px rgba(242, 145, 0, 0.4);
}

.btn.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: #e1e4e8;
}

.btn.btn-ghost:hover {
  background-color: var(--bg-soft);
  border-color: #d1d5db;
}

.hero .btn.btn-ghost {
  background: var(--bg);
  color: var(--ink);
  border-color: #d1d5db;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 0.95rem;
}

.hero .btn.btn-ghost:hover {
  background: var(--bg);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.hero .btn.btn-ghost svg {
  flex-shrink: 0;
  color: var(--brand);
}

.btn.btn--inverted {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn.btn--inverted:hover {
  background: var(--bg-soft);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn.btn-ghost--inverted {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.card {
  background: var(--bg);
  border: 1px solid #e1e4e8;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease-out;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.card-with-icon {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease-out;
  text-align: center;
}

.card-with-icon:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--brand-light);
}

.card-with-icon .card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  display: block;
}

.card-with-icon h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.card-with-icon p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  color: var(--muted);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-light);
}

.cards.three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid #e1e4e8;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.main-nav {
  display: none;
}

/* Language Switcher - Dropdown style */
.language-switcher {
  position: relative;
  display: inline-block;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: var(--bg);
  border: 1px solid #e1e4e8;
  border-radius: calc(var(--radius) - 2px);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lang-trigger:hover {
  background-color: var(--bg-soft);
  border-color: #d1d5db;
}

.lang-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--focus-ring);
}

.lang-icon {
  flex-shrink: 0;
  color: var(--muted);
}

.lang-current {
  font-weight: 600;
  letter-spacing: 0.025em;
}

.lang-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease-out;
}

.language-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background-color: var(--bg);
  border: 1px solid #e1e4e8;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 4px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease-out;
}

.language-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--ink-light);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: calc(var(--radius) - 4px);
  transition: all 0.15s ease-out;
  text-align: left;
}

.lang-option:hover {
  background-color: var(--bg-soft);
  color: var(--ink);
}

.lang-option.active {
  color: var(--brand);
  background-color: #fff3e4;
}

.lang-option:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--focus-ring);
}

.lang-label {
  flex: 1;
}

.lang-check {
  flex-shrink: 0;
  opacity: 0;
  color: var(--brand);
}

.lang-option.active .lang-check {
  opacity: 1;
}

.hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  color: var(--ink);
  padding: 48px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(1.85rem, 5.5vw, 3.2rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  font-weight: 700;
}

.hero .lead {
  color: var(--ink-light);
  margin: 0 0 0 0;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42rem;
}

.hero-copy {
  max-width: 42rem;
}

.hero-action-prompt {
  margin-top: 1.5rem;
}

.hero-action-prompt .action-text {
  color: var(--ink-light);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.hero-form {
  background: linear-gradient(160deg, #f29100 0%, #e87a00 100%);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 20px 40px rgba(242, 145, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hero-form h2 {
  font-size: 1.25rem;
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.section {
  padding: 48px 0;
}

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

.section-title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-subtitle {
  max-width: 56ch;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.section--orange {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.section--orange-soft {
  background: linear-gradient(180deg, #fff8f0 0%, #fff3e4 50%, #fff8f0 100%);
}

.section--dark {
  background-color: #2a2f3a;
  color: #f4f6f9;
}

.section--dark .section-title,
.section--dark h3 {
  color: #fff;
}

.section--dark .section-subtitle,
.section--dark p {
  color: #adb5bd;
}

.section--brand {
  background-color: #2a2f3a;
  color: #fff;
}

.trust-bar-section {
  background: linear-gradient(180deg, #fff8f0 0%, #fff3e4 50%, #fff8f0 100%);
  padding: 1.25rem 0;
}

.trust-bar-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem 3rem;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  text-align: center;
}

.trust-bar-item img {
  width: 40px;
  height: 40px;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .trust-bar-section {
    padding: 1.5rem 0;
  }

  .trust-bar-items {
    gap: 1.5rem 4rem;
  }

  .trust-bar-item {
    font-size: 0.9rem;
  }

  .trust-bar-item img {
    width: 40px;
    height: 40px;
  }
}

/* Avantages Grid - Compact Card Layout */
.avantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.avantage-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease-out;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.avantage-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--brand-light);
}

.avantage-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.avantage-number {
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-block;
  background: #fff3e4;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.avantage-card strong {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.avantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (min-width: 600px) {
  .avantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .avantages-grid {
    gap: 1.25rem;
  }

  .avantage-card {
    padding: 1.5rem;
  }
}

/* Legacy avantages-list (keep for backwards compat) */
.avantages-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin-top: 2.5rem;
}

.avantages-list li {
  background: var(--bg);
  border: 1px solid #e1e4e8;
  padding: 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.avantages-list strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.avantages-list .icon {
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.avantages-list p {
  margin: 0.5rem 0 0;
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ==========================================================================
   TESTIMONIALS (NEW)
   ========================================================================== */
.testimonials-wrapper {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.testimonial-card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-content {
  margin-bottom: 1rem;
}

.testimonial-content .stars {
  color: var(--brand);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-content blockquote {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 2px;
}

.author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.author-info strong {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.section--brand .section-title {
  color: #fff;
}

.section--cta-final {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  text-align: center;
  padding: 40px 0;
}

.section--cta-final h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.section--cta-final p {
  font-size: 1rem;
  max-width: 50ch;
  margin: 0.75rem auto 1.5rem;
  line-height: 1.6;
  color: var(--muted);
}

.hs-form-field {
  margin-bottom: 1rem;
}

.hs-form-field label {
  display: none;
}

.hs-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.hs-button {
  width: 100%;
  background: linear-gradient(45deg, var(--brand), var(--brand-light)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  padding: 12px 24px !important;
  border: none !important;
  transition: all 0.25s ease-out !important;
  cursor: pointer;
}

.hs-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 145, 0, 0.4) !important;
}

.site-footer {
  background: var(--ink);
  color: #adb5bd;
  padding: 48px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-contact a,
.footer-legal a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover,
.footer-legal a:hover {
  color: #fff;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px;
  z-index: 100;
  display: flex;
  gap: 12px;
  border-top: 1px solid #e1e4e8;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.mobile-cta .btn {
  flex: 1;
}

.mobile-cta .btn.btn-ghost {
  color: var(--ink);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
  }

  .avantages-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    text-align: left;
  }

  .cards.three {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .trust-bar-items {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .main-nav a:not(.btn) {
    color: var(--ink-light);
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 500;
    transition: color 0.2s;
  }

  .main-nav a:not(.btn):hover {
    color: var(--brand);
  }

  .mobile-cta {
    display: none;
  }

  .header-row {
    gap: 2rem;
  }
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: var(--radius);
}

.location-info h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.location-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.location-info li svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-info li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.location-info li a:hover {
  opacity: 0.8;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  .location-map iframe {
    height: 450px;
  }
}

.slider-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.slider-text .eyebrow {
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.slider-text h2 {
  font-size: 2.5rem;
  margin-top: 0;
}

.slider-text blockquote {
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--brand);
  padding-left: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .slider-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   FINALER, FUNKTIONIERENDER SLIDER-BLOCK
   ========================================================================== */
.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-medium);
}

/* Das 'Vorher'-Bild (Hintergrund) */
.comparison-slider>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Der 'Nachher'-Container (Maske) */
.comparison-slider .img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  /* Startposition */
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

/* Das 'Nachher'-Bild in der Maske */
.comparison-slider .img-after img {
  display: block;
  width: 100%;
  /* Bezieht sich auf die Breite des Sliders, nicht der Maske! */
  height: 100%;
  object-fit: cover;
  max-width: none;
  /* WICHTIG: Verhindert, dass das Bild schrumpft */
  position: absolute;
  top: 0;
  left: 0;
}

.comparison-slider .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--brand);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider .handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 60px;
  background-color: var(--brand);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-out;
}

.comparison-slider:hover .handle-circle {
  transform: translate(-50%, -50%) scale(1.05);
}

.comparison-slider .handle-circle svg {
  width: 24px;
  height: 24px;
  color: #fff;
  stroke-width: 2;
}

/* ==========================================================================
   FORM OPTIMIZATION - Mini Testimonial & Benefits
   ========================================================================== */

.mini-testimonial {
  background: var(--bg);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 24px 0 20px 0;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.mini-testimonial .stars {
  color: var(--brand);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mini-testimonial p {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.5;
}

.mini-testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.form-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-benefits li {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-benefits li::before {
  content: "✓";
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.secure {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  padding: 0 8px;
}

/* ==========================================================================
   MULTI-STEP FORM STYLES
   ========================================================================== */

.multi-step-form {
  position: relative;
  min-height: 300px;
}

/* Progress indicator */
.form-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.progress-dot.active {
  background-color: #fff;
  transform: scale(1.3);
}

.progress-dot.completed {
  background-color: rgba(255, 255, 255, 0.7);
}

/* Form steps */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.form-step h3 {
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

/* Step 1: Visual buttons */
.visual-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.visual-btn {
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 18px 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  text-align: center;
}

.visual-btn:hover {
  background: #ffe8d4;
}

.visual-btn.selected {
  background: #ffe8d4;
  border-color: var(--ink);
}

.visual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  line-height: 1;
}

.visual-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--ink);
}

.visual-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* Form row layout for side-by-side fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-row:has(.form-field--small) {
  grid-template-columns: 1fr 90px;
}

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

.form-row + .form-row {
  margin-top: 10px;
}

@media (max-width: 400px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-row:has(.form-field--small) {
    grid-template-columns: 1fr 80px;
  }
}

/* Step 2: Form inputs */
.form-step label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  margin-top: 12px;
}

.form-step .form-row label {
  margin-top: 0;
}

.form-step label:first-of-type {
  margin-top: 0;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  /* Prevents iOS zoom */
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-step textarea {
  resize: vertical;
  min-height: 100px;
}

.form-step input:focus,
.form-step textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-step input::placeholder,
.form-step textarea::placeholder {
  color: #9ca3af;
}

.form-step input.error,
.form-step textarea.error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.form-step input.valid,
.form-step textarea.valid {
  border-color: #22c55e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-step .error-message {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form-step input.error+.error-message {
  display: block;
}

/* GDPR Consent */
.form-consent {
  margin-top: 20px;
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-label a {
  color: #fff;
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: #fff;
  opacity: 0.8;
}

/* Form buttons */
.form-next,
.form-submit {
  width: 100%;
  margin-top: 20px;
  background: #fff !important;
  color: var(--brand-dark) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.form-next:hover,
.form-submit:hover {
  background: var(--bg-soft) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.btn-back:hover {
  color: #fff;
}

.btn-back svg {
  width: 16px;
  height: 16px;
}

/* Mobile responsive adjustments for visual buttons */
@media (min-width: 500px) {
  .visual-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  .visual-btn {
    padding: 24px 12px;
  }
}

/* Tablet adjustments */
@media (min-width: 600px) {
  .visual-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  .visual-btn {
    padding: 20px 14px;
  }
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .hero {
    padding: 64px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 1.25rem;
  }

  .hero .lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }

  .mini-testimonial {
    padding: 16px 20px;
    margin: 24px 0 20px;
  }

  .mini-testimonial p {
    font-size: 0.95rem;
  }

  .mini-testimonial cite {
    font-size: 0.85rem;
  }

  .hero-action-prompt {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .hero-action-prompt .action-text {
    margin: 0;
    font-size: 0.95rem;
  }

  .hero .btn.btn-ghost {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero-form {
    padding: 28px;
  }

  .hero-form h2 {
    font-size: 1.25rem;
  }

  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .card p {
    font-size: 0.95rem;
  }

  .avantages-list {
    gap: 1rem;
    margin-top: 2rem;
  }

  .avantages-list li {
    padding: 1.25rem;
  }

  .avantages-list strong {
    font-size: 1.05rem;
  }

  /* Old review styles removed */

  /* Old review styles removed */

  /* Testimonials Desktop */
  .testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 0;
    padding: 8px 0 20px;
    overflow: visible;
  }

  .testimonial-card {
    flex: none;
    width: auto;
  }

  .section--cta-final h2 {
    font-size: 1.6rem;
  }

  .form-benefits {
    margin: 0 0 20px 0;
    gap: 8px;
  }

  .form-benefits li {
    font-size: 0.9rem;
  }

  .form-step h3 {
    font-size: 1.15rem;
    margin: 0 0 16px 0;
  }

  .visual-btn {
    padding: 24px 16px;
  }

  .visual-icon {
    width: 56px;
    height: 56px;
  }

  .visual-icon svg {
    width: 40px;
    height: 40px;
  }

  .visual-label {
    font-size: 1rem;
  }
}

/* ==========================================================================
   GALLERY / RÉALISATIONS
   ========================================================================== */

.section--soft {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 50%, #fff 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.75rem;
  margin-top: 1.5rem;
}

.gallery-item {
  margin: 0;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

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

.gallery-item figcaption {
  padding: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

@media (min-width: 600px) {
  .gallery-grid {
    gap: 1.5rem 1rem;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

/* ==========================================================================
   PROBLEM-SOLUTION SECTION
   ========================================================================== */

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.problem-side,
.solution-side {
  text-align: center;
}

.problem-side h2,
.solution-side h2 {
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.rapport-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  transform: rotate(-3deg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}

.rapport-image:hover {
  transform: rotate(-1deg) scale(1.02);
}

.arrow-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--ink);
  transform: rotate(90deg);
}

.arrow-connector svg {
  width: 48px;
  height: 48px;
  stroke-width: 2.5;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comparison-photo {
  margin: 0;
  text-align: center;
}

.comparison-photo .photo-wrapper {
  position: relative;
  display: inline-block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.comparison-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.status-badge.bad {
  background: #dc2626;
  color: #fff;
}

.status-badge.good {
  background: #22c55e;
  color: #fff;
}

.comparison-photo figcaption {
  margin-top: 0.75rem;
  text-align: center;
}

.comparison-photo figcaption strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.comparison-photo figcaption span {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .problem-solution-grid {
    grid-template-columns: 1fr auto 1.2fr;
    gap: 2.5rem;
  }

  .arrow-connector {
    transform: none;
  }

  .arrow-connector svg {
    width: 64px;
    height: 64px;
  }

  .problem-side h2,
  .solution-side h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .rapport-image {
    max-width: 320px;
  }

  .before-after-grid {
    gap: 1.5rem;
  }

  .status-badge {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    top: 12px;
    right: 12px;
  }

  .comparison-photo figcaption strong {
    font-size: 1.1rem;
  }

  .comparison-photo figcaption span {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .problem-solution-grid {
    gap: 3rem;
  }

  .problem-side h2,
  .solution-side h2 {
    font-size: 1.65rem;
  }

  .rapport-image {
    max-width: 360px;
  }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox {
  border: none;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 1000;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease-out;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 16px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 0 20px;
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms)
   ========================================================================== */

.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content .back-link {
  display: inline-block;
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.legal-content .back-link:hover {
  color: var(--brand-dark);
}

.legal-content h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  color: var(--ink);
}

.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 2.5rem 0;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e1e4e8;
}

.legal-section h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
  margin: 0 0 1rem 0;
  line-height: 1.7;
  color: var(--ink-light);
}

.legal-section ul {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--ink-light);
}

.legal-section li strong {
  color: var(--ink);
}

.legal-address {
  font-style: normal;
  background: var(--bg);
  border: 1px solid #e1e4e8;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1rem 0;
  line-height: 1.8;
}

.legal-address a {
  color: var(--brand);
  text-decoration: none;
}

.legal-address a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .legal-page {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .legal-content h1 {
    font-size: 2.5rem;
  }

  .legal-section h2 {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   WhatsApp FAB
   ========================================================================== */

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: #22c55e;
}

.whatsapp-fab:active {
  transform: scale(0.95);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.5);
}

/* On mobile, lift FAB above mobile-cta bar when present */
@media (max-width: 991px) {
  body:has(.mobile-cta) .whatsapp-fab {
    bottom: 90px;
  }
}

@media (min-width: 992px) {
  .whatsapp-fab {
    right: 24px;
    width: 60px;
    height: 60px;
  }

  .whatsapp-fab svg {
    width: 32px;
    height: 32px;
  }
}