/* Aura Clinic — silver aesthetic */
:root {
  --color-primary: #b8bec8;
  --color-primary-hover: #d4dae3;
  --color-primary-dark: #8a919c;
  --color-secondary: #5c636d;
  --color-bg: #0e1012;
  --color-bg-elevated: #16191d;
  --color-surface: #1e2228;
  --color-text: #eceff4;
  --color-text-muted: #9aa3ae;
  --color-border: #343b44;
  --silver-glow: rgba(196, 204, 214, 0.35);
  --silver-gradient: linear-gradient(135deg, #6e7680 0%, #c8ced6 42%, #9aa3ad 100%);
  --font: "Montserrat", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  --header-h: 64px;
  --touch: 48px;
  --container-max: 1120px;
  /* Tek tip yatay boşluk: header, hero ve tüm bölümler aynı hizada */
  --page-gutter: clamp(1.25rem, 4vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
}

html[lang="ka"] body {
  font-family: "Noto Sans Georgian", var(--font);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  padding-left: max(var(--page-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--page-gutter), env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 16, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 0;
}

.header-inner .brand {
  flex: 0 0 auto;
}

.header-inner--simple .nav-main {
  margin-left: auto;
  justify-content: flex-end;
}

@media (min-width: 901px) {
  .header-inner:not(.header-inner--simple) {
    flex-wrap: nowrap;
  }

  .header-inner:not(.header-inner--simple) .nav-main {
    flex: 1 1 auto;
    justify-content: center;
  }

  .header-inner:not(.header-inner--simple) .lang-switcher {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  .header-inner:not(.header-inner--simple) .lang-switcher {
    margin-left: auto;
  }
}

.brand {
  flex-shrink: 0;
}

.brand-logo {
  height: clamp(38px, 10vw, 44px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.nav-toggle {
  display: none;
  width: var(--touch);
  height: var(--touch);
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  flex-wrap: wrap;
}

.nav-main a {
  color: #c5cbc7;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.15rem;
}

.nav-main a:hover {
  color: #fff;
  text-decoration: none;
}

.nav-main a.nav-link--highlight {
  color: #e8ecf2;
  font-weight: 700;
  text-shadow:
    0 0 10px var(--silver-glow),
    0 0 22px rgba(196, 204, 214, 0.25);
}

.nav-main a.nav-link--highlight:hover {
  color: #fff;
  text-decoration: none;
  text-shadow:
    0 0 12px rgba(232, 236, 242, 0.7),
    0 0 28px rgba(196, 204, 214, 0.35);
}

.lang-switcher {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.85rem;
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn:hover {
  color: var(--color-text);
}

.lang-btn.is-active {
  background: var(--silver-gradient);
  color: #121416;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(0, 0, 0, 0.55);
  z-index: 98;
}

.site-header.is-nav-open .nav-backdrop {
  display: block;
}

@media (max-width: 900px) {
  .nav-main {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.3s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-header.is-nav-open .nav-main {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-main a {
    font-size: 1.05rem;
    padding: 0.95rem 0.75rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
  }

  .nav-main a:active {
    background: var(--color-surface);
  }

  .nav-main a.nav-link--highlight {
    border-color: rgba(196, 204, 214, 0.35);
    background: rgba(196, 204, 214, 0.08);
  }
}

/* Hero — split: Vorher/Nachher links, Text rechts */
.hero {
  position: relative;
  min-height: min(88vh, 800px);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 35%, rgba(196, 204, 214, 0.12), transparent 50%),
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(184, 190, 200, 0.08), transparent 45%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(90, 96, 104, 0.18), transparent 50%),
    linear-gradient(180deg, #14171a 0%, var(--color-bg) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.25rem);
  align-items: center;
  width: 100%;
  align-content: center;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: center;
    min-height: min(70vh, 640px);
  }
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

@media (min-width: 900px) {
  .hero-visual {
    justify-content: flex-start;
    align-items: center;
  }
}

/* Tek PNG: geçiş görselin içinde */
.hero-split-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: min(68vh, 600px);
  object-fit: cover;
  object-position: center center;
  margin-inline: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .hero-split-img {
    margin-inline: 0;
    max-width: 100%;
    max-height: min(72vh, 680px);
    object-position: left center;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-content {
    justify-self: start;
    padding-top: 0.5rem;
  }
}

@media (max-width: 899px) {
  .hero-content {
    text-align: center;
    margin-inline: auto;
    max-width: 36rem;
  }

  .hero-content .btn-primary {
    width: 100%;
    max-width: 22rem;
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4dae3;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(1.95rem, 5.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  font-weight: 500;
  color: #b8c0bb;
  margin: 0 0 1.85rem;
  max-width: 38ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 1.65rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn--touch {
  min-height: var(--touch);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--silver-gradient);
  color: #121416;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 24px var(--silver-glow);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: #0e1012;
  text-decoration: none;
}

.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: #c5cbc7;
  border: 1px solid var(--color-border);
  font-weight: 600;
}

.btn-ghost:hover:not(:disabled) {
  color: var(--color-text);
  border-color: var(--color-secondary);
}

.btn-block {
  width: 100%;
}

/* Image placeholders — görseller media/ klasörüne eklendiğinde img ile değiştirin */
.media-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: var(--radius);
  border: 1px dashed rgba(196, 204, 214, 0.35);
  background:
    linear-gradient(145deg, rgba(30, 34, 40, 0.95), rgba(22, 25, 29, 0.98)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(196, 204, 214, 0.03) 8px,
      rgba(196, 204, 214, 0.03) 16px
    );
  overflow: hidden;
}

.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 204, 214, 0.08), transparent 60%);
  pointer-events: none;
}

.media-placeholder-label {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(14, 16, 18, 0.65);
}

.media-placeholder--hero {
  aspect-ratio: 16 / 10;
  max-width: 520px;
  max-height: min(68vh, 600px);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .media-placeholder--hero {
    max-width: 100%;
    max-height: min(72vh, 680px);
    margin-inline: 0;
  }
}

.media-placeholder--about {
  aspect-ratio: 4 / 5;
  max-height: 520px;
  box-shadow: var(--shadow);
}

/* Services */
.services {
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}

.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.service-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, var(--color-surface), var(--color-bg-elevated));
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.service-card:hover {
  border-color: rgba(196, 204, 214, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.service-card--featured {
  border-color: rgba(196, 204, 214, 0.45);
  background:
    linear-gradient(160deg, rgba(196, 204, 214, 0.1), var(--color-bg-elevated)),
    var(--color-surface);
  box-shadow: 0 0 0 1px rgba(196, 204, 214, 0.12), 0 16px 40px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .service-card--featured {
    transform: translateY(-4px);
  }
}

.service-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #121416;
  background: var(--silver-gradient);
  border-radius: 999px;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(196, 204, 214, 0.25);
  color: #d4dae3;
  background: rgba(196, 204, 214, 0.06);
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Leistungen */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .leistungen-grid {
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.leistungen-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
}

.leistungen-visual--empty {
  min-height: 280px;
  background: linear-gradient(145deg, var(--color-surface), var(--color-bg-elevated));
}

.leistungen-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leistungen-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

.leistungen-text p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  font-weight: 500;
}

.leistungen-list {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.leistungen-list li {
  margin-bottom: 0.5rem;
}

.leistungen-note,
.about-note {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #8a939e;
  line-height: 1.55;
  max-width: 42ch;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.about-visual {
  position: relative;
}

.about-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  max-height: 520px;
  border: 1px solid var(--color-border);
}

.about-accent {
  position: absolute;
  inset: auto -8% -8% auto;
  width: 45%;
  height: 35%;
  background: linear-gradient(135deg, var(--color-primary), transparent);
  opacity: 0.25;
  border-radius: var(--radius);
  z-index: -1;
}

.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

.about-text p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  font-weight: 500;
}

.about-list {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.about-list li {
  margin-bottom: 0.5rem;
}

/* Analysis */
.section-head {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.section-sub {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.stepper-wrap {
  max-width: 540px;
  margin-inline: auto;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 4vw, 1.85rem);
  box-shadow: var(--shadow);
}

.progress-bar {
  height: 8px;
  background: var(--color-surface);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.step-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7a8f8c;
  margin: -0.35rem 0 1rem;
  padding: 0.45rem 0.65rem;
  background: rgba(196, 204, 214, 0.12);
  border-radius: 8px;
  border-left: 3px solid var(--color-primary);
}

.step-panels fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.step-question {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  padding: 0;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.options--stack .option {
  width: 100%;
}

.options--row-sm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 480px) {
  .options--row-sm {
    grid-template-columns: 1fr 1fr;
  }
}

/* Single-choice cards — klar wie Radio, nicht Checkbox */
.option--single {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: var(--touch);
  padding: 0.75rem 1rem 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.option__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.option__radio {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid #5a635f;
  border-radius: 50%;
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: inset 0 0 0 0 var(--color-primary);
}

.option__text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #dce1dd;
  line-height: 1.35;
}

.option--single:hover {
  border-color: #4a5550;
}

.option--single:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.option__input:checked + .option__radio {
  border-color: var(--color-primary);
  box-shadow: inset 0 0 0 5px var(--color-primary);
}

.option__input:checked ~ .option__text {
  color: #fff;
}

.option--single:has(.option__input:checked) {
  border-color: var(--color-primary);
  background: rgba(196, 204, 214, 0.12);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.85rem;
  flex-wrap: wrap;
}

.step-panel[hidden] {
  display: none !important;
}

/* Lead gate */
.lead-gate {
  margin-top: 2.5rem;
  max-width: 540px;
  margin-inline: auto;
}

.card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 4vw, 1.85rem);
  box-shadow: var(--shadow);
}

.lead-inner h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.45;
}

.lead-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.lead-form input {
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  min-height: var(--touch);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.privacy-hint {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(196, 204, 214, 0.15);
  border: 1px solid var(--color-primary);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-error {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(180, 60, 60, 0.15);
  border: 1px solid #a94442;
  font-size: 0.9rem;
}

.report-result {
  margin-top: 1.25rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: rgba(10, 18, 24, 0.6);
  border: 1px solid var(--color-border);
}

.report-result-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.report-result-body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.report-result-body .report-block-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin: 1rem 0 0.5rem;
}

.report-result-body .report-block-title:first-child {
  margin-top: 0;
}

.report-result-body ul.report-choice-list {
  margin: 0;
  padding-left: 1.15rem;
}

.report-result-body .report-paragraph {
  margin: 0 0 0.65rem;
}

.report-result-body .report-note {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 1rem;
}

/* Contact */
.contact-inner {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
}

.contact-inner h2 {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.contact-strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-inner p {
  margin: 0.4rem 0;
  color: var(--color-text-muted);
  font-weight: 500;
}

.contact-actions {
  margin-top: 1.25rem;
}

.contact-actions .btn {
  display: inline-flex;
}

.link-muted {
  color: var(--color-text);
  font-weight: 600;
}

.disclaimer {
  margin-top: 1.5rem !important;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 1.5rem;
  background: #080a09;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.footer-brand .footer-logo {
  opacity: 0.92;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 28ch;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a928d;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: #c5cbc7;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-mail {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.footer-mail a {
  font-weight: 600;
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: #7a827d;
}

/* Legal pages */
.legal-page {
  padding: 2rem 0 4rem;
}

.legal-page h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: #c5cbc7;
}

.legal-page p,
.legal-page li {
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--color-border);
  text-align: left;
  color: var(--color-text-muted);
}

.legal-table th {
  color: var(--color-text);
  font-weight: 700;
  background: var(--color-surface);
}

.legal-placeholder {
  padding: 0.75rem 1rem;
  background: rgba(196, 204, 214, 0.12);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: #b8c0bb;
  margin: 1rem 0;
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Cookie-Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  background: rgba(12, 14, 13, 0.98);
  border-top: 1px solid var(--color-border);
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cookie-banner-text a {
  font-weight: 600;
}

.cookie-banner-btn {
  flex-shrink: 0;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

body.cookie-banner-visible .fab-whatsapp,
body.cookie-banner-visible .fab-social {
  bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 900px) {
  body.cookie-banner-visible .fab-whatsapp,
  body.cookie-banner-visible .fab-social {
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* FAB: WhatsApp rechts, Social links */
.fab-whatsapp {
  position: fixed;
  z-index: 150;
  right: calc(1rem + env(safe-area-inset-right, 0px));
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab-whatsapp:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.fab-social {
  position: fixed;
  z-index: 150;
  left: calc(1rem + env(safe-area-inset-left, 0px));
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fab-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: var(--radius);
  background: var(--color-bg-elevated);
  color: #c5cbc7;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}

.fab-social-link:hover {
  color: #fff;
  border-color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .fab-whatsapp {
    width: 3.25rem;
    height: 3.25rem;
  }

  .fab-social-link {
    width: 2.65rem;
    height: 2.65rem;
  }
}

.report-page-container {
  max-width: 40rem;
}

.report-page-container--wide {
  max-width: 36rem;
}

.preview-studio {
  padding: 1.5rem 1.35rem 1.65rem;
}

.preview-technique-heading {
  margin: 1.35rem 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.technique-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 480px) {
  .technique-picker {
    grid-template-columns: repeat(2, 1fr);
  }
}

.technique-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  color: var(--color-text-muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.technique-chip:hover {
  border-color: rgba(196, 204, 214, 0.45);
  color: var(--color-text);
}

.technique-chip.is-selected {
  border-color: rgba(212, 218, 227, 0.65);
  background: linear-gradient(160deg, rgba(196, 204, 214, 0.14), rgba(30, 34, 40, 0.95));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(212, 218, 227, 0.2), 0 8px 24px rgba(0, 0, 0, 0.25);
}

.preview-status {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  border-radius: var(--radius);
}

.preview-status--info {
  background: rgba(196, 204, 214, 0.08);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.preview-status--error {
  background: rgba(180, 80, 80, 0.12);
  border: 1px solid rgba(180, 80, 80, 0.35);
  color: #e8b4b4;
}

.btn.is-loading {
  opacity: 0.75;
  cursor: wait;
}

/* Silver branded preview frame */
.preview-frame--silver {
  position: relative;
  max-width: 42rem;
  margin: 1.5rem auto 0;
  border-radius: 14px;
  border: 1px solid rgba(212, 218, 227, 0.45);
  background: linear-gradient(165deg, #4a5159 0%, #2a2f36 35%, #1a1d22 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.preview-frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 30%,
    rgba(255, 255, 255, 0.07) 48%,
    transparent 62%
  );
  pointer-events: none;
  z-index: 2;
}

.preview-frame--silver .preview-frame-brand--top {
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.preview-frame--silver .preview-frame-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0a0c0e;
}

.preview-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  background: #0a0c0e;
}

.preview-compare__divider {
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(212, 218, 227, 0.15),
    rgba(212, 218, 227, 0.55),
    rgba(212, 218, 227, 0.15)
  );
  z-index: 1;
}

.preview-compare__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.preview-compare__label {
  display: block;
  padding: 0.55rem 0.5rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-compare__panel--after .preview-compare__label {
  color: #e8edf2;
}

.preview-compare__photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0a0c0e;
  overflow: hidden;
}

.preview-compare__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.preview-frame.is-generating .preview-compare__panel--after .preview-compare__photo-wrap {
  opacity: 0.55;
}

.preview-frame.is-generating .preview-compare__panel--after .preview-compare__placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.preview-frame.is-generating .preview-compare__panel--after .preview-compare__placeholder::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0.75rem auto 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: preview-spin 0.8s linear infinite;
}

@keyframes preview-spin {
  to {
    transform: rotate(360deg);
  }
}

.preview-frame.has-after .preview-compare__placeholder {
  display: none;
}

@media (max-width: 540px) {
  .preview-compare {
    grid-template-columns: 1fr;
  }

  .preview-compare__divider {
    width: 100%;
    height: 2px;
  }
}

.preview-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.preview-frame--silver .preview-frame-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.preview-frame--silver .preview-frame-brand--bottom {
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent);
  text-align: center;
}

.preview-frame-brandline {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.preview-frame--silver .preview-frame-technique {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.preview-frame.is-generating .preview-frame-photo {
  opacity: 1;
  filter: none;
}

.preview-frame.is-generating::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(10, 12, 14, 0.35);
  pointer-events: none;
}

.photo-preview-title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.photo-preview-lead {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  max-width: 52ch;
}

.photo-upload-field input[type="file"] {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.photo-upload-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.preview-frame-logo {
  height: 2.1rem;
  width: auto;
  margin-inline: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.preview-frame-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.preview-disclaimer {
  margin: 1.25rem 0 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #8a939e;
  line-height: 1.5;
  border-left: 3px solid rgba(196, 204, 214, 0.35);
  background: rgba(196, 204, 214, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.contact-address,
.contact-hours {
  color: var(--color-text-muted);
  margin: 0.35rem 0;
}

/* Dedicated report page */
.report-page-main {
  padding-top: clamp(2rem, 6vw, 3.5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.report-page-container {
  max-width: 40rem;
}

.report-page-head {
  text-align: center;
  margin-bottom: 2rem;
}

.report-page-head .hero-eyebrow {
  margin-bottom: 0.65rem;
}

.report-page-head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4.5vw, 2.25rem);
  font-weight: 800;
}

#report-protocol-id {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.report-page-card {
  margin-bottom: 1.25rem;
  padding: 1.5rem 1.35rem;
}

.report-mail-notice {
  margin-bottom: 1.25rem;
  background: rgba(196, 204, 214, 0.08);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.report-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.report-page-actions .btn {
  min-width: min(100%, 16rem);
}

/* —— Landing pages (ads) —— */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.lang-switcher a.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.lang-switcher a.lang-btn.is-active {
  pointer-events: none;
}

.lp-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero-bg picture,
.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 16, 18, 0.92) 28%, rgba(14, 16, 18, 0.55) 70%, rgba(14, 16, 18, 0.75)),
    linear-gradient(180deg, rgba(14, 16, 18, 0.35), rgba(14, 16, 18, 0.85));
}

.lp-hero .container {
  position: relative;
  z-index: 1;
}

.lp-hero-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(1.85rem, 4.8vw, 3.1rem);
  line-height: 1.12;
  font-weight: 800;
}

.lp-hero-lead {
  margin: 0 0 1.5rem;
  max-width: 38rem;
  color: #d7dde7;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-trust {
  padding: 1.25rem 0;
  border-block: 1px solid var(--color-border);
  background: rgba(30, 34, 40, 0.55);
}

.lp-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.lp-trust-list li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.lp-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.lp-panel {
  background: rgba(30, 34, 40, 0.72);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem;
}

.lp-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.lp-panel p {
  margin: 0;
  color: #d9dfe7;
  font-size: 0.95rem;
}

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.lp-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.lp-steps li:last-child {
  border-bottom: 0;
}

.lp-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0e1012;
  background: var(--silver-gradient);
}

.lp-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.lp-steps p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.lp-checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: #d9dfe7;
}

.lp-checklist li {
  margin-bottom: 0.55rem;
}

.lp-faq details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(30, 34, 40, 0.55);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq details[open] summary {
  margin-bottom: 0.55rem;
  color: var(--color-primary);
}

.lp-faq details p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.landing-lead-form select,
.landing-lead-form textarea {
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  min-height: var(--touch);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  width: 100%;
}

.landing-lead-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.landing-lead-form .check-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.landing-lead-form .check-row input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.lp-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-areas li {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.88rem;
  color: #d9dfe7;
  background: rgba(30, 34, 40, 0.65);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 0.5rem;
  padding: 0.65rem var(--page-gutter);
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  background: rgba(14, 16, 18, 0.94);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.mobile-sticky-cta .btn {
  flex: 1;
  min-height: var(--touch);
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }

  body.has-sticky-cta .fab-whatsapp {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 769px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* —— Sprint additions —— */
.hero-cta-row,
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

a.service-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
a.service-card--link:hover {
  text-decoration: none;
  border-color: rgba(196, 204, 214, 0.45);
  transform: translateY(-2px);
}

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.field--check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.cookie-prefs-panel {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
}
.cookie-prefs-title {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  z-index: 140;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(14, 16, 18, 0.96);
  border-top: 1px solid var(--color-border);
}
.mobile-cta-bar__btn {
  flex: 1 1 0;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  min-height: var(--touch);
}
.mobile-cta-bar__btn--wa {
  background: #1f6b45;
  color: #fff;
}
.mobile-cta-bar__btn--analysis {
  background: var(--color-primary);
  color: #0e1012;
}
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
  }
  body {
    padding-bottom: 4.75rem;
  }
  .fab-whatsapp,
  .fab-social {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
  body.cookie-banner-visible .fab-whatsapp,
  body.cookie-banner-visible .fab-social,
  body.cookie-banner-visible .mobile-cta-bar {
    /* keep readable stacking */
  }
  body.cookie-banner-visible .mobile-cta-bar {
    bottom: auto;
  }
}

.preview-consent {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(30, 34, 40, 0.6);
}
.preview-result-ctas {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.preview-result-ctas[hidden] {
  display: none !important;
}

/* Landing pages */
.lp-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
  border-bottom: 1px solid var(--color-border);
  background:
    radial-gradient(circle at top, rgba(196, 204, 214, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(30, 34, 40, 0.92), rgba(14, 16, 18, 1));
}
.lp-hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(1.85rem, 4.5vw, 3.2rem);
  line-height: 1.1;
}
.lp-section {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.lp-section h2 {
  margin-top: 0;
}
.lp-card {
  background: rgba(30, 34, 40, 0.78);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
}
.lp-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.lp-steps {
  margin: 0;
  padding-left: 1.2rem;
}
.lp-steps li + li {
  margin-top: 0.5rem;
}
.lp-faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
}
.lp-faq summary {
  cursor: pointer;
  font-weight: 600;
}
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  z-index: 140;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(14, 16, 18, 0.96);
  border-top: 1px solid var(--color-border);
}
.mobile-sticky-cta .btn {
  flex: 1 1 0;
  text-align: center;
  min-height: var(--touch);
}
@media (max-width: 900px) {
  .mobile-sticky-cta {
    display: flex;
  }
}
