:root {
  --ink: #092f32;
  --ink-deep: #041f21;
  --ink-soft: #173f42;
  --teal: #22b9c2;
  --teal-dark: #0d8e96;
  --teal-pale: #ddf5f4;
  --mint: #edf9f7;
  --paper: #fff;
  --sand: #f7f7f1;
  --muted: #5e7476;
  --line: rgba(9, 47, 50, 0.14);
  --warm: #d8aa66;
  --shadow: 0 28px 70px rgba(5, 52, 56, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(9, 47, 50, 0.1);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 246px; height: auto; object-fit: contain; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: #3b5c5e;
  font-size: 12px;
  font-weight: 750;
}
.desktop-nav > a { transition: color .2s ease, transform .2s ease; }
.desktop-nav > a:not(.nav-cta):hover { color: var(--teal-dark); transform: translateY(-1px); }
.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}
.nav-cta:hover { background: var(--teal-dark); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  min-width: 78px;
  min-height: 42px;
  display: grid;
  place-items: center;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  min-width: 245px;
  display: grid;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}
.mobile-menu nav a {
  padding: 12px;
  border-bottom: 1px solid rgba(9, 47, 50, 0.08);
  font-size: 13px;
  font-weight: 700;
}
.mobile-menu nav a:last-child { border: 0; }

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(34, 185, 194, .14), transparent 28%),
    linear-gradient(135deg, #f7fbfa 0%, #f4faf8 52%, #e6f4f1 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -270px;
  top: -270px;
  border: 1px solid rgba(13, 142, 150, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(34, 185, 194, .025), 0 0 0 180px rgba(34, 185, 194, .018);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(60px, 7vw, 110px);
  align-items: center;
  padding-block: 72px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.058em;
}
.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--teal-dark);
  font-style: italic;
}
.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: #496b6d;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: var(--ink-deep); box-shadow: 0 14px 35px rgba(34, 185, 194, .23); }
.button-primary:hover { background: #54cbd1; }
.button-secondary { border-color: rgba(9, 47, 50, .22); background: rgba(255,255,255,.72); color: var(--ink); }
.button-secondary:hover { border-color: var(--teal-dark); }
.button-dark { background: var(--ink); color: white; }
.button-light { background: white; color: var(--ink); }
.button-outline-light { border-color: rgba(255,255,255,.36); color: white; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
  color: #587577;
  font-size: 11px;
  font-weight: 700;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 10px;
}
.hero-visual { position: relative; min-height: 670px; }
.hero-photo {
  position: absolute;
  inset: 0 40px 35px 25px;
  overflow: hidden;
  border-radius: 260px 260px 30px 30px;
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,31,33,.5), transparent 35%);
}
.ai-image-label {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(4,31,33,.76);
  color: rgba(255,255,255,.82);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}
.hero-card {
  position: absolute;
  z-index: 2;
  min-width: 195px;
  padding: 17px 19px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 50px rgba(5, 52, 56, .16);
  backdrop-filter: blur(10px);
}
.hero-card span, .hero-card strong { display: block; }
.hero-card span { margin-bottom: 5px; color: var(--teal-dark); font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.hero-card strong { font-family: Georgia, serif; font-size: 16px; font-weight: 500; }
.hero-card-top { top: 13%; right: 0; }
.hero-card-bottom { left: 0; bottom: 15%; }
.hero-signature {
  position: absolute;
  z-index: 2;
  right: 68px;
  bottom: 58px;
  color: white;
  text-align: right;
}
.hero-signature span, .hero-signature small { display: block; }
.hero-signature span { font-family: Georgia, serif; font-size: 24px; font-style: italic; }
.hero-signature small { margin-top: 4px; color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }

.proof-ribbon { background: var(--ink-deep); color: white; }
.proof-ribbon-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.5vw, 48px);
  overflow: hidden;
}
.proof-ribbon span { flex: none; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.proof-ribbon i { flex: none; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

.signature-section {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 11vw, 155px) 0;
  background: var(--ink-deep);
  color: white;
}
.signature-section::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  left: -420px;
  top: -365px;
  border: 1px solid rgba(34,185,194,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(34,185,194,.025), 0 0 0 180px rgba(34,185,194,.014);
}
.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}
.signature-symbol {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
}
.signature-ring {
  position: absolute;
  border: 1px solid rgba(117,217,222,.28);
  border-radius: 50%;
}
.signature-ring-outer { inset: 2%; }
.signature-ring-inner { inset: 22%; border-style: dashed; animation: signature-spin 24s linear infinite; }
.signature-symbol::before,
.signature-symbol::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(117,217,222,.42), transparent);
}
.signature-symbol::before { left: 0; right: 0; height: 1px; }
.signature-symbol::after { top: 0; bottom: 0; width: 1px; transform: rotate(90deg); }
.signature-core {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink-deep);
  font-family: Georgia, serif;
  font-size: 46px;
  font-style: italic;
  box-shadow: 0 0 0 14px rgba(34,185,194,.08), 0 18px 50px rgba(0,0,0,.28);
}
.signature-word {
  position: absolute;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(4,31,33,.82);
  color: white;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.signature-word-human { left: 0; top: 48%; }
.signature-word-ai { right: 4%; top: 48%; color: #83e0e4; }
.signature-copy .eyebrow { color: #75d9de; }
.signature-copy h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.05em;
}
.signature-copy h2 em { display: block; margin-top: 10px; color: #75d9de; font-weight: 500; }
.signature-copy > p:not(.eyebrow) { max-width: 670px; margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.75; }
.signature-steps { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.signature-steps span { min-width: 132px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.78); font-size: 11px; }
.signature-steps b { margin-right: 9px; color: #75d9de; font-size: 9px; }
@keyframes signature-spin { to { transform: rotate(360deg); } }

.section { padding: 118px 0; }
.section-heading { margin-bottom: 54px; }
.split-heading, .media-heading, .testimonial-heading, .products-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px;
  align-items: end;
}
.section-heading h2,
.app-copy h2,
.about-copy h2,
.credentials-copy h2,
.private-copy h2,
.cta-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.045em;
}
.section-heading > p,
.section-heading > div + p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.business-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 8%, rgba(34,185,194,.09), transparent 22%),
    linear-gradient(180deg, var(--paper), #f9fcfb);
}
.business-section::after {
  content: "HUMAN-CENTERED AI";
  position: absolute;
  right: -32px;
  top: 42px;
  color: rgba(9,47,50,.035);
  font-size: clamp(58px, 9vw, 138px);
  font-weight: 900;
  letter-spacing: -.06em;
  pointer-events: none;
}
.business-section > .container { position: relative; z-index: 1; }
.business-story {
  display: grid;
  grid-template-columns: 1.36fr .64fr;
  min-height: 520px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink-deep);
  color: white;
  box-shadow: 0 30px 90px rgba(4,31,33,.14);
}
.business-story-visual {
  position: relative;
  min-width: 0;
  background: #061e21;
}
.business-story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(4,31,33,.5));
  pointer-events: none;
}
.business-story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.business-story-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}
.business-story-copy::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -130px;
  top: -120px;
  border: 1px solid rgba(117,217,222,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(117,217,222,.025);
}
.business-story-copy .eyebrow { color: #75d9de; }
.business-story-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.business-story-copy h3 em {
  display: block;
  margin-top: 8px;
  color: #75d9de;
  font-weight: 500;
}
.business-story-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.72;
}
.business-story-points {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}
.business-story-points span {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.business-story-points b { margin-right: 9px; color: #75d9de; }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.offer-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.offer-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.offer-card:hover { transform: translateY(-5px); border-color: rgba(13,142,150,.4); box-shadow: 0 24px 60px rgba(5,52,56,.08); }
.offer-card:hover::after { transform: scaleX(1); }
.offer-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.offer-meta span { color: var(--teal-dark); font-size: 11px; font-weight: 850; letter-spacing: .15em; }
.offer-meta small { color: #789092; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.offer-card h3 { max-width: 440px; margin: 56px 0 16px; font-family: Georgia, serif; font-size: 30px; font-weight: 500; letter-spacing: -.025em; }
.offer-card p { max-width: 540px; margin: 0; color: var(--muted); line-height: 1.72; }
.offer-card > a { margin-top: auto; padding-top: 28px; color: var(--teal-dark); font-size: 12px; font-weight: 850; }

.readiness-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(34,185,194,.2), transparent 24%),
    linear-gradient(145deg, #062629, var(--ink-deep));
  color: white;
}
.readiness-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: -410px;
  top: 11%;
  border: 1px solid rgba(117,217,222,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(117,217,222,.025), 0 0 0 180px rgba(117,217,222,.014);
}
.readiness-section > .container { position: relative; z-index: 1; }
.readiness-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(45px, 8vw, 115px);
  align-items: end;
  margin-bottom: 55px;
}
.readiness-intro .eyebrow { color: #75d9de; }
.readiness-intro h2 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.05em;
}
.readiness-intro h2 em { display: block; margin-top: 8px; color: #75d9de; font-weight: 500; }
.readiness-intro-copy { padding-bottom: 8px; }
.readiness-intro-copy strong {
  display: block;
  color: #75d9de;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.readiness-intro-copy p { margin: 18px 0 0; color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.75; }
.readiness-tool {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: #f7fbfa;
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0,0,0,.25);
}
.readiness-context {
  display: grid;
  grid-template-columns: .72fr 1.28fr 1fr;
  gap: 12px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
  background: white;
}
.readiness-context label {
  display: grid;
  gap: 9px;
  color: #527173;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.readiness-context input,
.readiness-context select,
.contact-fields input {
  width: 100%;
  min-height: 53px;
  padding: 0 15px;
  border: 1px solid rgba(9,47,50,.15);
  border-radius: 10px;
  outline: none;
  background: #f7fbfa;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.readiness-context input:focus,
.readiness-context select:focus,
.contact-fields input:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(34,185,194,.12);
}
.readiness-progress { padding: 25px 30px 5px; background: #f7fbfa; }
.readiness-progress > div { display: flex; justify-content: space-between; gap: 20px; }
.readiness-progress span, .readiness-progress strong { font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.readiness-progress span { color: var(--teal-dark); }
.readiness-progress strong { color: #71898a; }
.readiness-progress > i {
  height: 5px;
  display: block;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 99px;
  background: #dcebea;
}
.readiness-progress > i span { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--teal-dark), #5bd3d8); transition: width .3s ease; }
.assessment-dimensions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 25px 30px 30px; background: #e0eceb; }
.assessment-dimension { min-width: 0; margin: 0; padding: 28px; border: 0; background: white; }
.assessment-dimension legend {
  width: calc(100% - 30px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}
.assessment-dimension legend > span {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-deep);
  color: #75d9de;
  font-size: 9px;
  font-weight: 850;
}
.assessment-dimension legend strong { font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.assessment-dimension legend small { margin-left: auto; color: #789092; font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.assessment-question { margin-top: 27px; padding-top: 22px; border-top: 1px solid var(--line); }
.assessment-question > p { min-height: 66px; margin: 0; color: #496668; font-size: 12px; line-height: 1.6; }
.assessment-question > p > span { margin-right: 8px; color: var(--teal-dark); font-size: 9px; font-weight: 900; }
.rating-scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 15px; }
.rating-scale label { cursor: pointer; }
.rating-scale input { position: absolute; opacity: 0; pointer-events: none; }
.rating-scale label > span {
  min-height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid #ccdddd;
  border-radius: 8px;
  background: #f5faf9;
  color: #648082;
  font-size: 11px;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.rating-scale label:hover > span { transform: translateY(-2px); border-color: var(--teal); }
.rating-scale label.selected > span,
.rating-scale input:checked + span { border-color: var(--teal-dark); background: var(--teal); color: var(--ink-deep); box-shadow: 0 8px 20px rgba(34,185,194,.23); }
.rating-scale input:focus-visible + span { outline: 3px solid rgba(34,185,194,.32); outline-offset: 2px; }
.rating-labels { display: flex; justify-content: space-between; margin-top: 7px; color: #8ba0a1; font-size: 7px; text-transform: uppercase; }
.assessment-finish { padding: 32px; background: white; }
.contact-option { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--mint); }
.check-option { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; color: #5b7476; font-size: 11px; line-height: 1.55; }
.check-option input { width: 18px; height: 18px; flex: none; margin: 1px 0 0; accent-color: var(--teal-dark); }
.check-option strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 12px; }
.check-option a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.contact-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 16px; }
.privacy-check { margin: 20px 2px 0; }
.assessment-message { margin: 18px 0 0; color: #9b3c3c; font-size: 11px; font-weight: 700; }
.assessment-submit {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ink-deep);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.assessment-submit:not(:disabled):hover { transform: translateY(-2px); background: #60d5da; }
.assessment-submit:disabled { cursor: not-allowed; opacity: .42; }
.assessment-disclaimer { max-width: 760px; margin: 13px auto 0; color: #849798; font-size: 9px; line-height: 1.55; text-align: center; }
.assessment-result {
  scroll-margin-top: 105px;
  display: grid;
  grid-template-columns: .34fr .66fr;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(117,217,222,.26);
  border-radius: 24px;
  background: white;
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0,0,0,.27);
}
.result-score {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(34,185,194,.32), transparent 34%),
    var(--ink-deep);
  color: white;
  text-align: center;
}
.result-score::before, .result-score::after { content: ""; position: absolute; border: 1px solid rgba(117,217,222,.16); border-radius: 50%; }
.result-score::before { width: 330px; height: 330px; }
.result-score::after { width: 440px; height: 440px; }
.result-score span, .result-score strong, .result-score small { position: relative; z-index: 1; display: block; }
.result-score span { color: #75d9de; font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.result-score strong { margin-top: 18px; font-family: Georgia, serif; font-size: 128px; font-weight: 500; line-height: .8; }
.result-score small { margin-top: 22px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.result-analysis { padding: clamp(38px, 5vw, 70px); }
.result-analysis h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 62px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.result-analysis > p:not(.eyebrow) { max-width: 620px; margin: 17px 0 0; color: var(--muted); line-height: 1.7; }
.dimension-results { display: grid; gap: 13px; margin-top: 35px; }
.dimension-results > div { display: grid; grid-template-columns: 170px 1fr 30px; gap: 14px; align-items: center; }
.dimension-results span { color: #587274; font-size: 10px; font-weight: 750; }
.dimension-results i { height: 7px; overflow: hidden; border-radius: 99px; background: #e1edec; }
.dimension-results b { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--teal-dark), var(--teal)); }
.dimension-results strong { color: var(--teal-dark); font-size: 10px; }
.result-actions { margin-top: 38px; padding: 25px; border-radius: 14px; background: var(--mint); }
.result-actions > p { display: flex; justify-content: space-between; gap: 18px; margin: 0; }
.result-actions > p span { font-family: Georgia, serif; font-size: 20px; }
.result-actions > p small { color: #688183; font-size: 9px; }
.result-actions ol { margin: 20px 0 0; padding-left: 20px; color: #4f696b; }
.result-actions li { padding-left: 7px; font-size: 11px; line-height: 1.6; }
.result-actions li + li { margin-top: 8px; }
.result-footer { margin-top: 25px; }
.result-footer > div:first-child { color: #748b8c; font-size: 9px; }
.result-footer .button-row { margin-top: 18px; }
.result-footer .button-row > button {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.app-section {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: white;
}
.app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 45%, rgba(34,185,194,.18), transparent 30%);
}
.app-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(60px, 7vw, 110px);
  align-items: center;
}
.app-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.app-window {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #f6fbfa;
  box-shadow: 0 35px 90px rgba(0,0,0,.33);
  transform: perspective(1200px) rotateY(5deg) rotateX(2deg);
}
.app-toolbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid #dbe9e7;
  color: var(--ink);
  background: white;
}
.app-toolbar > span { width: 8px; height: 8px; border-radius: 50%; background: #d5e3e1; }
.app-toolbar strong { margin-left: auto; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.app-body { min-height: 480px; display: grid; grid-template-columns: 86px 1fr; }
.app-body aside {
  display: grid;
  grid-template-rows: auto repeat(4, 36px);
  justify-items: center;
  align-content: start;
  gap: 17px;
  padding-top: 28px;
  border-right: 1px solid #dbe9e7;
  background: #edf7f5;
}
.app-logo { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 14px; color: white; background: var(--teal-dark); font-size: 11px; font-weight: 900; }
.app-body aside i { width: 34px; height: 34px; border-radius: 11px; background: #d9ebe8; }
.app-body aside i.active { background: var(--teal); }
.app-dashboard { padding: clamp(28px, 5vw, 55px); color: var(--ink); }
.app-dashboard > small { color: var(--teal-dark); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.app-dashboard h3 { margin: 9px 0 8px; font-family: Georgia, serif; font-size: clamp(27px, 3vw, 40px); font-weight: 500; }
.app-dashboard > p { margin: 0; color: var(--muted); font-size: 12px; }
.app-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.app-metrics span { padding: 18px 14px; border: 1px solid #dbe9e7; border-radius: 14px; background: white; }
.app-metrics b, .app-metrics small { display: block; }
.app-metrics b { font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.app-metrics small { margin-top: 5px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.app-chart { height: 130px; display: flex; align-items: end; gap: 9px; margin-top: 22px; padding: 18px 18px 0; border-radius: 14px; background: white; }
.app-chart i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(to top, var(--teal-dark), #7edbd7); }
.app-chart i:nth-child(1) { height: 45%; }.app-chart i:nth-child(2) { height: 70%; }.app-chart i:nth-child(3) { height: 55%; }.app-chart i:nth-child(4) { height: 88%; }.app-chart i:nth-child(5) { height: 72%; }.app-chart i:nth-child(6) { height: 60%; }.app-chart i:nth-child(7) { height: 82%; }
.app-orbit { position: absolute; border: 1px solid rgba(34,185,194,.18); border-radius: 50%; }
.app-orbit-one { width: 560px; height: 560px; }
.app-orbit-two { width: 700px; height: 700px; }
.app-copy h2 { color: white; }
.app-copy .eyebrow { color: #78dbe0; }
.large-copy { color: inherit; font-size: 19px; line-height: 1.72; }
.app-copy > p:not(.eyebrow):not(.fine-print) { color: rgba(255,255,255,.67); }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.15); }
.check-list li { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.5; }
.check-list span { color: var(--teal); font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: white; font-size: 12px; font-weight: 850; }
.dark-link { margin-top: 28px; color: var(--ink); }
.fine-print { margin: 20px 0 0; color: rgba(255,255,255,.45); font-size: 10px; line-height: 1.55; }

.media-section {
  background:
    linear-gradient(135deg, rgba(34,185,194,.045) 0 1px, transparent 1px 100%),
    var(--sand);
  background-size: 44px 44px, auto;
}
.media-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.media-photo { position: relative; aspect-ratio: 3 / 2; margin: 0; overflow: hidden; border-radius: 14px; background: #d6e3e1; box-shadow: 0 18px 46px rgba(5,52,56,.08); }
.media-photo-large { grid-row: auto; }
.media-photo img { width: 100%; height: 100%; object-fit: contain; }
.media-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(4,31,33,.82);
  color: white;
  font-size: 10px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.video-card { overflow: hidden; border: 1px solid var(--line); background: white; }
.video-card > video, .youtube-wrap { width: 100%; display: block; background: #03191b; }
.video-card > video { height: auto; aspect-ratio: 16 / 9; object-fit: contain; }
.youtube-wrap { aspect-ratio: 16 / 9; }
.video-card > div:last-child { min-height: 115px; padding: 22px 24px; }
.video-card span { color: var(--teal-dark); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.video-card h3 { margin: 9px 0 0; font-family: Georgia, serif; font-size: 23px; font-weight: 500; line-height: 1.25; }
.video-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.32fr .68fr; align-items: stretch; }
.video-card-wide .youtube-wrap { aspect-ratio: 16 / 9; }
.youtube-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-card-wide > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: 38px; }

.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(65px, 8vw, 120px); align-items: center; }
.about-visual { position: relative; min-height: 590px; }
.about-visual > img { width: calc(100% - 30px); height: auto; aspect-ratio: 3 / 2; object-fit: contain; object-position: center; border-radius: 120px 10px 10px 10px; background: var(--mint); }
.about-small-photo { position: absolute; right: 0; bottom: 0; width: 55%; height: auto; aspect-ratio: 3 / 2; padding: 8px; background: white; box-shadow: var(--shadow); }
.about-small-photo img { width: 100%; height: 100%; object-fit: contain; }
.about-badge { position: absolute; left: -20px; bottom: 95px; width: 180px; padding: 22px; background: var(--teal); color: var(--ink-deep); }
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { font-family: Georgia, serif; font-size: 31px; font-style: italic; font-weight: 500; }
.about-badge span { margin-top: 5px; font-size: 9px; font-weight: 850; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.about-copy > p { color: var(--muted); line-height: 1.78; }
.about-copy .large-copy { color: var(--ink); }
.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 34px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.expertise-grid article { min-height: 145px; padding: 19px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expertise-grid span, .expertise-grid strong, .expertise-grid small { display: block; }
.expertise-grid span { margin-bottom: 24px; color: var(--teal-dark); font-size: 9px; font-weight: 850; }
.expertise-grid strong { font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.expertise-grid small { margin-top: 6px; color: var(--muted); font-size: 10px; line-height: 1.45; }

.credentials-section { background: var(--mint); }
.credentials-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.credentials-copy { position: sticky; top: 120px; }
.credentials-copy h2 { font-size: clamp(38px, 4.3vw, 58px); }
.credentials-copy > p:last-child { color: var(--muted); line-height: 1.75; }
.certificate-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.certificate-gallery figure { margin: 0; border: 1px solid var(--line); background: white; }
.certificate-gallery img { width: 100%; height: 380px; object-fit: contain; background: #f9fbfa; }
.certificate-wide {
  width: min(72%, 610px);
  grid-column: 1 / -1;
  justify-self: center;
}
.certificate-wehnert {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  background-color: #f9fbfa;
  background-image: url("/assets/certificate-wehnert-plaikner.jpg");
  background-repeat: no-repeat;
  background-position: center 57%;
  background-size: 100% auto;
}
.certificate-gallery figcaption { min-height: 62px; display: flex; align-items: center; padding: 14px; border-top: 1px solid var(--line); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.testimonial-section { background: var(--ink-deep); color: white; }
.testimonial-heading h2 { color: white; }
.testimonial-heading > p { color: rgba(255,255,255,.5); }
.testimonial-heading .eyebrow { color: #71d6db; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testimonial-card {
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2px;
  background: rgba(255,255,255,.035);
}
.stars { color: var(--warm); font-size: 13px; letter-spacing: .12em; }
.testimonial-card blockquote { margin: 34px 0; font-family: Georgia, serif; font-size: 20px; font-style: italic; line-height: 1.52; }
.testimonial-card footer { margin-top: auto; background: none; }
.testimonial-card footer strong, .testimonial-card footer span { display: block; }
.testimonial-card footer strong { color: white; font-size: 12px; }
.testimonial-card footer span { margin-top: 4px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.review-proof { margin-top: 20px; border: 1px solid rgba(255,255,255,.16); }
.review-proof summary { padding: 18px 22px; cursor: pointer; color: rgba(255,255,255,.75); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px; border-top: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.04); }
.review-gallery img { width: 100%; min-height: 260px; object-fit: contain; background: white; }

.products-section {
  background:
    radial-gradient(circle at 0 100%, rgba(34,185,194,.1), transparent 25%),
    var(--paper);
}
.products-heading > a { align-self: end; justify-self: end; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 850; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.product-card {
  min-height: 420px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 25px 60px rgba(5,52,56,.1); }
.product-visual { position: relative; min-height: 420px; overflow: hidden; background: var(--mint); }
.product-visual > img { width: 100%; height: 100%; object-fit: contain; }
.product-health > img { object-position: center; }
.product-image > img { object-fit: contain; object-position: center; padding: 24px; }
.product-circle, .product-factory { display: grid; place-items: center; }
.product-circle { background: linear-gradient(145deg, #0a3336, #1d7778); }
.product-factory { background: linear-gradient(145deg, #def4f2, #96d5d1); }
.product-mark { position: relative; width: 170px; height: 170px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.product-mark span { position: relative; z-index: 2; color: white; font-family: Georgia, serif; font-size: 52px; font-style: italic; }
.product-factory .product-mark { border-color: rgba(9,47,50,.22); }
.product-factory .product-mark span { color: var(--ink); }
.product-mark i { position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.product-mark i:last-child { inset: -18px; }
.product-copy { display: flex; flex-direction: column; padding: 34px; }
.product-copy > span { color: var(--teal-dark); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.product-copy h3 { margin: 22px 0 14px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; line-height: 1.18; letter-spacing: -.02em; }
.product-copy p { margin: 0; color: var(--muted); line-height: 1.68; }
.product-copy strong { margin-top: auto; padding-top: 25px; color: var(--teal-dark); font-size: 11px; }

.private-section { padding: 0; background: var(--teal); }
.private-grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.private-photo { min-height: 720px; display: grid; place-items: center; padding: 24px; background: var(--ink-deep); }
.private-photo img { width: 100%; height: auto; object-fit: contain; }
.private-copy { max-width: 650px; display: flex; flex-direction: column; justify-content: center; padding: clamp(65px, 8vw, 120px); }
.private-copy .eyebrow { color: var(--ink-deep); }
.private-copy h2 { color: var(--ink-deep); }
.private-copy > p { color: rgba(4,31,33,.72); line-height: 1.75; }
.private-formats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.private-formats span { padding: 14px 15px; border: 1px solid rgba(4,31,33,.18); color: var(--ink-deep); font-size: 11px; font-weight: 750; }
.private-copy .fine-print { color: rgba(4,31,33,.58); }

.calendar-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--ink-deep);
  color: white;
}
.calendar-section::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  left: -300px;
  top: -210px;
  border: 1px solid rgba(34,185,194,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(34,185,194,.025), 0 0 0 200px rgba(34,185,194,.015);
}
.calendar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
}
.calendar-copy .eyebrow { color: #75d9de; }
.calendar-copy h2 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.calendar-copy > p:not(.eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.75; }
.calendar-facts { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.calendar-facts span { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; }
.calendar-facts b { display: inline-block; width: 38px; color: #75d9de; font-size: 9px; }
.calendar-fallback { display: inline-flex; gap: 13px; margin-top: 25px; color: #75d9de; font-size: 11px; font-weight: 800; }
.calendar-fallback:hover { color: white; }
.calendar-shell {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 25px;
  background: white;
  box-shadow: 0 35px 90px rgba(0,0,0,.32);
}
.calendar-shell-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(9,47,50,.1);
  background: #f5fbfa;
  color: var(--ink);
}
.calendar-shell-head strong { font-size: 11px; }
.calendar-shell-head small { margin-left: auto; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.calendar-live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(34,185,194,.12); }
.calendar-frame { width: 100%; height: 740px; display: block; border: 0; background: white; }
.contact-direct { display: grid; gap: 7px; margin-top: 28px; color: rgba(255,255,255,.48); font-size: 10px; }
.contact-direct a:hover { color: white; }

.privacy-embed {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--ink-deep);
}
.privacy-placeholder {
  position: relative;
  min-height: inherit;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 34px;
  isolation: isolate;
}
.privacy-placeholder > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.privacy-placeholder-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 25%, rgba(34,185,194,.24), transparent 36%),
    linear-gradient(135deg, rgba(4,31,33,.9), rgba(4,31,33,.75));
}
.privacy-placeholder-copy {
  width: min(560px, 100%);
  text-align: center;
  color: white;
}
.privacy-provider {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(117,217,222,.35);
  border-radius: 999px;
  color: #8ce3e6;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.privacy-placeholder-copy strong { display: block; font-family: Georgia, serif; font-size: clamp(24px, 3vw, 38px); font-weight: 500; line-height: 1.15; }
.privacy-placeholder-copy p { margin: 15px auto 0; color: rgba(255,255,255,.67); font-size: 12px; line-height: 1.65; }
.privacy-placeholder-copy button {
  min-height: 48px;
  margin-top: 22px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: var(--ink-deep);
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease;
}
.privacy-placeholder-copy button:hover { transform: translateY(-2px); background: #6ed9dd; }
.privacy-placeholder-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 18px; margin-top: 16px; }
.privacy-placeholder-links a { color: rgba(255,255,255,.58); font-size: 9px; text-decoration: underline; text-underline-offset: 3px; }
.privacy-placeholder-links a:hover { color: white; }
.youtube-wrap .privacy-embed,
.youtube-consent-frame { width: 100%; height: 100%; border: 0; }
.calendar-consent { min-height: 740px; background: #f5fbfa; }
.calendar-consent .privacy-placeholder {
  background:
    radial-gradient(circle at 85% 10%, rgba(34,185,194,.2), transparent 24%),
    linear-gradient(145deg, #0a373a, var(--ink-deep));
}

.site-footer { padding: 64px 0 24px; background: #020f10; color: rgba(255,255,255,.55); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .8fr; gap: 60px; }
.footer-logo { width: 235px; height: auto; opacity: 1; }
.footer-grid p, .footer-grid a { margin: 10px 0 0; font-size: 11px; line-height: 1.55; }
.footer-grid > div:nth-child(2) a { display: block; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); align-content: start; gap: 0 24px; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.38);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-page {
  min-height: 70vh;
  padding: 96px 0 125px;
  background:
    radial-gradient(circle at 8% 4%, rgba(34,185,194,.14), transparent 21%),
    linear-gradient(180deg, #edf9f7 0, #f7fbfa 42%, #edf7f5 100%);
}
.legal-wrap { max-width: 1040px; }
.legal-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.legal-hero h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(52px, 8vw, 92px); font-weight: 500; line-height: .9; letter-spacing: -.06em; }
.legal-intro { max-width: 650px; margin: 25px 0 0; color: #4f6c6e; font-size: 17px; line-height: 1.7; }
.legal-status {
  min-width: 215px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 18px;
  background: var(--ink-deep);
  color: white;
  box-shadow: 0 24px 60px rgba(5,52,56,.15);
}
.legal-status span, .legal-status strong, .legal-status small { display: block; }
.legal-status span { color: #75d9de; font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.legal-status strong { margin-top: 17px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.legal-status small { margin-top: 5px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .08em; }
.legal-index {
  position: sticky;
  top: 96px;
  z-index: 4;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin-bottom: 34px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 35px rgba(5,52,56,.07);
  backdrop-filter: blur(14px);
}
.legal-index a {
  flex: none;
  padding: 10px 13px;
  border-radius: 999px;
  color: #466466;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}
.legal-index a:hover { background: var(--teal-pale); color: var(--teal-dark); }
.legal-wrap section {
  position: relative;
  margin: 0 0 16px;
  padding: 38px clamp(25px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 50px rgba(5,52,56,.045);
}
.legal-number { position: absolute; right: 28px; top: 26px; color: rgba(13,142,150,.28); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.legal-wrap h2 { max-width: calc(100% - 50px); margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(25px, 3.2vw, 34px); font-weight: 500; letter-spacing: -.03em; }
.legal-wrap h3 { margin: 29px 0 10px; color: var(--ink); font-size: 14px; }
.legal-wrap p, .legal-wrap li { color: #4f686a; line-height: 1.82; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap li + li { margin-top: 7px; }
.legal-wrap a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 28px; }
.legal-fact-grid article { min-height: 118px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--mint); }
.legal-fact-grid strong, .legal-fact-grid span { display: block; }
.legal-fact-grid strong { font-family: Georgia, serif; font-size: 17px; font-weight: 500; }
.legal-fact-grid span { margin-top: 9px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.legal-note { margin-top: 34px; padding: 26px 28px; border: 1px solid rgba(13,142,150,.2); border-left: 4px solid var(--teal); border-radius: 0 14px 14px 0; background: rgba(255,255,255,.82); font-size: 12px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-grid, .app-grid, .about-grid { gap: 55px; }
  .hero-visual { min-height: 600px; }
  .credentials-grid { grid-template-columns: 1fr; gap: 40px; }
  .credentials-copy { position: static; max-width: 700px; }
  .private-copy { padding: 70px 45px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 34px, 1200px); }
  .hero-grid, .app-grid, .about-grid, .signature-grid, .calendar-grid, .split-heading, .media-heading, .testimonial-heading, .products-heading { grid-template-columns: 1fr; }
  .readiness-intro, .assessment-result { grid-template-columns: 1fr; }
  .readiness-intro { gap: 26px; }
  .readiness-intro-copy { max-width: 680px; }
  .readiness-context { grid-template-columns: 1fr 1fr; }
  .readiness-context label:last-child { grid-column: 1 / -1; }
  .result-score { min-height: 360px; }
  .hero-grid { padding-top: 70px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-copy .button-row, .hero-proof { justify-content: center; }
  .hero-visual { width: min(610px, 100%); min-height: 690px; margin-inline: auto; }
  .proof-ribbon-inner { justify-content: flex-start; }
  .signature-symbol { width: min(390px, 100%); }
  .signature-copy { text-align: center; }
  .signature-copy > p:not(.eyebrow) { margin-inline: auto; }
  .signature-steps { justify-content: center; }
  .calendar-grid { max-width: 760px; }
  .split-heading, .media-heading, .testimonial-heading, .products-heading { gap: 22px; }
  .app-copy { max-width: 700px; }
  .media-mosaic { grid-template-columns: 1fr 1fr; }
  .media-photo-large { grid-column: 1 / -1; grid-row: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 285px; }
  .product-grid { grid-template-columns: 1fr; }
  .private-grid { grid-template-columns: 1fr; }
  .private-photo { min-height: 600px; }
  .private-copy { max-width: none; padding: 80px max(25px, calc((100vw - 760px) / 2)); }
  .products-heading > a { justify-self: start; }
}

@media (max-width: 680px) {
  .header-inner { min-height: 70px; }
  .brand-logo { width: 195px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; gap: 42px; padding-block: 55px 65px; }
  .hero h1 { font-size: clamp(49px, 15vw, 66px); }
  .hero-lead { font-size: 16px; }
  .button { width: 100%; }
  .hero-visual { min-height: 535px; }
  .hero-photo { inset: 0 18px 25px; border-radius: 180px 180px 24px 24px; }
  .hero-card { min-width: 155px; padding: 13px; }
  .hero-card strong { font-size: 13px; }
  .hero-card-top { right: 0; top: 10%; }
  .hero-card-bottom { left: 0; bottom: 14%; }
  .hero-signature { right: 40px; bottom: 43px; }
  .hero-signature span { font-size: 19px; }
  .hero-photo .ai-image-label { left: 50%; bottom: 12px; transform: translateX(-50%); white-space: nowrap; }
  .proof-ribbon-inner { min-height: 66px; gap: 17px; }
  .proof-ribbon span { font-size: 8px; }
  .section { padding: 78px 0; }
  .readiness-section { padding: 82px 0; }
  .readiness-intro h2 { font-size: clamp(42px, 13vw, 57px); }
  .readiness-context { grid-template-columns: 1fr; padding: 22px; }
  .readiness-context label:last-child { grid-column: auto; }
  .readiness-progress { padding: 22px 22px 4px; }
  .assessment-dimensions { grid-template-columns: 1fr; padding: 18px 22px 22px; }
  .assessment-dimension { padding: 24px 20px; }
  .assessment-question > p { min-height: 0; }
  .assessment-finish { padding: 24px 22px; }
  .contact-fields { grid-template-columns: 1fr; }
  .assessment-submit { min-height: 56px; border-radius: 18px; }
  .result-score { min-height: 310px; }
  .result-score strong { font-size: 105px; }
  .result-analysis { padding: 38px 24px; }
  .dimension-results > div { grid-template-columns: 118px 1fr 25px; gap: 9px; }
  .dimension-results span { font-size: 8px; }
  .result-actions > p { display: grid; }
  .result-footer .button-row > button { width: 100%; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .app-copy h2, .about-copy h2, .credentials-copy h2, .private-copy h2, .cta-inner h2 { font-size: clamp(38px, 11.5vw, 50px); }
  .offer-grid { grid-template-columns: 1fr; }
  .business-story { grid-template-columns: 1fr; min-height: 0; }
  .business-story-visual { aspect-ratio: 16 / 9; }
  .business-story-visual::after { background: linear-gradient(0deg, rgba(4,31,33,.32), transparent 42%); }
  .business-story-copy { padding: 38px 27px 42px; }
  .business-story-copy h3 { font-size: 38px; }
  .business-story-visual .ai-image-label { left: 12px; bottom: 11px; font-size: 7px; }
  .offer-card { min-height: 310px; padding: 27px; }
  .offer-card h3 { margin-top: 42px; }
  .app-visual { min-height: 430px; }
  .app-window { transform: none; border-radius: 16px; }
  .app-body { min-height: 340px; grid-template-columns: 48px 1fr; }
  .app-body aside { gap: 11px; padding-top: 18px; }
  .app-logo { width: 31px; height: 31px; margin-bottom: 5px; font-size: 8px; }
  .app-body aside i { width: 27px; height: 27px; }
  .app-dashboard { padding: 22px 14px; }
  .app-dashboard h3 { font-size: 25px; }
  .app-metrics { gap: 5px; }
  .app-metrics span { padding: 12px 7px; }
  .app-metrics b { font-size: 16px; }
  .app-chart { height: 95px; padding-inline: 10px; gap: 5px; }
  .media-mosaic { grid-template-columns: 1fr; }
  .media-photo, .media-photo-large { grid-column: auto; width: 100%; height: auto; aspect-ratio: 3 / 2; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card-wide { grid-column: auto; grid-template-columns: 1fr; }
  .video-card-wide > div:last-child { padding: 24px; }
  .about-visual { min-height: 430px; }
  .about-visual > img { width: calc(100% - 20px); height: auto; border-radius: 90px 8px 8px; }
  .about-small-photo { width: 54%; height: auto; }
  .about-badge { left: -5px; bottom: 70px; width: 145px; padding: 16px; }
  .about-badge strong { font-size: 26px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-grid article { min-height: 125px; }
  .expertise-grid span { margin-bottom: 17px; }
  .certificate-gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .certificate-gallery figure { flex: 0 0 82%; scroll-snap-align: start; }
  .certificate-gallery .certificate-wide { width: auto; flex-basis: 86%; }
  .review-gallery { grid-template-columns: 1fr; }
  .review-gallery img { min-height: 190px; }
  .product-card { grid-template-columns: 1fr; }
  .product-visual { min-height: 380px; }
  .product-copy { min-height: 320px; padding: 27px; }
  .private-photo { min-height: 0; padding: 18px; }
  .private-copy { padding: 70px 22px; }
  .private-formats { grid-template-columns: 1fr; }
  .signature-section { padding: 82px 0; }
  .signature-symbol { width: min(330px, 90vw); }
  .signature-copy h2 { font-size: clamp(40px, 12vw, 54px); }
  .signature-steps { display: grid; }
  .signature-steps span { min-width: 0; }
  .calendar-section { padding: 82px 0; }
  .calendar-copy { text-align: center; }
  .calendar-copy h2 { font-size: clamp(40px, 11.5vw, 52px); }
  .calendar-facts { text-align: left; }
  .calendar-frame { height: 690px; }
  .calendar-consent { min-height: 690px; }
  .privacy-placeholder { padding: 24px 18px; }
  .privacy-placeholder-copy strong { font-size: 27px; }
  .privacy-placeholder-links { display: grid; }
  .contact-direct { gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { justify-content: start; }
  .footer-bottom { display: grid; gap: 7px; }
  .legal-page { padding: 62px 0 90px; }
  .legal-hero { grid-template-columns: 1fr; gap: 28px; margin-bottom: 34px; }
  .legal-status { min-width: 0; }
  .legal-index { top: 78px; margin-inline: -5px; }
  .legal-wrap section { padding: 30px 22px; }
  .legal-fact-grid { grid-template-columns: 1fr; }
}

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


/* KI-Manager-Zertifizierung */
.certification-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgba(34,185,194,.18), transparent 27%),
    var(--ink-deep);
  color: white;
}
.certification-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 8vw, 118px); align-items: center; }
.certification-visual { position: relative; min-height: 680px; display: grid; place-items: center; }
.certification-visual::before {
  content: "";
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid rgba(113,214,219,.22);
  border-radius: 50%;
}
.certificate-preview {
  position: relative;
  z-index: 1;
  width: min(76%, 390px);
  display: block;
  padding: 11px;
  background: white;
  box-shadow: 0 32px 75px rgba(0,0,0,.36);
  transform: rotate(-2.5deg);
  transition: transform .25s ease;
}
.certificate-preview:hover { transform: rotate(-1deg) translateY(-5px); }
.certificate-preview img { width: 100%; height: auto; display: block; }
.certificate-preview > span {
  min-height: 45px;
  display: flex;
  align-items: center;
  padding: 9px 10px 0;
  color: var(--ink-deep);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.ki-manager-badge {
  position: absolute;
  z-index: 2;
  right: -8px;
  bottom: 70px;
  width: 240px;
  display: block;
  padding: 9px;
  border: 1px solid rgba(113,214,219,.45);
  border-radius: 32px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 55px rgba(0,0,0,.4);
  transition: transform .25s ease;
}
.ki-manager-badge:hover { transform: translateY(-5px); }
.ki-manager-badge img { width: 100%; height: auto; border-radius: 25px; }
.ki-manager-badge > span { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 7px 4px; color: var(--ink-deep); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.ki-manager-badge > span b { color: var(--teal-dark); font-size: 12px; }
.certification-copy .eyebrow { color: #71d6db; }
.certification-copy h2 { max-width: 690px; margin: 0; color: white; font-size: clamp(43px, 5vw, 67px); }
.certification-copy .large-copy { max-width: 680px; margin: 26px 0 0; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.75; }
.certification-facts { display: grid; grid-template-columns: .8fr .65fr 1.15fr; margin: 38px 0 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.certification-facts div { padding: 20px 18px 20px 0; }
.certification-facts div + div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.16); }
.certification-facts dt { color: #71d6db; font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.certification-facts dd { margin: 7px 0 0; color: white; font-family: Georgia, serif; font-size: 16px; line-height: 1.25; }
.certification-competencies { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.certification-competencies span { padding: 9px 12px; border: 1px solid rgba(113,214,219,.25); background: rgba(255,255,255,.045); color: rgba(255,255,255,.78); font-size: 9px; font-weight: 750; letter-spacing: .035em; }
.certification-actions { margin-top: 31px; }
.certification-button { background: var(--teal); color: var(--ink-deep); }
.certification-badge-link { color: #d9f7f8; }


@media (max-width: 720px) {
  .certification-feature { grid-template-columns: 1fr; gap: 58px; }
  .certification-visual { min-height: 560px; }
  .certificate-preview { width: min(73%, 330px); }
  .ki-manager-badge { right: -10px; bottom: 18px; width: 188px; border-radius: 26px; }
  .ki-manager-badge img { border-radius: 21px; }
  .ki-manager-badge > span { font-size: 7px; }
  .certification-copy h2 { font-size: clamp(40px, 12vw, 53px); }
  .certification-facts { grid-template-columns: 1fr; }
  .certification-facts div { padding: 17px 0; }
  .certification-facts div + div { padding-left: 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
}
