/* =====================================================================
   CuraEngine GmbH — Website Design System
   Direction: Option B "Human & Warm" (Warm Teal + Soft Coral)
   Fonts self-hosted (WOFF2) — no runtime third-party requests (DSGVO).
   Palette WCAG-verified: see docs/website/CC_TASK_LANDINGPAGE.md.
   ===================================================================== */

/* ---- Self-hosted variable fonts ---- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage.woff2") format("woff2");
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

/* ---- Design tokens ---- */
:root {
  /* Brand (from brief) */
  --teal: #2C6E6A;
  --teal-700: #245B57;
  --teal-900: #183E3B;
  --coral: #E8735A;          /* decorative only — fails text contrast on light */
  --coral-ink: #C94D33;      /* actionable coral, white text = 4.57:1 (AA) */
  --coral-ink-2: #BF4A31;    /* hover */

  /* Surfaces */
  --bg: #FAFAF8;
  --cream: #F5F0EB;
  --card: #FFFFFF;
  --teal-tint: #EAF1F0;
  --coral-tint: #FBEAE4;

  /* Ink */
  --ink: #1A1A1A;
  --ink-2: #4A4A4A;
  --ink-3: #6B6B6B;

  /* Lines & fields */
  --line: #E7E0D6;           /* decorative dividers/card borders */
  --field-border: #7C8B88;   /* control boundaries need >=3:1 */

  /* Type */
  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --body: "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 18px;
  --radius-lg: 26px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(24, 62, 59, .06);
  --shadow-md: 0 12px 30px -14px rgba(24, 62, 59, .22);
  --shadow-lg: 0 30px 60px -24px rgba(24, 62, 59, .28);

  color-scheme: light;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 1.0625rem;      /* 17px — readable for older audiences */
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.015em; }
strong, b { color: var(--ink); font-weight: 700; }
a { color: var(--teal); text-underline-offset: 3px; }
a:hover { color: var(--teal-900); }

:focus-visible {
  outline: 3px solid var(--coral-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--teal-900); color: #fff; padding: .6rem 1rem;
  border-radius: 10px; z-index: 200; transition: top .15s ease;
  text-decoration: none; font-weight: 700;
}
.skip:focus { top: 12px; color: #fff; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--cream { background: var(--cream); }
.section--teal { background: var(--teal-900); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--coral); flex: none;
}
.section--teal .eyebrow { color: #9FD3CD; }

h2.h-section { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 800; }
.section--teal h2.h-section, .section--teal h3, .section--teal p { color: #fff; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-2); }
.section--teal .lead { color: #D7E7E4; }

/* Coral "dot" signature — used after headline phrases */
.dot { color: var(--coral); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  line-height: 1; padding: .95rem 1.5rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn__arrow { transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary { background: var(--coral-ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--coral-ink-2); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--secondary { background: transparent; color: var(--teal); border-color: color-mix(in srgb, var(--teal) 45%, transparent); }
.btn--secondary:hover { background: var(--teal-tint); color: var(--teal-900); border-color: var(--teal); transform: translateY(-2px); }

.btn--onteal { background: #fff; color: var(--teal-900); }
.btn--onteal:hover { background: var(--teal-tint); color: var(--teal-900); transform: translateY(-2px); }

/* Text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; color: var(--teal); text-decoration: none;
}
.tlink .btn__arrow, .tlink svg { transition: transform .2s ease; }
.tlink:hover { color: var(--teal-900); }
.tlink:hover .btn__arrow { transform: translateX(3px); }
.section--teal .tlink { color: #BFE3DE; }
.section--teal .tlink:hover { color: #fff; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.28rem; letter-spacing: -0.02em; color: var(--ink); }
.brand__name span { color: var(--teal); }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  font-weight: 600; font-size: .98rem; color: var(--ink-2);
  text-decoration: none; padding: .5rem .7rem; border-radius: 8px;
}
.nav a:hover { color: var(--teal-900); background: var(--teal-tint); }
.nav a[aria-current="page"] { color: var(--teal-900); }
.nav__cta { margin-left: .5rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1.5px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }

/* Breadcrumb */
.breadcrumb { font-size: .9rem; color: var(--ink-3); padding-top: 1.4rem; }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---- Hero (shared) ---- */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--teal-tint); color: var(--teal-900);
  font-weight: 700; font-size: .85rem; padding: .45rem .9rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero__kicker::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--coral); }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.02;
  letter-spacing: -0.03em; color: var(--ink); margin-bottom: 1.3rem;
}
.hero h1 .dot { color: var(--coral); }
.hero__sub { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--ink-2); max-width: 34rem; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }

/* trust chips under hero (compliant copy — no certification claims) */
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.4rem; }
.trust { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink-2); font-size: .95rem; }
.trust svg { width: 22px; height: 22px; color: var(--coral-ink); flex: none; }

/* Hero art (home) */
.hero__art { position: relative; min-height: 340px; }
.hero__art svg { width: 100%; height: auto; }

/* ---- Home: platform / feature cards ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2rem); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--teal) 25%, var(--line)); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--coral-tint); color: var(--coral-ink); margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-bottom: .55rem; color: var(--teal-900); }
.card p { color: var(--ink-2); font-size: 1rem; }

/* ---- Product card (home → CuraShoulder) ---- */
.product {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-md);
}
.product__body h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--teal-900); margin-bottom: .3rem; }
.product__icd { font-weight: 600; color: var(--ink-3); font-size: .95rem; margin-bottom: 1rem; }
.status {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .85rem;
  color: var(--coral-ink); background: var(--coral-tint); padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.status::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--coral-ink); }
.product__media { align-self: stretch; }

/* “weitere Indikationen” hint */
.future {
  margin-top: var(--gap); border: 1px dashed color-mix(in srgb, var(--teal) 35%, var(--line));
  border-radius: var(--radius); padding: 1.25rem 1.5rem; color: var(--ink-3);
  display: flex; align-items: center; gap: .8rem; background: color-mix(in srgb, var(--teal-tint) 40%, transparent);
}
.future svg { width: 22px; height: 22px; color: var(--teal); flex: none; }

/* ---- Facts (about) ---- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.fact { padding: 1.4rem 0; border-top: 2px solid var(--coral); }
.fact dt { font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .5rem; }
.fact dd { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--teal-900); }

/* ---- Timeline (product: 4 steps) ---- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1rem; }
.timeline::before {
  content: ""; position: absolute; top: 42px; left: 12%; right: 12%; height: 2px;
  background-image: linear-gradient(90deg, var(--coral) 55%, transparent 0);
  background-size: 14px 2px; background-repeat: repeat-x; z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step__node {
  width: 84px; height: 84px; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--card);
  border: 2px solid var(--teal); display: grid; place-items: center; color: var(--teal); position: relative;
  box-shadow: var(--shadow-sm);
}
.step__node svg { width: 34px; height: 34px; }
.step__num {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--coral-ink); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: .95rem; display: grid; place-items: center;
}
.step h3 { font-size: 1.15rem; color: var(--teal-900); margin-bottom: .4rem; }
.step p { font-size: .96rem; color: var(--ink-2); }

.note {
  margin-top: clamp(2rem, 4vw, 3rem); background: var(--card); border: 1px solid var(--line);
  border-left: 4px solid var(--coral); border-radius: 12px; padding: 1.1rem 1.35rem;
  font-size: .95rem; color: var(--ink-2); display: flex; gap: .8rem; align-items: flex-start;
}
.note svg { width: 22px; height: 22px; color: var(--coral-ink); flex: none; margin-top: 2px; }

/* ---- Phone mockup (pure CSS/HTML — honest product UI, no stock photo) ---- */
.phone {
  --pw: 268px; width: var(--pw); margin-inline: auto; background: #10312F; border-radius: 42px;
  padding: 12px; box-shadow: var(--shadow-lg); position: relative;
}
.phone__notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 120px; height: 24px; background: #10312F; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen { background: var(--bg); border-radius: 32px; overflow: hidden; }
.appbar { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1rem .5rem; color: var(--ink-3); font-size: .82rem; font-weight: 600; }
.appbar svg { width: 16px; height: 16px; }
.appbar__title { font-weight: 700; color: var(--teal); font-size: .82rem; }
.appscreen { padding: 0 1rem 1.2rem; }
.appscreen h4 { font-family: var(--display); font-size: 1.15rem; color: var(--ink); margin: .2rem 0 .9rem; letter-spacing: -0.01em; }
.exercise-visual {
  position: relative; aspect-ratio: 4 / 3; border-radius: 16px; background:
    radial-gradient(120% 120% at 70% 20%, var(--teal-tint), #DCE9E7);
  display: grid; place-items: center; overflow: hidden;
}
.exercise-visual svg { width: 62%; height: 62%; color: var(--teal); opacity: .85; }
.rep-badge {
  position: absolute; top: 12px; right: 12px; background: #fff; border-radius: 14px; padding: .45rem .6rem;
  text-align: center; box-shadow: var(--shadow-sm); line-height: 1;
}
.rep-badge b { font-family: var(--display); font-size: 1.35rem; color: var(--coral-ink); }
.rep-badge span { display: block; font-size: .58rem; color: var(--ink-3); font-weight: 600; margin-top: 2px; }
.appmeta { display: flex; align-items: center; justify-content: space-between; margin-top: .9rem; font-size: .8rem; color: var(--ink-3); font-weight: 600; }
.appbar__progress, .appmeta .bar { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.appmeta .bar { flex: 1; margin: 0 .7rem; }
.appmeta .bar i { display: block; height: 100%; width: 46%; background: var(--teal); border-radius: 999px; }

/* ---- Form ---- */
.contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field:last-of-type { margin-bottom: 1.5rem; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .45rem; }
.field input, .field select {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--field-border); border-radius: 12px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-tint); }
.form-note { font-size: .85rem; color: var(--ink-3); margin-top: 1rem; }
.form-note a { font-weight: 600; }

/* ---- Footer ---- */
.site-footer { background: var(--teal-900); color: #C6DBD8; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a { color: #C6DBD8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name span { color: #8FCFC8; }
.footer__tag { margin-top: 1rem; max-width: 22rem; color: #A9C6C2; font-size: .95rem; }
.footer__col h4 { color: #fff; font-family: var(--body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer__social a:hover { background: rgba(255,255,255,.16); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer__regulatory {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.5rem; margin-bottom: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; font-size: .85rem; color: #A9C6C2;
}
.footer__regulatory span { display: inline-flex; align-items: center; gap: .5rem; }
.footer__regulatory span::before { content: ""; width: .45rem; height: .45rem; border-radius: 50%; background: var(--coral); flex: none; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #A9C6C2; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.5rem; }
.footer__legal nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ---- Legal / prose pages ---- */
.legal { max-width: 52rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; }
.legal h2 { font-size: 1.3rem; color: var(--teal-900); margin: 2rem 0 .6rem; }
.legal p, .legal ul { color: var(--ink-2); margin-bottom: 1rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .4rem; }
.legal a { font-weight: 600; }
.legal .todo {
  background: var(--coral-tint); border-left: 4px solid var(--coral-ink); border-radius: 10px;
  padding: 1rem 1.25rem; color: #7a2c18; font-size: .95rem; margin: 1.5rem 0;
}
.legal .todo strong { color: #7a2c18; }
.legal dl.contact-data { display: grid; grid-template-columns: max-content 1fr; gap: .4rem 1.2rem; margin: 1rem 0 1.5rem; }
.legal dl.contact-data dt { font-weight: 700; color: var(--ink); }
.legal dl.contact-data dd { color: var(--ink-2); }

/* ---- Scroll reveal ---- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .card, .btn__arrow { transition: none !important; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; min-height: 0; max-width: 420px; margin-inline: auto; }
  .product { grid-template-columns: 1fr; }
  .product__media { order: -1; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: calc(100% + 8px); right: clamp(1.15rem, 4vw, 2.5rem); left: clamp(1.15rem, 4vw, 2.5rem);
    flex-direction: column; align-items: stretch; gap: .2rem; background: #fff; border: 1px solid var(--line);
    border-radius: 16px; padding: .6rem; box-shadow: var(--shadow-lg); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 1rem; }
  .nav__cta { margin: .3rem 0 0; text-align: center; justify-content: center; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 2rem; }
  .timeline::before { display: none; }
  .step { display: grid; grid-template-columns: 84px 1fr; text-align: left; gap: 1rem; align-items: center; }
  .step__node { margin: 0; }
  .step__content h3 { margin-top: 0; }
}
@media (max-width: 480px) {
  .facts { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   Design Upgrade (Website-Fixes) — layered on top of the base system.
   Richer teal/coral, bigger hero visual, bolder type, motion polish.
   All motion respects prefers-reduced-motion.
   A11y note: CTA fill stays --coral-ink (#C94D33 · white text = AA 4.57:1).
   Brand coral #E8735A fails text contrast on light → accents/highlights only.
   ===================================================================== */
:root {
  --teal-wash: #F0F7F7;                                   /* very light teal */
  --shadow-cta: 0 14px 30px -12px rgba(201, 77, 51, .5);
}

/* Alternating section rhythm: Weiß → sehr helles Teal → Weiß.
   Repurpose the existing cream sections to the light-teal wash. */
.section--cream { background: var(--teal-wash); }

/* --- Hero: subtle Teal→Weiß gradient ground --- */
.hero {
  background:
    radial-gradient(115% 85% at 88% -5%, var(--teal-tint) 0%, transparent 58%),
    linear-gradient(180deg, var(--teal-wash) 0%, var(--bg) 60%);
}

/* --- Bolder hero typography, stronger H1↔body contrast --- */
.hero h1 { font-size: clamp(2.9rem, 6.6vw, 5rem); letter-spacing: -0.04em; font-weight: 800; }
.hero__sub { font-size: clamp(1.12rem, 1.8vw, 1.35rem); }

/* --- Larger, more prominent hero visual (desktop only — keep single
       column + stacking on tablet/mobile from the base responsive rules) --- */
@media (min-width: 901px) {
  .hero__grid { grid-template-columns: 1fr .98fr; }
  .hero__art { min-height: 380px; }
  .hero__art .phone { --pw: 320px; }
  .hero__art .hero-art-svg { transform: scale(1.05); transform-origin: center; }
}

/* --- Bigger, more prominent coral CTA (AA-safe fill) --- */
.hero__cta .btn--primary {
  font-size: 1.08rem; padding: 1.1rem 1.85rem; box-shadow: var(--shadow-cta);
}
.hero__cta .btn--primary:hover {
  transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(201, 77, 51, .6);
}

/* --- Bolder section headings + teal accent bar (Teal as section accent) --- */
h2.h-section { font-size: clamp(2rem, 4vw, 3.15rem); letter-spacing: -0.03em; font-weight: 800; }
.section__head:not(.section__head--center) h2.h-section::after {
  content: ""; display: block; width: 3.25rem; height: 4px; margin-top: 1.05rem;
  border-radius: 999px; background: var(--teal);
}
.section--teal .section__head h2.h-section::after { background: #9FD3CD; }
.eyebrow { letter-spacing: .16em; }

/* --- Motion: hover scale + shadow on cards --- */
.card--hover:hover { transform: translateY(-6px) scale(1.012); box-shadow: var(--shadow-lg); }

/* --- Motion: hero entrance slide-up on page load ---
   Transform-only (opacity stays 1) so the LCP hero heading paints
   immediately — no invisible window, no LCP delay from an opacity fade. */
@keyframes heroRise { from { transform: translateY(16px); } to { transform: none; } }
.hero__kicker, .hero .status, .hero h1, .hero__sub, .hero__cta, .hero__trust {
  animation: heroRise .7s cubic-bezier(.22, .61, .36, 1) both;
}
.hero h1     { animation-delay: .06s; }
.hero__sub   { animation-delay: .14s; }
.hero__cta   { animation-delay: .22s; }
.hero__trust { animation-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .hero__kicker, .hero .status, .hero h1, .hero__sub, .hero__cta, .hero__trust {
    animation: none !important;
  }
  .card--hover:hover { transform: translateY(-4px); }
}

/* Keep the enlarged hero art from crowding on tablet/mobile */
@media (max-width: 900px) {
  .hero__art .phone { --pw: 290px; }
  .hero__art .hero-art-svg { transform: none; }
}
