:root {
  --primary: #EF7F1A;
  --primary-dark: #d96b0f;
  --sage: #DDE6DB;
  --sage-light: #f4f7f3;
  --navy: #0F2B46;
  --navy-2: #153a5d;
  --text: #122033;
  --muted: #64748b;
  --line: #e4eaf0;
  --white: #ffffff;
  --surface: #f8fafc;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --shadow-sm: 0 10px 30px rgba(15, 43, 70, 0.08);
  --shadow-md: 0 20px 50px rgba(15, 43, 70, 0.12);
  --shadow-lg: 0 30px 80px rgba(15, 43, 70, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section-soft {
  background:
    radial-gradient(circle at 10% 20%, rgba(221,230,219,.75), transparent 32%),
    #f8fafc;
}

.section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-head h2,
.story-copy h2,
.b2b-grid h2,
.final-cta h2 {
  margin: .5rem 0 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-head p,
.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.section-kicker-light {
  color: rgba(255,255,255,.72);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(228,234,240,.85);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-weight: 850;
  color: var(--navy);
  letter-spacing: -.02em;
}

.brand-tagline {
  margin-top: .28rem;
  font-size: .67rem;
  color: var(--muted);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: #506176;
  font-size: .84rem;
  font-weight: 620;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.5rem;
  height: 2px;
  background: var(--primary);
  transition: right .22s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--navy);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .72rem 1.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #f39a45);
  box-shadow: 0 12px 24px rgba(239,127,26,.23);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(239,127,26,.30);
}

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

.btn-outline {
  color: var(--navy);
  border-color: #cad4df;
  background: rgba(255,255,255,.8);
}

.btn-outline:hover {
  background: white;
  box-shadow: var(--shadow-sm);
}

.btn-outline-light {
  color: white;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
}

.btn-large {
  padding: .9rem 1.4rem;
}

/* HERO */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(221,230,219,.88), rgba(255,255,255,.97) 52%, rgba(239,127,26,.05));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(15,43,70,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,43,70,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 78%);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .6;
}

.hero-orb-one {
  width: 420px;
  height: 420px;
  right: -130px;
  top: 100px;
  background: radial-gradient(circle, rgba(239,127,26,.22), rgba(239,127,26,0));
}

.hero-orb-two {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(15,43,70,.14), rgba(15,43,70,0));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .9fr);
  align-items: center;
  gap: 4rem;
  padding: 5rem 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: .42rem .78rem;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(239,127,26,.11);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .045em;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.15rem, 6vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.065em;
  color: var(--navy);
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-lead {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: #526477;
  font-size: clamp(1.04rem, 1.5vw, 1.23rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15,43,70,.12);
}

.hero-meta div {
  display: grid;
  gap: .08rem;
}

.hero-meta strong {
  color: var(--navy);
  font-size: .93rem;
}

.hero-meta span {
  color: var(--muted);
  font-size: .76rem;
}

.hero-visual {
  min-width: 0;
}

.portrait-frame {
  position: relative;
  width: min(100%, 470px);
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  border-radius: 34px;
}

.portrait-accent {
  position: absolute;
  inset: 34px -24px -24px 36px;
  z-index: -1;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(239,127,26,.92), rgba(15,43,70,.88));
  transform: rotate(4deg);
  box-shadow: var(--shadow-lg);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.portrait-badge {
  position: absolute;
  min-width: 155px;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.portrait-badge strong,
.portrait-badge span {
  display: block;
}

.badge-label {
  margin-bottom: .12rem;
  color: var(--primary);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.portrait-badge strong {
  color: var(--navy);
  font-size: .9rem;
}

.badge-top {
  top: 12%;
  left: -48px;
}

.badge-bottom {
  right: -42px;
  bottom: 12%;
}

/* TRUST */

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-grid {
  min-height: 88px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: center;
}

.trust-grid span {
  position: relative;
  padding: 0 1.4rem;
  text-align: center;
  color: #58697b;
  font-size: .84rem;
  font-weight: 720;
}

.trust-grid span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 24px;
  background: var(--line);
  transform: translateY(-50%);
}

/* FEATURES */

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height .3s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(239,127,26,.28);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-number {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  color: rgba(15,43,70,.065);
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -.07em;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--primary);
  background: rgba(239,127,26,.10);
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 2rem 0 .7rem;
  color: var(--navy);
  font-size: 1.22rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

/* COACHING */

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.4rem;
}

.coaching-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}

.coaching-card-featured {
  border-color: rgba(239,127,26,.45);
  box-shadow: 0 25px 55px rgba(239,127,26,.13);
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  right: 1.4rem;
  top: 1.2rem;
  padding: .38rem .65rem;
  border-radius: 999px;
  color: white;
  background: var(--primary);
  font-size: .66rem;
  font-weight: 800;
}

.coaching-label {
  color: var(--primary);
  font-size: .75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.coaching-card h3 {
  margin: .55rem 0 .3rem;
  color: var(--navy);
  font-size: 1.55rem;
}

.coaching-subtitle {
  margin: 0;
  color: var(--muted);
}

.coaching-card ul {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.coaching-card li {
  position: relative;
  padding: .48rem 0 .48rem 1.6rem;
  color: #425467;
  font-size: .92rem;
}

.coaching-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.text-link {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--primary);
}

.single-services {
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.single-services h3 {
  margin: .4rem 0 .3rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.single-services p {
  margin: 0;
  color: var(--muted);
}

/* STORY */

.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.story-image-wrap {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
}

.story-image-wrap::before {
  content: "";
  position: absolute;
  inset: 26px -22px -22px 28px;
  z-index: -1;
  border-radius: 30px;
  background: var(--sage);
}

.story-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.story-stat {
  margin: 1.8rem 0 2rem;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-stat strong {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
}

.story-stat span {
  max-width: 380px;
  color: #536577;
  font-size: .86rem;
}

/* PRINCIPLE */

.principle-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(239,127,26,.18), transparent 28%),
    linear-gradient(145deg, #0b2238, var(--navy));
}

.section-head.light h2,
.section-head.light p {
  color: white;
}

.section-head.light p {
  color: rgba(255,255,255,.72);
}

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

.principle-card {
  min-height: 240px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
}

.principle-card span {
  color: var(--primary);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.principle-card h3 {
  margin: 1.8rem 0 .65rem;
  color: white;
  font-size: 1.45rem;
}

.principle-card p {
  margin: 0;
  color: rgba(255,255,255,.66);
}
/* =========================================
   TRANSFORMATION GALERIE
   ========================================= */

.transformation-preview {
  display: block;

  width: 100%;

  padding: 0;

  border: none;

  background: transparent;

  cursor: pointer;
}

.transformation-preview .story-image-wrap {
  overflow: hidden;
}

.transformation-preview .story-image {
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.transformation-preview:hover .story-image {
  transform: scale(1.025);

  filter: brightness(0.96);
}


/* Overlay */

.transformation-overlay {
  position: absolute;

  left: 1rem;
  right: 1rem;
  bottom: 1rem;

  z-index: 4;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  padding: 0.75rem 0.95rem;

  border: 1px solid rgba(255,255,255,0.3);

  border-radius: 15px;

  color: #ffffff;

  background:
    rgba(15,43,70,0.82);

  backdrop-filter: blur(12px);

  font-size: 0.78rem;
  font-weight: 800;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.transformation-preview:hover
.transformation-overlay {
  background:
    rgba(15,43,70,0.93);

  transform:
    translateY(-2px);
}

.transformation-arrow {
  color: var(--primary);

  font-size: 1.15rem;
}


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

.transformation-lightbox {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 1.5rem;
}

.transformation-lightbox.active {
  display: flex;
}


/* Hintergrund */

.transformation-lightbox-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(4,12,20,0.92);

  backdrop-filter:
    blur(10px);
}


/* Dialog */

.transformation-lightbox-dialog {
  position: relative;

  z-index: 2;

  width:
    min(100%, 920px);

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 1rem;
}


/* Bildbereich */

.lightbox-image-area {
  width: min(100%, 760px);

  display: flex;

  flex-direction: column;

  align-items: center;
}

.lightbox-image {
  display: block;

  max-width: 100%;
  max-height: 78vh;

  object-fit: contain;

  border-radius: 18px;

  background: #111;

  box-shadow:
    0 30px 80px
    rgba(0,0,0,0.45);
}


/* Caption */

.lightbox-caption {
  width: 100%;

  margin-top: 0.9rem;

  display: flex;

  justify-content: space-between;

  gap: 1rem;

  color:
    rgba(255,255,255,0.7);

  font-size: 0.78rem;
}

#lightboxTitle {
  color: #ffffff;

  font-weight: 750;
}


/* Pfeile */

.lightbox-nav {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border: 1px solid
    rgba(255,255,255,0.15);

  border-radius: 50%;

  color: #ffffff;

  background:
    rgba(255,255,255,0.08);

  font-size: 2rem;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.lightbox-nav:hover {
  background:
    rgba(255,255,255,0.16);

  transform:
    scale(1.06);
}


/* Schließen */

.lightbox-close {
  position: absolute;

  top: -52px;
  right: 0;

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border: 1px solid
    rgba(255,255,255,0.18);

  border-radius: 50%;

  color: #ffffff;

  background:
    rgba(255,255,255,0.08);

  font-size: 1.7rem;

  line-height: 1;

  cursor: pointer;
}


/* MOBILE */

@media (max-width: 700px) {

  .transformation-lightbox {
    padding:
      1rem 0.75rem;
  }

  .transformation-lightbox-dialog {
    width: 100%;

    gap: 0.4rem;
  }

  .lightbox-nav {
    position: absolute;

    z-index: 4;

    width: 42px;
    height: 42px;

    background:
      rgba(15,43,70,0.82);
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-image {
    max-height: 75vh;

    border-radius: 14px;
  }

  .lightbox-close {
    top: -50px;
    right: 0.25rem;
  }

}
	  /* =========================================
   KUNDENERGEBNISSE / CASE STUDIES
   ========================================= */

.results-section {
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(239, 127, 26, 0.06),
      transparent 28%
    ),
    #ffffff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}


/* CARD */

.result-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: var(--radius-md);

  background: #ffffff;

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.result-card:hover {
  transform: translateY(-7px);
  border-color: rgba(239, 127, 26, 0.28);
  box-shadow: var(--shadow-md);
}


/* BILDER */

.result-image-wrap {
  position: relative;

  height: 260px;

  overflow: hidden;

  background: var(--sage-light);
}

.result-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.result-image-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;

  padding: 0.4rem 0.7rem;

  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;

  color: #ffffff;

  background: rgba(15,43,70,0.82);

  backdrop-filter: blur(8px);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* DAVID DIAGRAMM */

.result-chart-wrap {
  padding: 1rem;

  background:
    linear-gradient(
      145deg,
      rgba(221,230,219,0.5),
      rgba(248,250,252,1)
    );
}

.result-chart {
  object-fit: contain;

  border-radius: 14px;

  background: #ffffff;
}


/* CONTENT */

.result-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 1.7rem;
}

.result-category {
  color: var(--primary);

  font-size: 0.7rem;
  font-weight: 850;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-content h3 {
  margin: 0.35rem 0 1rem;

  color: var(--navy);

  font-size: 1.55rem;
}


/* JÜRGEN */

.result-highlight {
  margin-bottom: 1rem;

  color: var(--navy);

  font-size: 1.2rem;
  font-weight: 800;
}

.result-content > p {
  margin: 0 0 1.2rem;

  color: var(--muted);

  font-size: 0.92rem;
}


/* DAVID ZAHL */

.result-number {
  margin-top: -0.2rem;

  color: var(--primary);

  font-size: 3.5rem;
  font-weight: 900;

  line-height: 1;

  letter-spacing: -0.06em;
}

.result-number span {
  font-size: 2rem;
}

.result-number-caption {
  margin: 0.35rem 0 1.2rem;

  color: var(--navy);

  font-size: 0.88rem;
  font-weight: 750;
}

.result-period {
  margin-top: auto;
  padding-top: 1rem;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 0.78rem;
  font-weight: 650;
}


/* ZITATE */

.result-content blockquote {
  margin: auto 0 0;
  padding: 1rem 0 0;

  border-top: 1px solid var(--line);

  color: #334155;

  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
}

.result-source {
  display: block;

  margin-top: 0.7rem;

  color: #94a3b8;

  font-size: 0.7rem;
  font-weight: 650;
}


/* SABINE */

.result-card-testimonial {
  position: relative;

  background:
    linear-gradient(
      145deg,
      rgba(221,230,219,0.52),
      #ffffff 65%
    );
}

.testimonial-mark {
  position: absolute;

  top: -1.5rem;
  right: 1.2rem;

  color: rgba(239,127,26,0.12);

  font-family: Georgia, serif;

  font-size: 9rem;
  line-height: 1;
}

.result-card-testimonial .result-content {
  padding-top: 2rem;
}

.result-person-meta {
  margin-top: -0.65rem;
  margin-bottom: 1.6rem;

  color: var(--muted);

  font-size: 0.82rem;
}

.result-content .testimonial-large {
  margin: 0;

  padding: 0;

  border: none;

  color: var(--navy);

  font-size: 1.08rem;
  font-weight: 600;
  font-style: normal;

  line-height: 1.65;
}

.testimonial-outcome {
  margin-top: auto;
  padding-top: 1.5rem;

  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-check {
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;
  background: var(--primary);

  font-weight: 900;
}

.testimonial-outcome span:last-child {
  color: var(--navy);

  font-size: 0.82rem;
  font-weight: 750;
}


/* DISCLAIMER */

.results-note {
  max-width: 780px;

  margin-top: 1.5rem;

  display: flex;
  align-items: flex-start;
  gap: 0.55rem;

  color: #94a3b8;

  font-size: 0.72rem;
}

.results-note p {
  margin: 0;
}

.results-note > span {
  color: var(--primary);

  font-weight: 900;
}


/* TABLET */

@media (max-width: 960px) {

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

  .result-card-testimonial {
    grid-column: 1 / -1;
  }

}


/* MOBILE */

@media (max-width: 640px) {

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

  .result-card-testimonial {
    grid-column: auto;
  }

  .result-image-wrap {
    height: 240px;
  }

  .result-number {
    font-size: 3rem;
  }

}
/* PROCESS */

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 28px;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,127,26,.5), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  padding-top: .2rem;
}

.process-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  box-shadow: 0 0 0 10px white;
  font-size: .78rem;
  font-weight: 850;
}

.process-step h3 {
  margin: 1.4rem 0 .5rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

/* B2B */

.b2b-section {
  background: var(--navy);
  color: white;
}

.b2b-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.b2b-grid h2 {
  color: white;
}

.b2b-links {
  display: grid;
  gap: 1rem;
}

.b2b-links a {
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255,255,255,.055);
  transition: transform .2s ease, background .2s ease;
}

.b2b-links a:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,.085);
}

.b2b-links strong,
.b2b-links small {
  display: block;
}

.b2b-links small {
  margin-top: .2rem;
  color: rgba(255,255,255,.62);
}

.b2b-links b {
  color: var(--primary);
  font-size: 1.3rem;
}

/* CTA */

.final-cta-section {
  padding: 4rem 0 6rem;
  background: #f5f7f8;
}

.final-cta {
  position: relative;
  overflow: hidden;
  max-width: 1050px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4.4rem);
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239,127,26,.28), transparent 30%),
    linear-gradient(145deg, #102e4a, #081a2b);
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  max-width: 760px;
  color: white;
}

.final-cta p {
  max-width: 680px;
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
}

.final-meta {
  margin-top: 1.3rem;
  color: rgba(255,255,255,.48);
  font-size: .82rem;
}

/* FOOTER */

.site-footer {
  padding: 4rem 0 1.8rem;
  background: #071523;
  color: rgba(255,255,255,.62);
}

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

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: .5rem;
}

.footer-grid strong,
.footer-brand {
  color: white;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 850;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  text-decoration: none;
  font-size: .86rem;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .76rem;
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .main-nav {
    gap: .8rem;
  }

  .main-nav a {
    font-size: .78rem;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    gap: 2.4rem;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 4.5rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-md);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: .7rem .75rem;
    font-size: .9rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4rem 0 5rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-top: 1rem;
  }

  .portrait-frame {
    width: min(86%, 420px);
  }

  .badge-top {
    left: -24px;
  }

  .badge-bottom {
    right: -24px;
  }

  .trust-grid,
  .feature-grid,
  .coaching-grid,
  .principle-grid,
  .process-grid,
  .story-grid,
  .b2b-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    padding: .7rem 0;
  }

  .trust-grid span {
    padding: .5rem 0;
  }

  .trust-grid span::after {
    display: none;
  }

  .coaching-card-featured {
    transform: none;
  }

  .story-grid,
  .b2b-grid {
    gap: 3rem;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 1rem;
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .process-step h3 {
    margin-top: .25rem;
  }

  .single-services {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-tagline {
    display: none;
  }

  .hero-inner {
    padding-top: 3.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 1rem;
  }

  .hero-meta div {
    width: calc(50% - .5rem);
  }

  .portrait-badge {
    min-width: 132px;
    padding: .7rem .8rem;
  }

  .badge-top {
    left: -10px;
  }

  .badge-bottom {
    right: -10px;
  }

  .feature-card,
  .coaching-card {
    padding: 1.5rem;
  }

  .story-stat {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    border-radius: 26px;
  }
}
```css
/* =========================================
   SVS Gesundheitspartner
   ========================================= */

.trust-area {
  padding: 1.15rem 0 2.2rem;
}

.svs-partner-card {
  margin-top: 1.25rem;
  padding: 1.2rem 1.35rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;

  border: 1px solid var(--line);
  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(221, 230, 219, 0.55),
      rgba(255, 255, 255, 0.96)
    );

  box-shadow: var(--shadow-sm);
}

.svs-logo-wrap {
  width: 96px;
  height: 96px;
  padding: 0.55rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 43, 70, 0.08);
}

.svs-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svs-partner-copy {
  min-width: 0;
}

.svs-kicker {
  display: inline-block;
  margin-bottom: 0.25rem;

  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.svs-partner-copy h2 {
  margin: 0 0 0.3rem;

  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}

.svs-partner-copy p {
  margin: 0;
  max-width: 680px;

  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.svs-btn {
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 860px) {
  .svs-partner-card {
    grid-template-columns: auto 1fr;
  }

  .svs-btn {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .svs-partner-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.35rem 1.1rem;
  }

  .svs-logo-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto;
  }

  .svs-partner-copy p {
    margin-inline: auto;
  }

  .svs-btn {
    width: 100%;
  }
}
```
	  /* =========================================
   MUSKEL.RAUM IMPULSE
   ========================================= */

.impulse-section {
  background:
    linear-gradient(
      180deg,
      #f5f7f8,
      #ffffff
    );
}


/* GESAMT-CARD */

.impulse-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 5vw, 5rem);

  align-items: center;

  padding: clamp(2rem, 5vw, 4.5rem);

  border: 1px solid var(--line);
  border-radius: 34px;

  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(221,230,219,0.8),
      transparent 34%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(239,127,26,0.08),
      transparent 28%
    ),
    #ffffff;

  box-shadow: var(--shadow-md);
}


/* HINTERGRUND-TYPO */

.impulse-card::after {
  content: "IMPULSE";

  position: absolute;

  right: -1rem;
  bottom: -4rem;

  z-index: 0;

  color: rgba(15,43,70,0.026);

  font-size: clamp(6rem, 13vw, 11rem);
  font-weight: 900;

  line-height: 1;

  letter-spacing: -0.07em;

  pointer-events: none;
}


/* COVER */

.impulse-visual {
  position: relative;
  z-index: 2;
}

.impulse-cover-wrap {
  position: relative;

  width: min(100%, 390px);

  margin-inline: auto;
}

.impulse-cover-wrap::before {
  content: "";

  position: absolute;

  inset: 24px -20px -22px 28px;

  z-index: -1;

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      var(--primary),
      var(--navy)
    );

  transform: rotate(4deg);

  opacity: 0.9;
}

.impulse-cover {
  position: relative;

  z-index: 2;

  display: block;

  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  border-radius: 26px;

  box-shadow:
    0 30px 70px rgba(15,43,70,0.22);
}

.impulse-cover-glow {
  position: absolute;

  left: 10%;
  right: 10%;
  bottom: -30px;

  z-index: -2;

  height: 80px;

  border-radius: 50%;

  background: rgba(239,127,26,0.22);

  filter: blur(30px);
}


/* TEXT */

.impulse-content {
  position: relative;
  z-index: 2;
}

.impulse-kicker {
  display: inline-flex;

  align-items: center;

  gap: 0.55rem;

  margin-bottom: 0.8rem;

  color: var(--primary);

  font-size: 0.74rem;
  font-weight: 850;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.impulse-kicker::before {
  content: "";

  width: 28px;
  height: 2px;

  border-radius: 999px;

  background: currentColor;
}

.impulse-content h2 {
  max-width: 650px;

  margin: 0 0 1rem;

  color: var(--navy);

  font-size: clamp(2.1rem, 4vw, 3.4rem);

  line-height: 1.06;

  letter-spacing: -0.045em;
}

.impulse-intro {
  max-width: 620px;

  margin: 0 0 2rem;

  color: var(--muted);

  font-size: 1.02rem;
  line-height: 1.65;
}


/* LINKS */

.impulse-actions {
  display: grid;

  gap: 0.8rem;
}

.impulse-link {
  display: grid;

  grid-template-columns: 46px 1fr auto;

  align-items: center;

  gap: 1rem;

  padding: 0.95rem 1.05rem;

  border: 1px solid var(--line);
  border-radius: 18px;

  color: var(--navy);

  background:
    rgba(255,255,255,0.88);

  text-decoration: none;

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.impulse-link:hover {
  transform: translateX(6px);

  border-color:
    rgba(239,127,26,0.35);

  box-shadow:
    var(--shadow-sm);

  background: #ffffff;
}


/* NEWSLETTER HERVORHEBUNG */

.impulse-link-main {
  color: #ffffff;

  border-color: transparent;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      var(--navy-2)
    );

  box-shadow:
    0 12px 28px rgba(15,43,70,0.14);
}

.impulse-link-main:hover {
  border-color: transparent;

  background:
    linear-gradient(
      135deg,
      #123553,
      var(--navy-2)
    );
}


/* ICON BOX */

.impulse-icon {
  width: 46px;
  height: 46px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border-radius: 14px;

  background:
    rgba(15,43,70,0.065);

  color: var(--navy);
}

.impulse-icon svg {
  width: 24px;
  height: 24px;
}

.impulse-link-main .impulse-icon {
  background:
    rgba(255,255,255,0.12);

  color: #ffffff;
}


/* SPOTIFY */

.impulse-icon-spotify {
  color: #1ed760;

  background:
    rgba(30,215,96,0.10);
}


/* APPLE */

.impulse-icon-apple {
  color: #8a5cf6;

  background:
    rgba(138,92,246,0.10);
}


/* LINK TEXT */

.impulse-link-copy {
  min-width: 0;

  display: grid;

  gap: 0.08rem;
}

.impulse-platform {
  color: var(--primary);

  font-size: 0.65rem;
  font-weight: 850;

  text-transform: uppercase;
  letter-spacing: 0.085em;
}

.impulse-link-main .impulse-platform {
  color:
    rgba(255,255,255,0.64);
}

.impulse-link-copy strong {
  font-size: 0.92rem;
  line-height: 1.3;
}

.impulse-link-copy small {
  color: var(--muted);

  font-size: 0.72rem;
}

.impulse-link-main .impulse-link-copy small {
  color:
    rgba(255,255,255,0.55);
}


/* PFEIL */

.impulse-arrow {
  color: var(--primary);

  font-size: 1.3rem;
  font-weight: 800;

  transition:
    transform 0.22s ease;
}

.impulse-link-main .impulse-arrow {
  color: #ffffff;
}

.impulse-link:hover .impulse-arrow {
  transform: translateX(4px);
}


/* TABLET */

@media (max-width: 900px) {

  .impulse-card {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .impulse-cover-wrap {
    width: min(80%, 380px);
  }

}


/* MOBILE */

@media (max-width: 560px) {

  .impulse-card {
    padding:
      1.6rem 1.15rem 1.8rem;

    border-radius: 26px;
  }

  .impulse-cover-wrap {
    width: min(92%, 340px);
  }

  .impulse-cover-wrap::before {
    inset:
      16px -11px -13px 18px;
  }

  .impulse-content h2 {
    font-size:
      clamp(2rem, 10vw, 2.7rem);
  }

  .impulse-link {
    grid-template-columns:
      42px 1fr auto;

    gap: 0.8rem;

    padding:
      0.85rem 0.9rem;
  }

  .impulse-icon {
    width: 42px;
    height: 42px;
  }

  .impulse-link-copy small {
    display: none;
  }

}
/* =========================================
   KUNDENERGEBNISSE – BILD VERGRÖSSERN
   ========================================= */

.result-image-button {
  position: relative;

  width: 100%;
  height: 100%;

  display: block;

  padding: 0;
  border: 0;

  background: transparent;

  cursor: zoom-in;

  overflow: hidden;
}

.result-image-button .result-image {
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.result-image-button:hover .result-image {
  transform: scale(1.025);
  filter: brightness(0.92);
}


/* kleiner Hinweis */

.result-zoom-hint {
  position: absolute;

  right: 0.8rem;
  bottom: 0.8rem;

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 0.45rem;

  padding: 0.45rem 0.7rem;

  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;

  color: #ffffff;

  background: rgba(15,43,70,0.85);

  backdrop-filter: blur(8px);

  font-size: 0.68rem;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.result-image-button:hover .result-zoom-hint {
  transform: translateY(-2px);

  background: rgba(15,43,70,0.96);
}


/* LIGHTBOX */

.result-lightbox {
  position: fixed;

  inset: 0;

  z-index: 6000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 2rem;
}

.result-lightbox.active {
  display: flex;
}

.result-lightbox-backdrop {
  position: absolute;

  inset: 0;

  background: rgba(4,12,20,0.93);

  backdrop-filter: blur(10px);
}

.result-lightbox-dialog {
  position: relative;

  z-index: 2;

  width: min(100%, 1000px);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-lightbox-image {
  display: block;

  max-width: 100%;
  max-height: 82vh;

  object-fit: contain;

  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.5);
}

.result-lightbox-title {
  margin-top: 0.8rem;

  color: rgba(255,255,255,0.8);

  font-size: 0.8rem;
  font-weight: 700;
}


/* X */

.result-lightbox-close {
  position: absolute;

  top: -52px;
  right: 0;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;

  color: #ffffff;

  background: rgba(255,255,255,0.08);

  font-size: 1.7rem;
  line-height: 1;

  cursor: pointer;
}

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


/* MOBILE */

@media (max-width: 700px) {

  .result-lightbox {
    padding: 1rem;
  }

  .result-lightbox-image {
    max-height: 78vh;

    border-radius: 14px;
  }

  .result-zoom-hint span:first-child {
    display: none;
  }

}
	  .result-review-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.result-stars {
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.result-source {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}
	  /* =========================================
   MUSKEL.RAUM SYSTEM
   ========================================= */

.system-offer {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, .5fr);

  gap: clamp(2rem, 5vw, 4rem);

  align-items: center;

  margin-top: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);

  overflow: hidden;

  border: 1px solid rgba(15,43,70,.10);
  border-radius: 28px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(239,127,26,.13),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #ffffff,
      #f5f8f6
    );

  box-shadow: var(--shadow-md);
}


/* dezentes Branding im Hintergrund */

.system-offer::after {
  content: "SYSTEM";

  position: absolute;

  right: -0.5rem;
  bottom: -2.8rem;

  z-index: 0;

  color: rgba(15,43,70,.035);

  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;

  line-height: 1;

  letter-spacing: -.07em;

  pointer-events: none;
}


.system-offer-content,
.system-offer-action {
  position: relative;
  z-index: 2;
}


.system-kicker {
  display: inline-flex;

  margin-bottom: .7rem;

  color: var(--primary);

  font-size: .72rem;
  font-weight: 850;

  letter-spacing: .1em;
  text-transform: uppercase;
}


.system-offer h3 {
  margin: 0 0 .55rem;

  color: var(--navy);

  font-size: clamp(2rem, 3.5vw, 3rem);

  line-height: 1.05;
  letter-spacing: -.04em;
}


.system-lead {
  margin: 0 0 1rem;

  color: var(--navy);

  font-size: 1.08rem;
  font-weight: 750;
}


.system-text {
  max-width: 650px;

  margin: 0 0 1.5rem;

  color: var(--muted);

  line-height: 1.65;
}


.system-features {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: .7rem 1.4rem;

  color: var(--navy);

  font-size: .86rem;
  font-weight: 650;
}


.system-features span::first-letter {
  color: var(--primary);
}


/* rechte Preisbox */

.system-offer-action {
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 1.7rem;

  border: 1px solid rgba(15,43,70,.09);
  border-radius: 22px;

  text-align: center;

  background: rgba(255,255,255,.88);

  box-shadow: var(--shadow-sm);
}


.system-price-label {
  color: var(--muted);

  font-size: .7rem;
  font-weight: 750;

  text-transform: uppercase;
  letter-spacing: .08em;
}


.system-price {
  margin: .15rem 0;

  color: var(--navy);

  font-size: clamp(2.6rem, 5vw, 4rem);

  font-weight: 900;

  line-height: 1;
  letter-spacing: -.06em;
}


.system-noabo {
  margin-bottom: 1.2rem;

  color: var(--muted);

  font-size: .76rem;
}


.system-btn {
  width: 100%;
}


.system-note {
  margin-top: .75rem;

  color: var(--muted);

  font-size: .68rem;

  line-height: 1.4;
}


/* MOBILE */

@media (max-width: 820px) {

  .system-offer {
    grid-template-columns: 1fr;
  }

  .system-features {
    grid-template-columns: 1fr;
  }

  .system-offer-action {
    align-items: flex-start;

    text-align: left;
  }

  .system-btn {
    width: auto;
  }

}
	 /* =========================================
   LANDINGPAGE – INDIVIDUELLER TRAININGSPLAN
   Ergänzung zu style-neu.css
   ========================================= */

.landing-header .header-inner {
  min-height: 76px;
}

.landing-header-cta {
  margin-left: auto;
}

.plan-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 85% 10%, rgba(239,127,26,.12), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(221,230,219,.9), transparent 30%),
    #f7f9f8;
}

.plan-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.plan-orb-one {
  width: 320px;
  height: 320px;
  right: -150px;
  top: 40px;
  background: rgba(239,127,26,.09);
}

.plan-orb-two {
  width: 260px;
  height: 260px;
  left: -130px;
  bottom: -80px;
  background: rgba(15,43,70,.06);
}

.plan-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.plan-hero-copy h1 {
  max-width: 800px;
  margin: .9rem 0 1.2rem;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.plan-hero-copy h1 span {
  display: block;
  color: var(--primary);
}

.plan-hero-lead {
  max-width: 720px;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.plan-hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .7rem 1rem;
  max-width: 720px;
  margin-bottom: 2rem;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
}

.plan-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
}

.plan-payment-note {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.plan-summary-card {
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
}

.plan-summary-kicker {
  color: var(--primary);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-top: .55rem;
}

.plan-price strong {
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.plan-price span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

.plan-summary-divider {
  height: 1px;
  margin: 1.35rem 0;
  background: var(--line);
}

.plan-summary-card ul {
  display: grid;
  gap: .9rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.plan-summary-card li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--navy);
  font-size: .88rem;
  line-height: 1.5;
}

.plan-summary-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.plan-summary-btn {
  width: 100%;
}

.plan-trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.plan-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  color: var(--navy);
  font-size: .74rem;
  font-weight: 800;
  text-align: center;
}

.plan-intro-grid,
.plan-audience-grid,
.plan-choice-grid {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.plan-section-head {
  margin: 0;
}

.plan-intro-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.plan-intro-copy p {
  margin: 0 0 1rem;
}

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

.plan-feature-card {
  position: relative;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.plan-feature-card h3 {
  margin: 1rem 0 .6rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.plan-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.6;
}

.plan-audience-lead {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.7;
}

.plan-audience-list {
  display: grid;
  gap: .75rem;
}

.plan-audience-list > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .65rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.plan-audience-list span {
  color: var(--primary);
  font-weight: 900;
}

.plan-audience-list p {
  margin: 0;
  color: var(--navy);
  font-size: .9rem;
  line-height: 1.5;
}

.plan-testimonial {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239,127,26,.1), transparent 30%),
    #fff;
  box-shadow: var(--shadow-md);
}

.plan-testimonial-stars {
  margin-bottom: 1rem;
  color: var(--primary);
  letter-spacing: .08em;
  font-size: 1rem;
}

.plan-testimonial blockquote {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.55;
}

.plan-testimonial-person {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-top: 1.5rem;
}

.plan-testimonial-person strong {
  color: var(--navy);
}

.plan-testimonial-person span {
  color: var(--muted);
  font-size: .76rem;
}

.plan-choice-card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.plan-choice-card strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.plan-choice-card p {
  color: var(--muted);
  line-height: 1.65;
}

.plan-faq-wrap {
  max-width: 900px;
}

.plan-faq {
  display: grid;
  gap: .8rem;
}

.plan-faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.plan-faq summary {
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

.plan-faq summary::-webkit-details-marker {
  display: none;
}

.plan-faq summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 1.3rem;
}

.plan-faq details[open] summary::after {
  content: "–";
}

.plan-faq details p {
  margin: 0;
  padding: 0 1.3rem 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.plan-final-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .7rem;
  margin: 1.4rem 0;
}

.plan-final-price strong {
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: -.05em;
}

.plan-final-price span {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
}

.plan-final-actions {
  justify-content: center;
}

@media (max-width: 960px) {
  .plan-hero-grid {
    grid-template-columns: 1fr;
  }

  .plan-summary-card {
    max-width: 620px;
  }

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

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

@media (max-width: 760px) {
  .landing-header-cta {
    display: inline-flex;
  }

  .plan-hero {
    padding-top: 3.5rem;
  }

  .plan-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .plan-hero-checks,
  .plan-feature-grid,
  .plan-intro-grid,
  .plan-audience-grid,
  .plan-choice-grid {
    grid-template-columns: 1fr;
  }

  .plan-trust-grid {
    grid-template-columns: 1fr 1fr;
    font-size: .68rem;
  }

  .plan-final-actions {
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .landing-header-cta {
    font-size: .72rem;
    padding: .7rem .85rem;
  }

  .plan-trust-grid {
    grid-template-columns: 1fr;
  }

  .plan-summary-card,
  .plan-testimonial {
    border-radius: 22px;
  }
}


/* KOMPAKTER COOKIE-BANNER */

.cookie-consent {
  padding: .75rem;
}

.cookie-consent-card {
  width: min(820px, 100%);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
}

.cookie-consent-copy h2 {
  margin: .2rem 0 .4rem;
  font-size: 1.25rem;
}

.cookie-consent-copy p {
  font-size: .78rem;
  line-height: 1.5;
}

.cookie-link {
  margin-top: .45rem;
  font-size: .7rem;
}

.cookie-consent-actions {
  min-width: 190px;
  gap: .35rem;
}

/* Hauptentscheidung */
.cookie-accept {
  width: 100%;
}

/* Ablehnen bewusst als dezente Sekundäraktion */
.cookie-essential {
  width: auto !important;
  padding: .35rem .5rem !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--muted) !important;
  font-size: .7rem !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings-toggle {
  padding: .25rem;
  font-size: .68rem;
}


/* MOBILE */
@media (max-width: 760px) {

  .cookie-consent {
    padding: .6rem;
  }

  .cookie-consent-card {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: 1rem;
    border-radius: 16px;
  }

  .cookie-consent-copy h2 {
    font-size: 1.15rem;
  }

  .cookie-consent-copy p {
    font-size: .75rem;
  }

  .cookie-consent-actions {
    min-width: 0;
    gap: .3rem;
  }

  .cookie-accept {
    padding: .8rem 1rem;
  }

}
/* =========================================
   HERO BADGES – MOBILE
   Gesicht freihalten
   ========================================= */

@media (max-width: 768px) {

  .badge-top {
    left: auto;
    right: 0.25rem;
  }

  .badge-bottom {
    right: auto;
    left: 0.25rem;
  }

}
	  /* =========================================
   KUNDENERGEBNISSE – EINHEITLICHE BILDER
   ========================================= */

.results-grid {
  align-items: stretch;
}

.result-card {
  overflow: hidden;
}

.result-card-visual {
  display: flex;
  flex-direction: column;
}

.result-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f4f5f3;
}

.result-image-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* gleiche visuelle Höhe für alle drei Karten */
.result-image-wrap {
  height: 250px;
}

.result-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* DAVID – Diagramm nicht beschneiden */
.result-chart-wrap .result-image-button {
  background: #ffffff;
}

.result-chart {
  object-fit: contain;
  padding: 14px;
}


/* SABINE – echtes Trainingsfoto */
.result-photo-wrap {
  background: #e9ece8;
}

.result-client-photo {
  object-fit: cover;
  object-position: center 10%;

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.result-card-sabine:hover .result-client-photo {
  transform: scale(1.025);
}


/* Bildbeschriftung */
.result-image-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;

  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  border-radius: 999px;

  background: rgba(15, 43, 70, 0.90);
  color: #ffffff;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;

  backdrop-filter: blur(8px);
}


/* Zoomhinweis */
.result-zoom-hint {
  position: absolute;
  right: 14px;
  top: 14px;

  display: flex;
  align-items: center;
  gap: 6px;

  padding: 7px 10px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.92);
  color: var(--navy, #0F2B46);

  font-size: 0.7rem;
  font-weight: 700;

  opacity: 0;
  transform: translateY(-4px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;

  z-index: 4;
}

.result-image-button:hover .result-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}


/* Sabines Bewertung */
.result-card-sabine .result-review-meta {
  margin-top: 24px;
}


/* Handy */
@media (max-width: 768px) {

  .result-image-wrap {
    height: 230px;
  }

  .result-zoom-hint {
    opacity: 1;
    transform: none;
  }

}


/* sehr kleine Smartphones */
@media (max-width: 480px) {

  .result-image-wrap {
    height: 215px;
  }

  .result-zoom-hint span:first-child {
    display: none;
  }

}
	  .certificate-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;

  color: var(--primary, #EF7F1A);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;

  transition: gap .2s ease, opacity .2s ease;
}

.certificate-link:hover {
  gap: 9px;
  opacity: .8;
}
	  .impulse-player {
  margin: 28px 0 24px;
}

.impulse-player-label {
  display: block;
  margin-bottom: 10px;

  color: var(--primary, #EF7F1A);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impulse-player iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 18px;
}
	  /* =========================================
   IMPULSE – NEUES 2-SPALTEN LAYOUT
   ========================================= */

.impulse-card-new {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.impulse-player-column {
  min-width: 0;
}

.impulse-player-column h2 {
  margin: 14px 0 24px;
  color: var(--navy, #0F2B46);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.impulse-player-compact {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15,43,70,.10);
}

.impulse-player-compact iframe {
  display: block;
  width: 100%;
  border: 0;
}

.impulse-content-new h2 {
  margin: 10px 0 14px;
  color: var(--navy, #0F2B46);
}

.impulse-content-new .impulse-intro {
  margin-bottom: 26px;
}

@media (max-width: 860px) {
  .impulse-card-new {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .impulse-player-column h2 {
    font-size: 1.8rem;
  }

  .impulse-player-compact iframe {
    height: 232px;
  }
}
	  /* =========================================
   PERSÖNLICHE GESCHICHTE
   ========================================= */

.personal-story-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #f8faf9 0%,
      #ffffff 58%,
      #fffaf5 100%
    );
}

.personal-story-grid {
  display: grid;
  grid-template-columns: minmax(320px,.9fr) minmax(0,1.25fr);
  align-items: center;
  gap: clamp(55px,7vw,105px);
}


/* =========================================
   BILDSEITE
   ========================================= */

.personal-story-visual {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* großes unscharfes Hintergrundbild */

.story-photo-background {
  position: absolute;

  width: 85%;
  height: 88%;

  left: -14%;
  top: 3%;

  overflow: hidden;

  border-radius: 42px;

  opacity: .16;

  filter:
    grayscale(1)
    blur(3px);

  transform:
    rotate(-4deg)
    scale(1.02);
}

.story-photo-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: grayscale(1);
}


/* dekorative Formen */

.story-shape {
  position: absolute;

  border-radius: 30px;

  pointer-events: none;
}

.story-shape-orange {
  width: 175px;
  height: 330px;

  right: 1%;
  top: 17%;

  background:
    linear-gradient(
      145deg,
      rgba(239,127,26,.68),
      rgba(239,127,26,.24)
    );

  transform: rotate(5deg);
}

.story-shape-sage {
  width: 230px;
  height: 190px;

  left: 5%;
  bottom: 3%;

  background: var(--sage,#DDE6DB);

  opacity: .75;

  transform: rotate(-4deg);
}


/* Hauptfoto */

.story-photo-card {
  position: relative;
  z-index: 2;

  width: min(100%,470px);
  height: 590px;

  overflow: hidden;

  border-radius: 30px;

  background: #e9ecec;

  border:
    1px solid rgba(15,43,70,.09);

  box-shadow:
    0 24px 60px rgba(15,43,70,.14);
}

.story-photo-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center center;
}


/* Caption-Karte */

.story-photo-caption {
  position: absolute;

  z-index: 4;

  left: -2%;
  bottom: 1%;

  width: min(355px,78%);

  padding: 25px 28px 26px;

  border-radius: 25px;

  background:
    rgba(255,255,255,.96);

  border:
    1px solid rgba(15,43,70,.07);

  box-shadow:
    0 18px 45px rgba(15,43,70,.13);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.story-year {
  display: inline-flex;

  margin-bottom: 13px;

  padding: 6px 11px;

  border-radius: 10px;

  background: var(--sage,#DDE6DB);

  color: var(--navy,#0F2B46);

  font-size: .9rem;
  font-weight: 900;
}

.story-photo-caption strong {
  display: block;

  margin-bottom: 7px;

  color: var(--navy,#0F2B46);

  font-size: 1.08rem;
  line-height: 1.3;
}

.story-photo-caption p {
  margin: 0;

  color: var(--muted,#667788);

  font-size: .9rem;
  line-height: 1.55;
}


/* =========================================
   TEXTSEITE
   ========================================= */

.personal-story-content {
  position: relative;
  z-index: 2;
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.story-kicker::before {
  content: "";

  width: 32px;
  height: 2px;

  background: var(--primary,#EF7F1A);
}

.personal-story-content h2 {
  max-width: 720px;

  margin: 15px 0 28px;

  color: var(--navy,#0F2B46);

  font-size:
    clamp(2.15rem,4.3vw,4rem);

  line-height: 1.04;

  letter-spacing: -.035em;
}

.story-text {
  max-width: 760px;
}

.story-text p {
  margin: 0 0 19px;

  color: var(--muted,#667788);

  font-size: 1.02rem;

  line-height: 1.72;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text strong {
  color: var(--navy,#0F2B46);
  font-weight: 900;
}


/* Statement unten */

.story-principle {
  position: relative;

  margin-top: 34px;

  padding: 24px 28px 25px 34px;

  overflow: hidden;

  border-radius: 20px;

  background:
    linear-gradient(
      100deg,
      rgba(255,247,239,.95),
      rgba(255,255,255,.95)
    );

  border:
    1px solid rgba(239,127,26,.10);
}

.story-principle::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 5px;

  background: var(--primary,#EF7F1A);
}

.story-principle span {
  display: block;

  margin-bottom: 5px;

  color: var(--muted,#667788);

  font-size: .94rem;
}

.story-principle strong {
  display: block;

  max-width: 680px;

  color: var(--navy,#0F2B46);

  font-size: 1.08rem;

  line-height: 1.45;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width:960px) {

  .personal-story-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .personal-story-visual {
    width: min(100%,600px);

    min-height: 640px;

    margin-inline: auto;
  }

  .personal-story-content {
    max-width: 760px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width:620px) {

  .personal-story-grid {
    gap: 44px;
  }

  .personal-story-visual {
    min-height: 535px;
  }

  .story-photo-card {
    width: 88%;
    height: 445px;

    border-radius: 24px;
  }

  .story-photo-background {
    width: 84%;
    height: 82%;

    left: -8%;

    border-radius: 28px;
  }

  .story-shape-orange {
    width: 110px;
    height: 240px;

    right: 0;
    top: 18%;
  }

  .story-shape-sage {
    width: 160px;
    height: 130px;

    left: 3%;
  }

  .story-photo-caption {
    left: 1%;
    bottom: 0;

    width: 82%;

    padding: 20px 21px;

    border-radius: 21px;
  }

  .story-photo-caption p {
    font-size: .84rem;
  }

  .personal-story-content h2 {
    margin-bottom: 23px;

    font-size: clamp(2rem,10vw,2.75rem);
  }

  .story-text p {
    font-size: .96rem;
    line-height: 1.68;
  }

  .story-principle {
    margin-top: 28px;

    padding:
      21px 21px 22px 27px;
  }

}


/* sehr kleine Handys */

@media (max-width:390px) {

  .personal-story-visual {
    min-height: 500px;
  }

  .story-photo-card {
    height: 415px;
  }

  .story-photo-caption {
    width: 87%;
  }

}
	  .header-cta,
.header-cta:link,
.header-cta:visited {
  background: #0F2B46;
  color: #fff !important;
}

.header-cta:hover,
.header-cta:focus,
.header-cta:active {
  background: #EF7F1A;
  color: #fff !important;
}
	  /* =========================================
   COOKIE BANNER
   ========================================= */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(15, 43, 70, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(15, 43, 70, 0.18);
  padding: 22px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cookie-banner-copy {
  max-width: 680px;
}

.cookie-banner-copy strong {
  display: block;
  color: #0F2B46;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.cookie-banner-copy p {
  margin: 0 0 6px;
  color: #64748B;
  line-height: 1.55;
  font-size: 0.92rem;
}

.cookie-banner-copy a {
  color: #EF7F1A;
  font-weight: 700;
  font-size: 0.88rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 760px) {

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 20px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}