:root {
  --ink: #20352f;
  --ink2: #34544a;
  --paper: #f4f1e9;
  --paper2: #fbfaf6;
  --white: #fff;
  --line: #d9ddd5;
  --muted: #68776f;
  --green: #4f795f;
  --green2: #9ebe9f;
  --greenSoft: #e7efe6;
  --lime: #d8e7b9;
  --amber: #e6b764;
  --amberSoft: #fbefd8;
  --coral: #d86d58;
  --coralSoft: #f8e5df;
  --sky: #dce9eb;
  --shadow: 0 24px 70px rgba(32, 53, 47, 0.14);
  --shadowSoft: 0 10px 30px rgba(32, 53, 47, 0.09);
  --r: 22px;
  --rs: 14px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #fbfaf6, var(--paper));
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
.topline {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.header {
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
  top: 25px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(32, 53, 47, 0.1);
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.logo {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--ink);
  position: relative;
}
.logo:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  background: var(--green2);
  border-radius: 70% 20% 70% 20%;
  left: 8px;
  top: 7px;
  transform: rotate(-28deg);
}
.logo:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 22px;
  background: #fff;
  left: 19px;
  top: 9px;
  transform: rotate(28deg);
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-size: 16px;
}
.brand small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.mode {
  display: flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(32, 53, 47, 0.07);
}
.mode button {
  border: 0;
  background: transparent;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}
.mode button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(32, 53, 47, 0.09);
}
.head-cta,
.primary,
.secondary,
.ghost {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}
.head-cta,
.primary {
  background: var(--ink);
  color: #fff;
}
.head-cta {
  padding: 12px 17px;
  border-radius: 999px;
  font-size: 12px;
}
.primary,
.secondary {
  padding: 14px 18px;
  border-radius: 12px;
}
.primary:hover,
.head-cta:hover {
  background: #315c4c;
}
.secondary {
  background: #fff;
  border: 1px solid var(--line);
}
.ghost {
  background: transparent;
  color: var(--green);
  padding: 10px 0;
}
.app {
  padding-top: 97px;
}
.view {
  display: none;
  min-height: calc(100vh - 97px);
}
.view.active {
  display: block;
}
.shell {
  max-width: 1480px;
  margin: auto;
  display: grid;
  grid-template-columns: 208px minmax(0, 1fr);
}
.side {
  position: sticky;
  top: 97px;
  height: calc(100vh - 97px);
  border-right: 1px solid rgba(32, 53, 47, 0.1);
  padding: 34px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  color: #8b948f;
  padding: 11px 8px;
  border-radius: 10px;
  cursor: pointer;
}
.nav span {
  font-size: 10px;
  letter-spacing: 0.1em;
}
.nav b {
  font-size: 12px;
}
.nav.active {
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
}
.nav.active span {
  color: var(--coral);
}
.pages {
  min-width: 0;
}
.page {
  display: none;
  padding: 54px clamp(28px, 5vw, 80px) 100px;
  min-height: calc(100vh - 97px);
}
.page.active {
  display: block;
  animation: in 0.35s ease;
}
@keyframes in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.eyebrow,
.mini {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--coral);
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 25px;
}
h1 em {
  font-style: normal;
  color: var(--green);
}
h2 {
  font-size: clamp(36px, 4.6vw, 65px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
h3 {
  letter-spacing: -0.025em;
}
.lead {
  font-size: 19px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 760px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 230px);
}
.actions {
  display: flex;
  gap: 10px;
  margin: 30px 0;
}
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(32, 53, 47, 0.14);
  max-width: 830px;
  margin-top: 38px;
}
.proof div {
  padding: 18px 20px 0;
  border-right: 1px solid rgba(32, 53, 47, 0.12);
}
.proof div:first-child {
  padding-left: 0;
}
.proof div:last-child {
  border: 0;
}
.proof strong,
.proof span {
  display: block;
}
.proof strong {
  font-size: 19px;
}
.proof span {
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 5px;
}
.video-stack {
  position: relative;
  height: 575px;
}
.video-frame {
  position: absolute;
  inset: 26px 25px 55px;
  border: 9px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-badge {
  position: absolute;
  left: 46px;
  top: 46px;
  background: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  z-index: 4;
  box-shadow: var(--shadowSoft);
}
.float {
  position: absolute;
  z-index: 5;
  background: #fff;
  border: 1px solid rgba(32, 53, 47, 0.08);
  border-radius: 15px;
  box-shadow: var(--shadowSoft);
  padding: 13px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 230px;
}
.float i {
  font-style: normal;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: var(--greenSoft);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--green);
}
.float b,
.float small {
  display: block;
}
.float b {
  font-size: 12px;
}
.float small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.f1 {
  left: 0;
  top: 105px;
}
.f2 {
  right: -3px;
  top: 285px;
}
.f3 {
  left: 16px;
  bottom: 8px;
}
.system-note {
  position: absolute;
  right: 20px;
  bottom: 32px;
  z-index: 7;
  background: var(--ink);
  color: #fff;
  padding: 13px 15px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 11px;
}
.system-note b,
.system-note small {
  display: block;
}
.system-note small {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 4px;
}
.heading {
  max-width: 1040px;
  margin-bottom: 34px;
}
.heading p:last-child {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 780px;
}
.source-card {
  background: #fff;
  border: 1px solid rgba(32, 53, 47, 0.1);
  border-radius: var(--r);
  box-shadow: var(--shadowSoft);
  overflow: hidden;
}
.source-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.source-top h3 {
  font-size: 25px;
  margin: 8px 0 4px;
}
.source-top p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
.source-tag {
  align-self: flex-start;
  background: var(--amberSoft);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}
.clip {
  position: relative;
  border-radius: 17px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16/9;
}
.clip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clip-info {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(7px);
  padding: 9px 11px;
  border-radius: 10px;
  font-size: 10px;
}
.intake-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  padding: 0 16px 16px;
}
.intake-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px;
}
.intake-card h4,
.summary-card h4 {
  margin: 0 0 10px;
}
.intake-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.empty-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 15px;
}
.empty-inputs div {
  background: var(--paper2);
  border: 1px dashed #cbd1ca;
  padding: 11px;
  border-radius: 10px;
}
.empty-inputs span,
.empty-inputs b {
  display: block;
}
.empty-inputs span {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
}
.empty-inputs b {
  font-size: 12px;
  margin-top: 5px;
}
.summary-card {
  background: var(--ink);
  color: #fff;
}
.summary-card p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.summary-list {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}
.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 10px;
  font-size: 11px;
}
.summary-list span {
  color: rgba(255, 255, 255, 0.62);
}
.analyse {
  margin-top: 15px;
  background: var(--amber);
  color: var(--ink);
  width: 100%;
}
.progress-box {
  margin-top: 16px;
  display: none;
}
.progress-box.show {
  display: block;
}
.progress-line {
  height: 6px;
  background: #e8ebe5;
  border-radius: 999px;
  overflow: hidden;
}
.progress-line i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  transition: width 0.55s ease;
}
.progress-step {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}
.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 16px;
}
.evidence-board {
  background: #fff;
  border: 1px solid rgba(32, 53, 47, 0.1);
  border-radius: var(--r);
  padding: 17px;
  box-shadow: var(--shadowSoft);
}
.frame-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.frame {
  position: relative;
  aspect-ratio: 9/13;
  border-radius: 13px;
  overflow: hidden;
  background: #ddd;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame:after {
  content: attr(data-label);
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: rgba(21, 31, 27, 0.72);
  color: #fff;
  padding: 8px;
  border-radius: 9px;
  font-size: 9px;
  line-height: 1.35;
}
.signal-list {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}
.signal {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 11px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 12px 2px;
}
.signal:first-child {
  border-top: 0;
}
.signal i {
  font-style: normal;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: var(--greenSoft);
  display: grid;
  place-items: center;
}
.signal b,
.signal small {
  display: block;
}
.signal b {
  font-size: 12px;
}
.signal small {
  font-size: 10px;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 3px;
}
.conf {
  font-size: 9px;
  font-weight: 900;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--greenSoft);
  color: var(--green);
}
.dossier {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  padding: 23px;
  box-shadow: var(--shadow);
}
.score {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.score h3 {
  font-size: 27px;
  margin: 9px 0 4px;
}
.score p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}
.score-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--amber) 0 84%, rgba(255, 255, 255, 0.12) 84%);
  position: relative;
}
.score-ring:after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.score-ring b {
  position: relative;
  z-index: 2;
  font-size: 23px;
}
.score-bars {
  margin: 20px 0;
}
.score-row {
  display: grid;
  grid-template-columns: 105px 1fr 35px;
  gap: 8px;
  align-items: center;
  margin: 10px 0;
}
.score-row span,
.score-row b {
  font-size: 10px;
}
.score-row span {
  color: rgba(255, 255, 255, 0.65);
}
.bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: var(--green2);
  width: var(--w);
}
.missing {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  padding: 14px;
}
.missing h4 {
  font-size: 12px;
  margin: 0 0 9px;
}
.missing ul {
  padding-left: 18px;
  margin: 0;
}
.missing li {
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.recommend {
  margin-top: 13px;
  background: var(--amberSoft);
  color: #725221;
  border-radius: 12px;
  padding: 13px;
  font-size: 11px;
  line-height: 1.45;
}
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.package {
  background: #fff;
  border: 1px solid rgba(32, 53, 47, 0.11);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadowSoft);
  display: flex;
  flex-direction: column;
}
.package.recommended {
  border: 2px solid var(--green);
  transform: translateY(-7px);
}
.package-media {
  height: 170px;
  position: relative;
  overflow: hidden;
}
.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-media:after {
  content: "KI-Zukunftsvisualisierung auf Basis des Kundenvideos";
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(32, 53, 47, 0.78);
  color: #fff;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 8px;
}
.package-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.package-label span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: var(--coral);
}
.recommended .package-label em {
  font-style: normal;
  font-size: 8px;
  background: var(--greenSoft);
  color: var(--green);
  padding: 5px 7px;
  border-radius: 999px;
  font-weight: 900;
}
.package h3 {
  font-size: 23px;
  margin: 12px 0 8px;
}
.price {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.package small {
  font-size: 10px;
  color: var(--muted);
}
.package ul {
  padding: 0;
  list-style: none;
  margin: 17px 0;
}
.package li {
  font-size: 11px;
  line-height: 1.45;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.package li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}
.package .secondary {
  margin-top: auto;
  width: 100%;
}
.plant-section {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--greenSoft), #fff8eb);
  border-radius: 20px;
  padding: 22px;
}
.plant-section h3 {
  font-size: 25px;
  margin: 8px 0 8px;
}
.plant-section > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.plants {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.plant {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(32, 53, 47, 0.09);
  border-radius: 13px;
  padding: 14px;
}
.plant i {
  display: block;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--green2);
  margin-bottom: 12px;
  position: relative;
}
.plant i:before,
.plant i:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 11px;
  border-radius: 70% 20% 70% 20%;
  background: var(--green);
  top: 8px;
  left: 8px;
  transform: rotate(-30deg);
}
.plant i:after {
  top: 19px;
  left: 14px;
  transform: rotate(30deg);
  background: #6f9a76;
}
.plant b,
.plant span {
  display: block;
}
.plant b {
  font-size: 11px;
}
.plant span {
  font-size: 9px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 5px;
}
.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 16px;
}
.review-card,
.send-card {
  background: #fff;
  border: 1px solid rgba(32, 53, 47, 0.1);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadowSoft);
}
.review-card h3,
.send-card h3 {
  font-size: 25px;
}
.checks {
  display: grid;
  gap: 8px;
}
.check {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.check:first-child {
  border-top: 0;
}
.check input {
  width: 18px;
  height: 18px;
}
.check b,
.check small {
  display: block;
}
.check b {
  font-size: 12px;
}
.check small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.check em {
  font-size: 9px;
  font-style: normal;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--greenSoft);
  color: var(--green);
  font-weight: 900;
}
.send-card {
  background: var(--ink);
  color: #fff;
}
.send-card p {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}
.send-preview {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  padding: 14px;
  margin: 16px 0;
}
.send-preview div {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}
.send-preview div:first-child {
  border-top: 0;
}
.send-preview span {
  color: rgba(255, 255, 255, 0.6);
}
.send-card .primary {
  width: 100%;
  background: var(--amber);
  color: var(--ink);
}
.customer {
  background: var(--paper2);
}
.customer-hero {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  background: #111;
}
.customer-hero video {
  width: 100%;
  height: 430px;
  object-fit: cover;
  opacity: 0.68;
}
.customer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 35, 30, 0.88),
    rgba(22, 35, 30, 0.18)
  );
  display: flex;
  align-items: center;
  padding: 50px clamp(25px, 7vw, 110px);
  color: #fff;
}
.customer-overlay > div {
  max-width: 690px;
}
.customer-overlay h1 {
  font-size: clamp(45px, 6vw, 78px);
}
.customer-overlay p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.customer-main {
  max-width: 1180px;
  margin: auto;
  padding: 38px 22px 80px;
}
.customer-intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 16px;
  margin-bottom: 22px;
}
.customer-intro article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.customer-intro h3 {
  font-size: 24px;
}
.customer-intro p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.fact-grid div {
  padding: 11px;
  background: var(--paper);
  border-radius: 10px;
}
.fact-grid span,
.fact-grid b {
  display: block;
}
.fact-grid span {
  font-size: 8px;
  text-transform: uppercase;
  color: var(--muted);
}
.fact-grid b {
  font-size: 11px;
  margin-top: 5px;
}
.customer .packages {
  margin-top: 20px;
}
.booking-bar {
  position: sticky;
  bottom: 15px;
  max-width: 980px;
  margin: 30px auto 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(13px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.booking-bar b,
.booking-bar span {
  display: block;
}
.booking-bar b {
  font-size: 12px;
}
.booking-bar span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  background: rgba(20, 30, 26, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal.open {
  display: flex;
}
.modal-card {
  background: var(--paper2);
  border-radius: 22px;
  max-width: 720px;
  width: 100%;
  padding: 27px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}
.modal-top {
  display: flex;
  justify-content: space-between;
}
.modal-top button {
  border: 0;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}
.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 18px 0;
}
.slot input {
  position: absolute;
  opacity: 0;
}
.slot span {
  display: block;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px;
  background: #fff;
  cursor: pointer;
}
.slot b,
.slot small {
  display: block;
}
.slot b {
  font-size: 12px;
}
.slot small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}
.slot input:checked + span {
  border-color: var(--green);
  background: var(--greenSoft);
  box-shadow: 0 0 0 2px rgba(79, 121, 95, 0.12);
}
.confirm {
  display: none;
  background: var(--greenSoft);
  color: var(--green);
  font-size: 12px;
  padding: 12px;
  border-radius: 10px;
  margin-top: 12px;
}
.pager {
  position: fixed;
  z-index: 60;
  bottom: 20px;
  left: calc(208px + 50%);
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(13px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadowSoft);
}
.pager button {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.pager span {
  font-size: 10px;
  color: var(--muted);
}
@media (max-width: 1080px) {
  .shell {
    grid-template-columns: 1fr;
  }
  .side {
    display: none;
  }
  .pager {
    left: 50%;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .video-stack {
    order: -1;
    max-width: 700px;
    width: 100%;
    margin: auto;
  }
  .evidence-layout,
  .review-layout {
    grid-template-columns: 1fr;
  }
  .packages {
    grid-template-columns: 1fr;
  }
  .package.recommended {
    transform: none;
  }
  .plants {
    grid-template-columns: 1fr 1fr;
  }
  .customer-intro {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .header {
    padding: 0 15px;
  }
  .head-cta {
    display: none;
  }
  .mode button {
    padding: 8px 10px;
  }
  .page {
    padding: 35px 17px 80px;
  }
  .hero {
    min-height: auto;
  }
  .video-stack {
    height: 390px;
  }
  .video-frame {
    inset: 15px 5px 45px;
  }
  .f1 {
    top: 48px;
  }
  .f2 {
    top: 195px;
  }
  .f3 {
    bottom: 0;
  }
  .proof {
    grid-template-columns: 1fr 1fr;
  }
  .proof div:nth-child(2) {
    border-right: 0;
  }
  .video-grid,
  .intake-grid {
    grid-template-columns: 1fr;
  }
  .frame-grid {
    grid-template-columns: 1fr 1fr;
  }
  .plants {
    grid-template-columns: 1fr 1fr;
  }
  .customer-overlay {
    padding: 30px 20px;
  }
  .customer-hero,
  .customer-hero video {
    height: 500px;
  }
  .booking-bar {
    align-items: stretch;
    flex-direction: column;
  }
  .slots {
    grid-template-columns: 1fr;
  }
  .pager {
    position: static;
    transform: none;
    margin: 15px auto;
    width: max-content;
  }
  .empty-inputs {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 43px;
  }
  .lead {
    font-size: 16px;
  }
  .actions {
    flex-direction: column;
  }
  .actions button {
    width: 100%;
  }
  .video-stack {
    height: 350px;
  }
  .float {
    min-width: 175px;
    padding: 10px;
  }
  .float i {
    display: none;
  }
  .f2 {
    right: 0;
  }
  .system-note {
    display: none;
  }
  .frame-grid,
  .plants {
    grid-template-columns: 1fr;
  }
  .score {
    display: block;
  }
  .score-ring {
    margin-top: 15px;
  }
  .header .brand small {
    display: none;
  }
}

.view-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.view-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}
.view-toggle button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}
.package-media.toggle-scope {
  position: relative;
}
.package .open-detail {
  display: block;
  margin: 6px 0 10px;
  font-size: 11px;
  color: var(--green);
  text-align: left;
}
.package .open-detail:hover {
  text-decoration: underline;
}
.package .package-choice.active-choice,
.select-package.active-choice {
  background: var(--greenSoft);
  border-color: var(--green);
  color: var(--green);
}
#detail-view {
  background: var(--paper2);
}
.detail-panel {
  display: none;
}
.detail-panel.active {
  display: block;
}
.detail-page {
  max-width: 1180px;
  margin: auto;
  padding: 42px 22px 90px;
}
.detail-head {
  max-width: 860px;
  margin-bottom: 24px;
}
.detail-head h1 {
  font-size: clamp(42px, 5vw, 72px);
  margin-bottom: 16px;
}
.detail-head h1 em {
  font-style: normal;
  color: var(--green);
}
.back-link {
  margin-bottom: 14px;
}
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
}
.detail-media,
.detail-summary,
.detail-card {
  background: #fff;
  border: 1px solid rgba(32, 53, 47, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadowSoft);
}
.detail-media {
  padding: 18px;
}
.detail-stage {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4/3;
  background: #dde2dc;
}
.detail-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-caption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}
.detail-summary {
  padding: 24px;
  position: sticky;
  top: 120px;
}
.package-label.large {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.package-label.large span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: var(--coral);
}
.package-label.large em {
  font-style: normal;
  font-size: 9px;
  background: var(--greenSoft);
  color: var(--green);
  padding: 6px 8px;
  border-radius: 999px;
  font-weight: 900;
}
.price-xl {
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 8px 0;
}
.detail-summary small {
  font-size: 10px;
  color: var(--muted);
}
.detail-summary p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 15px 0 20px;
}
.detail-cta {
  display: grid;
  gap: 10px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.detail-card {
  padding: 20px;
}
.detail-card.wide {
  grid-column: 1/-1;
}
.detail-card h4 {
  font-size: 21px;
  margin-bottom: 10px;
}
.detail-card ul {
  padding-left: 18px;
  margin: 0;
}
.detail-card li {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin: 6px 0;
}
@media (max-width: 980px) {
  .detail-hero {
    grid-template-columns: 1fr;
  }
  .detail-summary {
    position: static;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-card.wide {
    grid-column: auto;
  }
}

/* Production flow additions */
.brand-wordmark {
  width: 118px;
  height: auto;
  display: block;
}
.topline-business {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
  cursor: pointer;
}
.brand-vertical {
  border-left: 1px solid rgba(32, 53, 47, 0.18);
  padding-left: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 109, 88, 0.42);
  outline-offset: 3px;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.modal-card {
  max-height: calc(100vh - 36px);
  overflow-y: auto;
}
.modal-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.demo-picker {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin: 20px 0;
}
.field-label,
.select-field > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.demo-date-grid,
.business-date-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.date-choice {
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.date-choice b,
.date-choice small {
  display: block;
}
.date-choice b {
  font-size: 12px;
}
.date-choice small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}
.date-choice.active {
  border-color: var(--green);
  background: var(--greenSoft);
  box-shadow: 0 0 0 2px rgba(79, 121, 95, 0.12);
}
.select-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  padding: 0 13px;
  color: var(--ink);
}
.full-width {
  width: 100%;
}
.confirm {
  line-height: 1.55;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 60px);
  border-top: 1px solid rgba(32, 53, 47, 0.1);
  background: var(--paper2);
  color: var(--muted);
  font-size: 11px;
}
.site-footer a {
  color: var(--ink);
  font-weight: 800;
}
.business-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  margin: auto;
  padding: 32px;
  border: 0;
  border-radius: 24px;
  background: var(--paper2);
  color: var(--ink);
  box-shadow: 0 34px 110px rgba(20, 30, 26, 0.38);
  overflow-y: auto;
}
.business-dialog::backdrop {
  background: rgba(20, 30, 26, 0.72);
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}
.business-intro {
  max-width: 620px;
  padding-right: 35px;
}
.business-intro h2 {
  margin: 8px 0 12px;
  font-size: clamp(32px, 5vw, 46px);
}
.business-intro p {
  color: var(--muted);
  line-height: 1.6;
}
.business-progress {
  display: flex;
  align-items: center;
  margin: 24px 0;
}
.business-progress i {
  height: 1px;
  flex: 1;
  background: var(--line);
}
.business-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.business-progress-step span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6e8e4;
  font-size: 11px;
  font-weight: 900;
}
.business-progress-step b {
  font-size: 12px;
}
.business-progress-step.active,
.business-progress-step.done {
  color: var(--ink);
}
.business-progress-step.active span,
.business-progress-step.done span {
  background: var(--ink);
  color: #fff;
}
.business-panel {
  display: none;
}
.business-panel.active {
  display: block;
  animation: in 0.3s ease;
}
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.business-grid > label,
.business-goals,
.business-contact {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.business-grid label small {
  font-weight: 500;
}
.business-grid input,
.business-grid textarea,
.business-grid select {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  padding: 13px;
  color: var(--ink);
}
.business-grid input.invalid,
.business-grid textarea.invalid,
.business-grid select.invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 2px rgba(216, 109, 88, 0.12);
}
.business-grid .wide {
  grid-column: 1 / -1;
}
.business-goals,
.business-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}
.business-goals legend,
.business-contact legend {
  width: 100%;
  margin-bottom: 2px;
}
.business-goals input,
.business-contact input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
}
.business-goals label,
.business-contact label {
  cursor: pointer;
}
.business-goals span,
.business-contact span {
  display: block;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
}
.business-goals input:checked + span,
.business-contact input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.business-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.business-actions.end {
  justify-content: flex-end;
}
.business-privacy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.business-privacy a {
  color: var(--green);
  font-weight: 800;
}
.form-error {
  min-height: 20px;
  margin: 10px 0 0;
  color: #a63e2f;
  font-size: 12px;
}
.business-success {
  padding: 28px 8px 8px;
  text-align: center;
}
.business-success[hidden] {
  display: none;
}
.success-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 25px;
}
.business-success h3 {
  margin: 9px 0;
  font-size: 31px;
}
.business-success > p {
  max-width: 590px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}
.success-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}
.success-summary div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
}
.success-summary span,
.success-summary b {
  display: block;
}
.success-summary span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.success-summary b {
  margin-top: 6px;
  font-size: 12px;
}
.success-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 720px) {
  .brand-wordmark {
    width: 98px;
  }
  .brand-vertical {
    display: none;
  }
  .demo-picker,
  .business-grid {
    grid-template-columns: 1fr;
  }
  .business-grid .wide {
    grid-column: auto;
  }
  .business-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
    padding: 25px 18px;
    border-radius: 18px;
  }
  .business-date-grid,
  .demo-date-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .business-progress-step b {
    display: none;
  }
  .business-actions,
  .success-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .business-actions .ghost {
    order: 2;
  }
  .success-summary {
    grid-template-columns: 1fr;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.privacy-page {
  min-height: 100vh;
  background: var(--paper2);
}
.privacy-document {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 88px;
  overflow-wrap: anywhere;
}
.privacy-document h1 {
  margin: 12px 0 22px;
  font-size: clamp(42px, 7vw, 72px);
}
.privacy-document h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.privacy-document p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.privacy-document strong {
  color: var(--ink);
}
.privacy-document a {
  color: var(--green);
  font-weight: 800;
}
.privacy-back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 480px) {
  .privacy-document h1 {
    font-size: 36px;
  }
}
