:root {
  --bg: #e7eff5;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #dae5ee;
  --surface-soft: #edf3f7;
  --surface-deep: #d2dee8;
  --text: #17344c;
  --text-soft: #567088;
  --line: rgba(23, 52, 76, 0.1);
  --primary: #1b4f8a;
  --primary-strong: #143f70;
  --primary-soft: #2f689f;
  --accent: #58c88a;
  --accent-soft: #dff3e8;
  --accent-deep: #2d9c6d;
  --shadow: 0 24px 60px rgba(27, 79, 138, 0.14);
  --shadow-soft: 0 16px 40px rgba(27, 79, 138, 0.08);
  --wash-blue-xs: rgba(27, 79, 138, 0.05);
  --wash-blue-sm: rgba(27, 79, 138, 0.08);
  --wash-blue-md: rgba(27, 79, 138, 0.12);
  --wash-green-xs: rgba(88, 200, 138, 0.08);
  --wash-green-sm: rgba(88, 200, 138, 0.12);
  --wash-green-md: rgba(88, 200, 138, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-offset: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 1rem);
}

@media (min-width: 1280px) {
  html {
    zoom: 0.6;
  }
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 14% 2%, var(--wash-green-sm), transparent 24%),
    radial-gradient(circle at 100% 8%, var(--wash-blue-md), transparent 30%),
    linear-gradient(180deg, #f5f8fb 0%, #ebf1f6 48%, #f4f8fb 100%);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  overflow: clip;
}

main {
  position: relative;
  isolation: isolate;
}

main::before,
main::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  pointer-events: none;
  z-index: -1;
}

main::before {
  width: 38rem;
  height: 38rem;
  top: 24rem;
  left: -12rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--wash-green-sm), transparent 68%);
}

main::after {
  width: 42rem;
  height: 42rem;
  top: 78rem;
  right: -16rem;
  left: auto;
  border-radius: 50%;
  background: radial-gradient(circle, var(--wash-blue-md), transparent 72%);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

section[id],
header[id] {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-guide {
  padding-top: 0.75rem;
}

.section-tint {
  background:
    linear-gradient(180deg, rgba(222, 232, 240, 0.88), rgba(243, 247, 250, 0.58)),
    radial-gradient(circle at top right, var(--wash-green-xs), transparent 28%);
}

.section-band {
  padding: 2rem 0;
}

.section-contact {
  padding-top: 5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0.4rem;
  transition:
    top 220ms ease,
    padding 220ms ease;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), 1220px);
  min-height: 88px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 45px rgba(13, 77, 145, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  transition:
    min-height 220ms ease,
    gap 220ms ease,
    width 220ms ease,
    padding 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 238px;
  height: auto;
  max-width: 62vw;
  transition: width 220ms ease, transform 220ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: flex-end;
  transition: gap 220ms ease, font-size 220ms ease;
}

.site-nav a:not(.button) {
  position: relative;
  transition: color 180ms ease;
}

.site-header.is-condensed {
  top: -0.85rem;
  padding-top: 0.2rem;
}

.site-header.is-condensed .header-inner {
  width: fit-content;
  max-width: min(calc(100% - 3rem), 1180px);
  min-height: 46px;
  gap: 0.55rem;
  padding: 0.28rem 0.75rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(13, 77, 145, 0.08);
  transform: translateY(-3px);
}

.site-header.is-condensed .brand-logo {
  width: 122px;
  transform: translateY(-2px);
}

.site-header.is-condensed .site-nav {
  gap: 0.65rem;
  font-size: 0.8rem;
  flex-wrap: nowrap;
}

.site-header.is-condensed .site-nav .button-small {
  min-height: 30px;
  padding: 0.42rem 0.72rem;
  font-size: 0.72rem;
  border-radius: 999px;
}

.site-header.is-condensed .site-nav a:not(.button) {
  line-height: 1;
  padding-inline: 0.1rem;
}

.site-nav .button-small {
  white-space: nowrap;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"],
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--primary);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary-soft));
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  box-shadow: 0 16px 34px rgba(27, 79, 138, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 38px rgba(27, 79, 138, 0.28);
}

.button-secondary {
  background: rgba(235, 241, 246, 0.92);
  color: var(--primary);
  border: 1px solid rgba(27, 79, 138, 0.12);
}

.button-light {
  background: #f8fbfd;
  color: var(--primary);
  white-space: nowrap;
  min-width: 17.5rem;
  padding-inline: 1.9rem;
}

.button-small {
  min-height: 46px;
  padding-inline: 1.15rem;
}

.button-full {
  width: 100%;
}

.hero {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.hero-grid,
.split-layout,
.about-grid,
.contact-grid,
.content-grid,
.audience-grid,
.pillars-grid,
.steps-grid,
.statement-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: 2.2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34)),
    linear-gradient(180deg, var(--wash-blue-xs), rgba(255, 255, 255, 0.36));
  padding: 2.25rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 70px rgba(27, 79, 138, 0.08);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cambria", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

h3 {
  font-size: 1.32rem;
}

p {
  margin: 0 0 1rem;
}

.hero-lead,
.section-intro p,
.section-copy p,
.feature-card p,
.audience-card p,
.step-card p,
.statement-card p,
.note-card p,
.stats-card p,
.quote-text,
.contact-box p {
  color: var(--text-soft);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.hero-guidance {
  margin: 0 0 1.15rem;
  color: var(--primary);
  font-weight: 700;
}

.trust-list,
.check-list,
.mappe-card ul,
.hero-plan-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.trust-list li,
.check-list li,
.mappe-card li,
.hero-plan-copy li {
  position: relative;
  padding-left: 1.75rem;
}

.trust-list li::before,
.check-list li::before,
.mappe-card li::before,
.hero-plan-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7ad6a1);
  box-shadow: 0 0 0 6px rgba(88, 200, 138, 0.12);
}

.hero-visual {
  position: relative;
  display: block;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero-visual::before {
  inset: 16% auto auto -4%;
  width: 180px;
  height: 180px;
  background: var(--wash-green-md);
}

.hero-visual::after {
  inset: auto -6% 8% auto;
  width: 220px;
  height: 220px;
  background: var(--wash-blue-md);
}

.hero-plan-panel {
  position: relative;
  padding: 1.7rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(233, 239, 245, 0.82)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 56px rgba(27, 79, 138, 0.1);
  overflow: hidden;
}

.hero-plan-panel::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--wash-green-sm), transparent 70%);
  pointer-events: none;
}

.hero-plan-head {
  position: relative;
  z-index: 1;
  max-width: 33rem;
  margin-bottom: 1.35rem;
}

.hero-plan-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero-plan-intro {
  margin: 0;
  color: var(--text-soft);
}

.hero-flow-panel {
  padding: 1.85rem 1.8rem 1.6rem;
}

.hero-path {
  position: relative;
  display: grid;
  gap: 0.9rem;
  margin-top: 0.45rem;
}

.hero-path::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 1.35rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(27, 79, 138, 0.18),
    rgba(88, 200, 138, 0.3) 48%,
    rgba(27, 79, 138, 0.14)
  );
}

.hero-path-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.hero-path-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: rgba(247, 250, 252, 0.95);
  border: 1px solid rgba(27, 79, 138, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(27, 79, 138, 0.08);
}

.hero-path-copy {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(23, 52, 76, 0.08);
}

.hero-path-item:last-child .hero-path-copy {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-path-copy strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
  color: var(--primary-strong);
}

.hero-path-copy p {
  margin: 0;
  color: var(--text-soft);
}

.hero-path-note {
  margin: 1.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 52, 76, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.hero-plan-flow {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-plan-step {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.15rem 1.15rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(27, 79, 138, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-plan-step.is-problem {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(231, 237, 243, 0.8)),
    #fff;
}

.hero-plan-step.is-focus {
  background:
    linear-gradient(180deg, rgba(231, 245, 237, 0.92), rgba(255, 255, 255, 0.88)),
    #fff;
}

.hero-plan-step.is-result {
  background:
    linear-gradient(180deg, rgba(229, 236, 244, 0.94), rgba(255, 255, 255, 0.88)),
    #fff;
}

.hero-plan-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 79, 138, 0.14), rgba(88, 200, 138, 0.18));
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-plan-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-plan-copy strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
  color: var(--primary-strong);
}

.hero-plan-copy p,
.hero-plan-copy ul {
  margin: 0;
  color: var(--text-soft);
}

.hero-plan-copy ul {
  display: grid;
  gap: 0.55rem;
}

.hero-plan-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.hero-plan-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 79, 138, 0.08);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.visual-card,
.mappe-card,
.info-card,
.feature-card,
.step-card,
.audience-card,
.note-card,
.quote-panel,
.stats-card,
.portrait-card,
.statement-card,
.contact-form,
.contact-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.hero-visual-shell {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(280px, 1.08fr);
  gap: 1.15rem;
  align-items: stretch;
}

.visual-rail {
  display: grid;
  gap: 1rem;
}

.hero-micro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.visual-card {
  position: relative;
  width: 100%;
  padding: 1.35rem 1.25rem;
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -38% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(13, 77, 145, 0.08);
}

.visual-problem {
  background:
    linear-gradient(160deg, rgba(13, 77, 145, 0.1), rgba(255, 255, 255, 0.78)),
    #fff;
}

.visual-solution {
  background:
    linear-gradient(160deg, rgba(88, 200, 138, 0.12), rgba(232, 239, 245, 0.82)),
    #fff;
}

.visual-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 800;
}

.visual-card strong,
.stat-item strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.mappe-card {
  width: 100%;
  position: relative;
  min-height: 100%;
  padding-top: 1.4rem;
  background:
    linear-gradient(180deg, rgba(223, 238, 249, 0.9), rgba(255, 255, 255, 0.88)),
    #fff;
  box-shadow: var(--shadow);
}

.mappe-tab {
  position: absolute;
  top: -12px;
  left: 2.3rem;
  width: 120px;
  height: 28px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(135deg, var(--accent), #6fd7bd);
}

.mappe-body {
  padding: 2.1rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.mappe-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.mappe-lead {
  margin-bottom: 1rem;
}

.micro-card {
  padding: 1rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(212, 232, 248, 0.72)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.micro-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.micro-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.micro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27, 79, 138, 0.12), rgba(88, 200, 138, 0.16));
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.section-intro,
.section-copy {
  max-width: 780px;
}

.section-intro {
  margin-bottom: 2rem;
}

.guide-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.guide-intro {
  max-width: 34rem;
  margin-bottom: 0;
}

.guide-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 2.4rem;
}

.guide-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1.25rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(27, 79, 138, 0.12),
    rgba(88, 200, 138, 0.34),
    rgba(27, 79, 138, 0.12)
  );
}

.guide-step {
  position: relative;
  padding-top: 0.25rem;
}

.guide-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(27, 79, 138, 0.12);
  color: var(--primary);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(27, 79, 138, 0.08);
}

.guide-step h3 {
  margin-bottom: 0.65rem;
  color: var(--primary);
}

.guide-step p {
  margin-bottom: 0.9rem;
  color: var(--text-soft);
}

.section-intro h2,
.section-copy h2 {
  margin-bottom: 1rem;
}

.pillars-grid,
.content-grid,
.audience-grid,
.statement-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

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

.info-card,
.feature-card,
.statement-card {
  padding: 1.6rem;
}

.info-card {
  grid-column: span 6;
  background:
    linear-gradient(155deg, rgba(13, 77, 145, 0.08), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.68);
}

.benefit-feature-card {
  padding: 1.45rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 255, 0.76)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.benefit-feature-card h3 {
  margin-bottom: 0.9rem;
  color: var(--primary);
}

.benefit-feature-card p {
  margin-bottom: 1.1rem;
}

.benefit-art {
  height: 210px;
  margin-bottom: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(13, 77, 145, 0.14);
  background-color: rgba(244, 250, 255, 0.92);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72%;
}

.benefit-photo {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.art-home {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 160'%3E%3Crect x='18' y='126' width='204' height='10' rx='5' fill='%23dbe7f3'/%3E%3Crect x='62' y='68' width='80' height='44' rx='10' fill='%236fa0d3'/%3E%3Crect x='150' y='50' width='44' height='62' rx='12' fill='%23d89260'/%3E%3Ccircle cx='164' cy='36' r='14' fill='%23f7c9b4'/%3E%3Cpath d='M150 52c7-14 21-19 32-12 5 3 9 8 12 16v56h-44z' fill='%23d1573f'/%3E%3Ccircle cx='94' cy='52' r='14' fill='%23f2b390'/%3E%3Cpath d='M78 68c10-13 30-13 40 0l-4 36H74z' fill='%237cb8e7'/%3E%3Cpath d='M74 104 60 128c-4 7-14 3-12-5l10-29z' fill='%23245384'/%3E%3Cpath d='M114 104l8 27c2 8 13 7 14-1l-2-26z' fill='%23245384'/%3E%3Cpath d='M106 73h70' stroke='%2386848d' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M92 84h60' stroke='%239ca9b6' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M84 14h26' stroke='%2386848d' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M96 16v18' stroke='%2386848d' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M79 32h34l-17 24z' fill='none' stroke='%23245384' stroke-width='4' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.art-mappe {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 160'%3E%3Ccircle cx='118' cy='50' r='28' fill='%2381a1bf'/%3E%3Cpath d='M92 52c10-21 45-29 61-6 7 10 6 27 5 46H84c-3-19 0-30 8-40z' fill='%23245384'/%3E%3Ccircle cx='100' cy='48' r='10' fill='none' stroke='%23245384' stroke-width='4'/%3E%3Ccircle cx='127' cy='48' r='10' fill='none' stroke='%23245384' stroke-width='4'/%3E%3Cpath d='M110 48h7' stroke='%23245384' stroke-width='4'/%3E%3Cpath d='M120 72c-8 7-17 8-27 2' stroke='%23f5d1bb' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M38 52l44-8 8 48-44 8z' fill='%23fff7f1' stroke='%23f06d4f' stroke-width='2'/%3E%3Cpath d='M49 63h24M49 72h18M49 81h20M49 90h15' stroke='%23f2ad9e' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M46 49h28' stroke='%23f06d4f' stroke-width='5'/%3E%3Cpath d='M180 30c10-15 29-14 29 2 0 10-8 14-14 18-4 3-6 7-6 11' fill='none' stroke='%23245384' stroke-width='6' stroke-linecap='round'/%3E%3Ccircle cx='188' cy='70' r='4' fill='%23245384'/%3E%3C/svg%3E");
}

.art-support {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 160'%3E%3Ccircle cx='82' cy='44' r='16' fill='%23f2b390'/%3E%3Cpath d='M58 68c12-17 39-17 50 2l9 34H66z' fill='%231d67ad'/%3E%3Cpath d='M75 104 59 130c-5 7-14 1-11-6l9-24z' fill='%23124572'/%3E%3Cpath d='M114 102l4 30c1 8 12 8 13 0l3-30z' fill='%23124572'/%3E%3Cpath d='M142 44h44c6 0 11 5 11 11v43c0 6-5 11-11 11h-44c-6 0-11-5-11-11V55c0-6 5-11 11-11z' fill='%23124572'/%3E%3Cpath d='M152 30h44c6 0 11 5 11 11v43c0 6-5 11-11 11h-44c-6 0-11-5-11-11V41c0-6 5-11 11-11z' fill='%231d67ad'/%3E%3Ccircle cx='168' cy='110' r='20' fill='none' stroke='%23124572' stroke-width='4'/%3E%3Ccircle cx='209' cy='110' r='20' fill='none' stroke='%23124572' stroke-width='4'/%3E%3Cpath d='M168 110h41M179 52h20' stroke='%23fff' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M128 124l18-14h20' stroke='%23124572' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M176 48h34' stroke='%23124572' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-card {
  grid-column: span 6;
}

.highlight-card {
  background:
    linear-gradient(145deg, rgba(27, 79, 138, 0.12), rgba(232, 239, 245, 0.92)),
    rgba(255, 255, 255, 0.7);
}

.value-card {
  background:
    linear-gradient(145deg, rgba(88, 200, 138, 0.12), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.78);
}

.value-card h3 {
  margin-bottom: 0.85rem;
}

.value-card p {
  margin-bottom: 1rem;
}

.value-card .text-link {
  margin-top: 1.15rem;
}

.muted-list li::before {
  background: linear-gradient(135deg, #80a0bf, #b7c7d8);
  box-shadow: 0 0 0 6px rgba(87, 114, 141, 0.12);
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(223, 238, 249, 0.58)),
    #fff;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7bd8a3);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(45, 156, 109, 0.2);
}

.audience-card {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(227, 244, 237, 0.5)),
    #fff;
}

.audience-primary {
  grid-column: span 5;
  background:
    linear-gradient(145deg, rgba(13, 77, 145, 0.14), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
}

.audience-card:nth-child(2) {
  grid-column: span 4;
}

.audience-compact {
  grid-column: span 3;
}

.text-link {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--primary);
  font-weight: 700;
}

.cooperation-button {
  margin-top: 1rem;
}

.section-band .band-layout {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--primary), var(--primary-strong) 58%, #214f81 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.section-band .band-layout > div {
  max-width: 42rem;
}

.section-band .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.section-band .button-light {
  flex-shrink: 0;
}

.section-deep {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.09), transparent 28%),
    linear-gradient(180deg, var(--primary) 0%, #17487d 52%, #113864 100%);
  color: #fff;
}

.section-intro-invert {
  text-align: center;
  margin-inline: auto;
}

.section-intro-invert h2,
.section-intro-invert p {
  color: rgba(255, 255, 255, 0.94);
}

.eyebrow-invert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.trust-card {
  padding: 1.8rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-card h3 {
  margin-bottom: 0.9rem;
  color: #fff;
}

.trust-card p {
  margin: 0;
  color: rgba(235, 243, 250, 0.86);
}

.trust-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.3rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #6fd89a);
  box-shadow: 0 14px 24px rgba(45, 156, 109, 0.22);
  position: relative;
}

.trust-icon::before,
.trust-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.trust-icon::before {
  width: 0.28rem;
  height: 0.95rem;
  left: 1rem;
  top: 1.15rem;
  transform: rotate(-38deg);
}

.trust-icon::after {
  width: 0.28rem;
  height: 1.5rem;
  left: 1.55rem;
  top: 0.75rem;
  transform: rotate(42deg);
}

.trust-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
  gap: 1.8rem;
}

.note-card,
.stats-card,
.quote-panel {
  padding: 1.7rem;
}

.quote-panel {
  background:
    linear-gradient(135deg, rgba(224, 239, 232, 0.92), rgba(229, 236, 243, 0.86)),
    #fff;
}

.quote-mark {
  margin: 0 0 0.5rem;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--primary);
  font-family: "Cambria", "Palatino Linotype", "Book Antiqua", serif;
}

.quote-text {
  margin: 0;
  font-size: 1.35rem;
  color: var(--text);
  font-weight: 700;
}

.family-section {
  overflow: clip;
}

.family-layout {
  position: relative;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
  gap: 0;
  padding: clamp(1.4rem, 2.6vw, 2.1rem);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    linear-gradient(180deg, rgba(27, 79, 138, 0.06), rgba(233, 239, 245, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.family-layout::before {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  top: -9rem;
  left: -7rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--wash-green-sm), transparent 68%);
  pointer-events: none;
}

.family-panel,
.family-copy {
  position: relative;
  z-index: 1;
}

.family-panel {
  display: grid;
  align-content: start;
  gap: 1.2rem;
  min-height: 100%;
  padding: clamp(1.45rem, 2vw, 2rem);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(238, 244, 248, 0.96), rgba(229, 236, 243, 0.86)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(15, 88, 125, 0.11);
}

.family-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.family-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 121, 102, 0.14);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.family-panel .quote-mark {
  margin: 0;
  font-size: 3.2rem;
  color: var(--accent-deep);
  opacity: 0.95;
}

.family-quote {
  margin: 0;
  max-width: 18ch;
  font-family: "Cambria", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  color: var(--primary-strong);
  letter-spacing: -0.03em;
}

.family-support-list {
  display: grid;
  gap: 0.8rem;
}

.family-support-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.95rem 1rem 0.95rem 3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(27, 79, 138, 0.08);
  color: var(--text);
  font-weight: 700;
}

.family-support-list span::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7bd8a3);
  box-shadow: 0 0 0 6px rgba(88, 200, 138, 0.1);
}

.family-panel-note {
  margin: 0;
  padding-top: 0.2rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.family-copy {
  padding: clamp(1.1rem, 1.7vw, 1.8rem) clamp(0.2rem, 1vw, 0.9rem)
    clamp(1.1rem, 1.7vw, 1.8rem) clamp(1.6rem, 2.4vw, 2.4rem);
}

.family-lead {
  margin: 0 0 1.5rem;
  font-size: 1.06rem;
  color: var(--text);
}

.family-point-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.family-point {
  padding: 1.15rem 1.1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(231, 237, 243, 0.8)),
    #fff;
  border: 1px solid rgba(27, 79, 138, 0.08);
  box-shadow: var(--shadow-soft);
}

.family-point strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--primary);
  font-size: 1.02rem;
}

.family-point p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--text-soft);
}

.stats-card {
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(27, 79, 138, 0.14), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.84);
}

.stat-item + .stat-item {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.about-grid {
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.portrait-card {
  padding: 1rem;
  background:
    radial-gradient(circle at top, var(--wash-green-sm), transparent 38%),
    linear-gradient(180deg, rgba(27, 79, 138, 0.12), rgba(255, 255, 255, 0.9));
}

.portrait-badge {
  display: inline-flex;
  margin: 0.5rem 0 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
}

.portrait-surface {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.9)),
    rgba(13, 77, 145, 0.08);
}

.portrait-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 28px;
  margin-bottom: 1rem;
  box-shadow: 0 18px 32px rgba(13, 77, 145, 0.14);
}

.statement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.statement-card {
  padding: 1.6rem;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(212, 232, 248, 0.62)),
    #fff;
}

.statement-card h3 {
  font-size: 1.55rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 1.8rem;
}

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

.product-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-preview-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 241, 246, 0.82)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.product-preview-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(13, 77, 145, 0.12);
}

.product-preview-smart {
  padding: 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(212, 232, 248, 0.72)),
    #fff;
}

.product-preview-content h3 {
  margin-bottom: 0.9rem;
  color: var(--primary);
}

.product-preview-content p {
  color: var(--text-soft);
}

.product-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0 1.3rem;
}

.product-preview-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(27, 79, 138, 0.08);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.support-teaser-card {
  padding: 1.55rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(235, 241, 246, 0.78)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.support-teaser-card h3 {
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.support-teaser-card p {
  margin: 0;
  color: var(--text-soft);
}

.support-teaser-action {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  display: grid;
  gap: 0.35rem;
  background:
    linear-gradient(145deg, rgba(27, 79, 138, 0.12), rgba(255, 255, 255, 0.8)),
    #fff;
}

.contact-box strong {
  font-size: 1.08rem;
}

.contact-box a {
  color: var(--primary);
  font-weight: 700;
}

.cost-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, rgba(88, 200, 138, 0.12), rgba(235, 241, 246, 0.5));
  border-radius: 0 18px 18px 0;
}

.contact-form {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(229, 236, 243, 0.78)),
    rgba(255, 255, 255, 0.8);
}

.form-intro {
  margin-bottom: 1.2rem;
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(27, 79, 138, 0.12), rgba(235, 241, 246, 0.92)),
    #fff;
}

.form-intro h3 {
  margin-bottom: 0.55rem;
}

.form-intro p {
  margin: 0;
}

.form-kicker {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-panel {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.form-panel-soft {
  background:
    linear-gradient(180deg, rgba(235, 241, 246, 0.62), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.7);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label,
.label-like {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(24, 52, 79, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1rem;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(13, 77, 145, 0.45);
  box-shadow: 0 0 0 4px rgba(13, 77, 145, 0.12);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 77, 145, 0.1);
  font-weight: 700;
}

.choice input {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

.form-note {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(22, 30, 41, 0.72);
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  margin: 1rem 0 1.2rem;
  font-size: 0.96rem;
}

.consent-row input {
  margin-top: 0.2rem;
}

.consent-row a {
  color: var(--primary);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.status-message {
  display: none;
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  font-weight: 700;
}

.status-message.is-visible {
  display: block;
}

.status-message.is-success {
  background: rgba(88, 200, 138, 0.14);
  color: #1d7d58;
}

.status-message.is-error {
  background: rgba(198, 55, 55, 0.12);
  color: #8d2323;
}

.lp-hero-quiz-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 860px);
  margin: 1.6rem auto 0;
  padding: 1rem 1.1rem 1rem 1.2rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 243, 232, 0.72)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 36px rgba(13, 77, 145, 0.08);
}

.lp-hero-quiz-copy {
  text-align: left;
}

.lp-hero-quiz-copy strong {
  display: block;
  margin-bottom: 0.3rem;
}

.lp-hero-quiz-copy p {
  margin: 0;
  color: var(--text-soft);
}

.lp-quiz-section {
  overflow: clip;
}

.lp-quiz-card {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(230, 237, 243, 0.82)),
    rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.lp-quiz-card-head,
.lp-quiz-progress-head,
.lp-quiz-contact-prompt,
.lp-quiz-result-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.lp-quiz-card-head,
.lp-quiz-progress {
  margin-bottom: 1rem;
}

.lp-quiz-stage-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lp-quiz-stage {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(27, 79, 138, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.lp-quiz-stage.is-active {
  background: linear-gradient(135deg, rgba(27, 79, 138, 0.12), rgba(223, 243, 232, 0.75));
  color: var(--primary);
}

.lp-quiz-stage-panel {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.lp-quiz-step-label,
.lp-quiz-progress-value,
.lp-quiz-kicker,
.lp-quiz-result-kicker {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.lp-quiz-progress-value {
  color: var(--text-soft);
}

.lp-quiz-track {
  height: 0.7rem;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: rgba(27, 79, 138, 0.1);
  overflow: hidden;
}

.lp-quiz-track span {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 220ms ease;
}

.lp-quiz-question-box {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(27, 79, 138, 0.1), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.lp-quiz-kicker,
.lp-quiz-result-kicker {
  margin: 0 0 0.65rem;
}

.lp-quiz-stage-panel h3 {
  margin-bottom: 0.5rem;
}

.lp-quiz-stage-panel p,
.lp-quiz-contact-prompt p,
.lp-quiz-service-card p {
  margin-top: 0;
}

.lp-quiz-options {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.lp-quiz-option {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(23, 52, 76, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.lp-quiz-option:hover,
.lp-quiz-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(27, 79, 138, 0.3);
  box-shadow: 0 12px 30px rgba(13, 77, 145, 0.08);
}

.lp-quiz-option.is-selected {
  border-color: rgba(13, 77, 145, 0.45);
  background:
    linear-gradient(135deg, rgba(27, 79, 138, 0.12), rgba(223, 243, 232, 0.7)),
    #fff;
  box-shadow: 0 12px 30px rgba(13, 77, 145, 0.09);
}

.lp-quiz-option strong,
.lp-quiz-service-card h4,
.lp-quiz-contact-prompt strong {
  display: block;
  margin-bottom: 0.35rem;
}

.lp-quiz-option span {
  color: var(--text-soft);
}

.lp-quiz-controls {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.lp-quiz-controls .button {
  min-width: 160px;
}

.lp-quiz-result-panel.is-empty {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(236, 242, 247, 0.84)),
    rgba(255, 255, 255, 0.8);
}

.lp-quiz-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.1rem 0 1.2rem;
}

.lp-quiz-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(27, 79, 138, 0.1);
  color: var(--primary);
  font-weight: 700;
}

.lp-quiz-recommendation-grid {
  display: grid;
  gap: 0.9rem;
}

.lp-quiz-service-card {
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(223, 243, 232, 0.52)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 52, 76, 0.08);
}

.lp-quiz-service-card p {
  margin-bottom: 0.9rem;
}

.lp-quiz-service-card .button {
  width: fit-content;
}

.lp-quiz-result-actions {
  margin-top: 1.25rem;
}

.lp-quiz-contact-prompt {
  margin-bottom: 1rem;
}

.lp-quiz-contact-summary {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(27, 79, 138, 0.08);
  color: var(--text);
  font-weight: 700;
  min-width: min(100%, 270px);
}

.contact-form-compact {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-form-compact .form-panel:last-of-type {
  margin-bottom: 0;
}

.lp-quiz-controls-contact {
  margin-top: 1.2rem;
}

@media (max-width: 980px) {
  .lp-hero-quiz-callout,
  .lp-quiz-card-head,
  .lp-quiz-contact-prompt,
  .lp-quiz-result-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-hero-quiz-callout .button,
  .lp-quiz-card-head .button,
  .lp-quiz-result-actions .button {
    width: 100%;
  }

  .lp-quiz-contact-summary {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .lp-hero-quiz-callout,
  .lp-quiz-card {
    padding: 1rem;
  }

  .lp-quiz-question-box,
  .lp-quiz-stage-panel {
    padding: 1rem;
  }

  .lp-quiz-controls {
    flex-direction: column-reverse;
  }

  .lp-quiz-controls .button {
    width: 100%;
  }
}

.site-footer {
  padding: 2.8rem 0 2rem;
  background: #163b67;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  grid-template-columns: 1.1fr 1fr 0.8fr;
  align-items: start;
}

.footer-logo {
  width: 190px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(1.12);
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-body {
  min-height: 100vh;
}

.legal-header {
  padding: 2rem 0 1.25rem;
}

.legal-main {
  padding-bottom: 4rem;
}

.legal-card {
  padding: 2rem;
}

.legal-card + .legal-card {
  margin-top: 1.5rem;
}

.legal-card h2 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.legal-placeholder {
  color: #8d5b00;
  background: #fff6d8;
  border: 1px solid #f1d179;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font-weight: 700;
}

.subpage-hero {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.8rem;
  align-items: start;
}

.subpage-hero-grid-text-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.subpage-hero-grid > * {
  min-width: 0;
}

.subpage-hero .section-copy {
  max-width: none;
  align-self: start;
}

.subpage-hero .section-copy h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  max-width: none;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.subpage-hero .section-copy h1.page-title-single-line {
  max-width: none;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  white-space: normal;
  overflow-wrap: normal;
}

.subpage-visual-card {
  padding: 1rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 239, 245, 0.82)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.subpage-visual-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.smart-home-scene {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(88, 200, 138, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(27, 79, 138, 0.08), rgba(255, 255, 255, 0.92));
  overflow: hidden;
}

.smart-home-scene-large {
  min-height: 420px;
}

.smart-home-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  box-shadow: 0 20px 36px rgba(13, 77, 145, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  z-index: 2;
}

.smart-home-center span {
  max-width: 5.5rem;
}

.smart-node {
  position: absolute;
  width: 4rem;
  height: 4rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(13, 77, 145, 0.12);
  z-index: 2;
}

.smart-node::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 79, 138, 0.12), rgba(88, 200, 138, 0.2));
}

.smart-node-top {
  top: 2.1rem;
  left: 50%;
  transform: translateX(-50%);
}

.smart-node-left {
  left: 2.1rem;
  top: 50%;
  transform: translateY(-50%);
}

.smart-node-right {
  right: 2.1rem;
  top: 50%;
  transform: translateY(-50%);
}

.smart-node-bottom {
  bottom: 2.1rem;
  left: 50%;
  transform: translateX(-50%);
}

.smart-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(27, 79, 138, 0.16), rgba(88, 200, 138, 0.18));
  z-index: 1;
}

.smart-line-top,
.smart-line-bottom {
  width: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
}

.smart-line-top {
  top: 6rem;
  height: calc(50% - 6rem);
}

.smart-line-bottom {
  bottom: 6rem;
  height: calc(50% - 6rem);
}

.smart-line-left,
.smart-line-right {
  height: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
}

.smart-line-left {
  left: 6rem;
  width: calc(50% - 6rem);
}

.smart-line-right {
  right: 6rem;
  width: calc(50% - 6rem);
}

.subpage-side-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.35rem;
}

.subpage-mini-card {
  padding: 1.25rem 1.3rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(212, 232, 248, 0.72)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.subpage-mini-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.subpage-mini-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.6rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 250, 255, 0.76)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin-bottom: 0.85rem;
  color: var(--primary);
}

.service-card p {
  margin-bottom: 1rem;
  color: var(--text-soft);
}

.service-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.service-points li {
  position: relative;
  padding-left: 1.2rem;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.subpage-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.analysis-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 1.5rem;
  align-items: start;
}

.analysis-prose,
.analysis-sidecard,
.analysis-panel,
.analysis-compare-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.analysis-prose,
.analysis-panel,
.analysis-compare-card {
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 251, 0.84)),
    #fff;
}

.analysis-prose section + section {
  margin-top: 2rem;
}

.analysis-prose h3,
.analysis-sidecard h3,
.analysis-panel h3,
.analysis-compare-card h3 {
  margin-bottom: 0.85rem;
  color: var(--primary);
}

.analysis-prose p,
.analysis-panel p,
.analysis-compare-card p,
.analysis-sidecard p {
  color: var(--text-soft);
}

.analysis-highlight {
  margin: 1.7rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  border-left: 4px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(88, 200, 138, 0.12), rgba(255, 255, 255, 0.88)),
    #fff;
}

.analysis-highlight p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.analysis-sidecard {
  position: sticky;
  top: 5.75rem;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(22, 73, 126, 0.96), rgba(18, 58, 100, 0.94)),
    #173d68;
  color: #fff;
}

.analysis-sidecard h3,
.analysis-sidecard .analysis-checklist li {
  color: #fff;
}

.analysis-sidecard-label {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.analysis-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.analysis-checklist li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-soft);
}

.analysis-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.analysis-panel-grid,
.analysis-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.analysis-panel-grid {
  align-items: stretch;
}

.analysis-checklist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.2rem;
}

.analysis-compare-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.analysis-summary {
  max-width: 820px;
}

@media (max-width: 1320px) {
  .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .subpage-side-cards {
    grid-template-columns: 1fr;
  }

  .subpage-visual-card {
    max-width: 760px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .guide-shell,
  .contact-grid,
  .about-grid,
  .split-layout,
  .statement-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid .info-card,
  .content-grid .feature-card,
  .audience-grid .audience-card {
    grid-column: span 12;
  }

  .benefit-feature-grid,
  .guide-track,
  .trust-card-grid,
  .support-teaser-grid,
  .services-grid,
  .analysis-panel-grid,
  .analysis-compare-grid {
    grid-template-columns: 1fr;
  }

  .analysis-story-grid,
  .analysis-checklist-grid {
    grid-template-columns: 1fr;
  }

  .analysis-sidecard {
    position: static;
  }

  .guide-track {
    gap: 1.5rem;
    padding-top: 0;
    padding-left: 1.15rem;
  }

  .guide-track::before {
    top: 0.35rem;
    bottom: 0.35rem;
    left: 1.35rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(27, 79, 138, 0.12),
      rgba(88, 200, 138, 0.34),
      rgba(27, 79, 138, 0.12)
    );
  }

  .guide-step {
    padding-top: 0;
    padding-left: 0.25rem;
  }

  .contact-copy {
    position: static;
  }

  .reverse-on-mobile > :first-child {
    order: 2;
  }

  .reverse-on-mobile > :last-child {
    order: 1;
  }

  .family-layout {
    gap: 1.2rem;
  }

  .family-copy {
    padding: 0.4rem 0 0;
  }

  .family-point-list {
    grid-template-columns: 1fr;
  }

  .section-band .band-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-band .button-light {
    min-width: 0;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 1rem;
    font-size: 0.93rem;
  }

  .site-nav .button-small {
    min-height: 44px;
    padding-inline: 1rem;
  }

  .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .subpage-side-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .subpage-visual-card {
    max-width: 760px;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    border: 1px solid rgba(24, 52, 79, 0.08);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-grid {
    padding: 1.35rem;
  }

  .hero-plan-panel {
    padding: 1.35rem;
  }

  .hero-plan-head {
    margin-bottom: 1rem;
  }

  .hero-plan-step {
    grid-template-columns: 2.7rem minmax(0, 1fr);
    padding: 1rem;
  }

  .hero-path {
    gap: 1rem;
  }

  .hero-path-item {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.9rem;
  }

  .hero-visual-shell,
  .product-preview-card,
  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }

  .subpage-side-cards {
    grid-template-columns: 1fr;
  }

  .hero-micro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 2;
  }

  .visual-card {
    width: 100%;
  }

  .mappe-card {
    width: 100%;
    order: 1;
  }

  .visual-rail {
    order: 3;
  }
}

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

  .section {
    padding: 4rem 0;
  }

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

  .brand-logo {
    width: 190px;
  }

  .hero-actions,
  .choice-row {
    flex-direction: column;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .button-light {
    white-space: normal;
  }

  .smart-home-scene {
    min-height: 280px;
  }

  .smart-home-scene-large {
    min-height: 320px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-micro-grid {
    grid-template-columns: 1fr;
  }

  .hero-plan-panel {
    border-radius: 24px;
  }

  .hero-plan-step {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-path::before {
    left: 1.2rem;
  }

  .hero-path-item {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .hero-path-marker {
    width: 2.4rem;
    height: 2.4rem;
  }

  .hero-plan-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 16px;
  }

  .hero-plan-points {
    display: grid;
  }

  .subpage-side-cards {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .hero-plan-panel,
  .hero-plan-step,
  .mappe-body,
  .info-card,
  .feature-card,
  .step-card,
  .audience-card,
  .note-card,
  .quote-panel,
  .stats-card,
  .portrait-card,
  .statement-card,
  .contact-form,
  .contact-box {
    border-radius: 22px;
  }

  .statement-card {
    min-height: auto;
  }

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

  .quote-text {
    font-size: 1.15rem;
  }

  .family-layout {
    padding: 1rem;
    border-radius: 26px;
  }

  .family-panel,
  .family-point {
    border-radius: 22px;
  }

  .family-quote {
    max-width: none;
    font-size: 1.7rem;
  }

  .family-support-list span {
    min-height: 0;
    padding-right: 0.9rem;
  }

  .benefit-art {
    height: 180px;
    background-size: 82%;
  }

  .portrait-image {
    height: 300px;
  }

  .legal-card {
    padding: 1.4rem;
  }
}
