:root {
  --green: #159a5b;
  --green-dark: #0f7d49;
  --green-soft: #e8f6ef;
  --ink: #111827;
  --text: #263241;
  --muted: #667085;
  --line: #dce5e0;
  --soft: #f6fbf9;
  --blue: #587cda;
  --coral: #e9585f;
  --amber: #f0a641;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 8px;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 32px rgba(21, 154, 91, 0.24);
}

.button-secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.button-light {
  color: var(--green-dark);
  background: #fff;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100svh - 84px);
  padding-top: 62px;
}

.hero h1,
.section-heading h2,
.privacy-copy h2,
.waitlist-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.hero p,
.section-heading p,
.privacy-copy p,
.waitlist-section p {
  margin: 24px 0 0;
  max-width: 610px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 62px;
  color: var(--text);
  font-weight: 700;
}

.stars {
  color: var(--green);
  font-size: 24px;
  letter-spacing: 3px;
}

.hero-visual {
  position: relative;
  height: 680px;
  min-width: 0;
}

.phone {
  position: absolute;
  border: 10px solid #111827;
  border-radius: 38px;
  background: #111827;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-top {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 22px;
  transform: translateX(-50%);
  background: #111827;
  border-radius: 999px;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 46px 18px 18px;
  background: linear-gradient(
    180deg,
    rgba(21, 154, 91, 0.96),
    rgba(13, 123, 70, 0.96) 33%,
    #f9fbfa 34%
  );
}

.phone-main {
  left: 35%;
  top: 20px;
  z-index: 4;
  width: 250px;
  height: 542px;
}

.phone-calendar {
  left: 5%;
  top: 142px;
  z-index: 2;
  width: 212px;
  height: 456px;
  transform: rotate(-5deg);
}

.phone-list {
  right: 0;
  top: 142px;
  z-index: 3;
  width: 212px;
  height: 456px;
  transform: rotate(4deg);
}

.small-screen {
  background: #fbfcfc;
}

.app-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.avatar-stack {
  display: flex;
}

.avatar-stack i {
  width: 22px;
  height: 22px;
  margin-left: -6px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--amber);
}

.avatar-stack i:nth-child(2) {
  background: var(--coral);
}

.avatar-stack i:nth-child(3) {
  background: var(--blue);
}

.app-card {
  margin-bottom: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-card-title,
.mini-title {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.timeline-row,
.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  color: var(--text);
  font-size: 12px;
}

.timeline-row b {
  color: var(--green-dark);
}

.check-row input {
  accent-color: var(--green);
}

.floating-plus {
  position: absolute;
  right: 22px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font-size: 30px;
  box-shadow: 0 16px 28px rgba(21, 154, 91, 0.32);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.calendar-grid b {
  display: grid;
  place-items: center;
  height: 24px;
  color: var(--ink);
  border-radius: 999px;
}

.calendar-grid .active-day {
  color: #fff;
  background: var(--green);
}

.mini-event {
  height: 36px;
  margin-top: 14px;
  border-radius: 8px;
  background: var(--green-soft);
}

.mini-event.blue {
  background: #e9eefc;
}

.mini-event.coral {
  background: #fdecee;
}

.privacy-float {
  position: absolute;
  right: 24px;
  bottom: 58px;
  z-index: 5;
  width: 190px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.privacy-float strong,
.privacy-float span {
  display: block;
}

.privacy-float strong {
  color: var(--ink);
  font-size: 16px;
}

.privacy-float span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-strip article {
  display: flex;
  gap: 16px;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-icon,
.feature-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 23px;
  font-weight: 900;
}

.trust-strip h2,
.feature-list h3,
.price-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.trust-strip p,
.feature-list p,
.price-card p,
.faq-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.privacy-copy h2,
.waitlist-section h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}

.section-heading.compact {
  display: block;
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact p {
  margin-right: auto;
  margin-left: auto;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 30px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: start;
}

.feature-icon {
  width: 56px;
  height: 56px;
  font-size: 14px;
}

.task-preview {
  min-height: 620px;
  background:
    radial-gradient(
      circle at 80% 55%,
      rgba(21, 154, 91, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #f8fbfa, #fff);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.task-phone {
  position: relative;
  width: 310px;
  height: 610px;
  padding: 58px 24px 24px;
  background: #fff;
  border: 10px solid #111827;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.task-screen h3 {
  margin: 12px 0 24px;
  color: var(--ink);
  font-size: 24px;
}

.task-status {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.task-screen dl {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
}

.task-screen dl div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.task-screen dt {
  color: var(--muted);
}

.task-screen dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.progress-line {
  height: 8px;
  margin-bottom: 24px;
  background: #e8edf1;
  border-radius: 999px;
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 58%;
  height: 100%;
  background: var(--green);
}

.task-screen ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-screen li,
.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
}

.task-screen li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  content: "○";
  color: var(--muted);
  font-weight: 900;
}

.task-screen li.done::before,
.check-list li::before {
  content: "✓";
  color: var(--green);
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 62px;
  align-items: center;
}

.privacy-section {
  background: linear-gradient(90deg, #fff 0 50%, var(--soft) 50% 100%);
  max-width: none;
}

.privacy-section > * {
  max-width: 560px;
}

.privacy-copy {
  justify-self: end;
  padding-left: 24px;
}

.europe-card {
  justify-self: start;
  width: min(520px, calc(100% - 24px));
  min-height: 430px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-orbit {
  position: relative;
  width: 310px;
  height: 310px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(21, 154, 91, 0.13),
      transparent 42%
    ),
    #f7faf8;
}

.country {
  position: absolute;
  display: block;
  background: rgba(21, 154, 91, 0.45);
  border-radius: 45% 55% 48% 52%;
}

.country.de {
  top: 98px;
  left: 150px;
  width: 46px;
  height: 62px;
}

.country.fr {
  top: 154px;
  left: 104px;
  width: 72px;
  height: 66px;
}

.country.it {
  top: 190px;
  left: 176px;
  width: 42px;
  height: 86px;
  transform: rotate(-20deg);
}

.lock {
  position: absolute;
  right: 60px;
  top: 98px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.1);
}

.europe-card p {
  margin: -42px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.pricing-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.price-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card.highlighted {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.price-card.highlighted h3,
.price-card.highlighted p {
  color: #fff;
}

.price {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
}

.price span {
  color: currentColor;
  font-size: 16px;
  font-weight: 700;
}

.price-card .button {
  width: 100%;
  margin-top: 28px;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
  background: var(--soft);
  border-radius: 8px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.waitlist-form input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.waitlist-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 154, 91, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 56px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.sales-page {
  overflow: hidden;
}

.legal-page {
  max-width: 720px;
  padding-top: 48px;
  padding-bottom: 64px;
}

.legal-page h1 {
  margin-top: 20px;
}

.legal-page h2 {
  margin-top: 36px;
  font-size: 19px;
}

.legal-page p,
.legal-page ul {
  color: var(--ink);
  line-height: 1.65;
}

.legal-page .check-list {
  margin-top: 12px;
}

.legal-placeholder-notice {
  padding: 14px 16px;
  border-radius: 8px;
  background: #fdf1e8;
  color: var(--ink);
  font-size: 14px;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 72px;
  align-items: center;
  min-height: 660px;
}

.sales-hero-copy h1 {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.sales-hero-copy > p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.back-link {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.sales-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.sales-trust span {
  padding: 9px 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.sales-summary {
  padding: 34px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sales-summary strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.sales-summary .check-list {
  margin-top: 20px;
}

.sales-offer {
  max-width: none;
  background: var(--soft);
}

.sales-offer > * {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

.plan-label {
  align-self: flex-start;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.highlighted .plan-label {
  color: #fff;
}

.plan-features {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.plan-features li::before {
  margin-right: 9px;
  color: var(--green);
  content: "✓";
}

.highlighted .plan-features,
.highlighted .plan-features li::before {
  color: #fff;
}

.sales-disclaimer {
  margin-top: 54px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.sales-reassurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
}

.sales-reassurance h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
}

.sales-reassurance p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.order-header-note,
.order-back {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.order-header-note {
  justify-self: center;
}

.order-back {
  justify-self: end;
  color: var(--green-dark);
}

.order-page {
  min-height: calc(100svh - 180px);
  background: var(--soft);
}

.order-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding-top: 64px;
  padding-bottom: 38px;
}

.order-intro h1 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
}

.order-intro p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.order-steps {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}

.order-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-steps span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.order-steps .is-done,
.order-steps .is-current {
  color: var(--green-dark);
}

.order-steps .is-done span,
.order-steps .is-current span {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 28px;
  align-items: start;
  padding-top: 0;
}

.order-form {
  display: grid;
  gap: 18px;
}

.order-panel,
.order-summary {
  margin: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-panel legend {
  float: left;
  width: 100%;
  margin-bottom: 22px;
  padding: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.plan-option {
  clear: both;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.plan-option + .plan-option {
  margin-top: 12px;
}

.plan-option:has(input:checked) {
  background: var(--green-soft);
  border-color: var(--green);
}

.plan-option input,
.consent-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
}

.plan-option strong,
.plan-option small {
  display: block;
}

.plan-option strong,
.plan-option b {
  color: var(--ink);
}

.plan-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.plan-option b {
  text-align: right;
  white-space: nowrap;
}

.order-fields {
  clear: both;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-fields label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.order-fields label small {
  color: var(--muted);
  font-weight: 600;
}

.order-fields input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.order-fields input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 154, 91, 0.12);
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 22px;
  color: var(--text);
  font-size: 13px;
}

.privacy-note,
.summary-legal {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.order-feedback {
  min-height: 24px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.order-feedback.is-error {
  color: var(--coral);
}

.order-submit {
  justify-self: start;
}

.order-summary {
  position: sticky;
  top: 104px;
}

.summary-label {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-summary h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 26px;
}

.summary-price {
  margin: 14px 0 24px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
}

.summary-price span {
  font-size: 14px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.order-footer {
  background: #fff;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .order-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .hero,
  .feature-layout,
  .privacy-section,
  .waitlist-section,
  .section-heading,
  .sales-hero,
  .sales-reassurance,
  .order-intro,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-visual {
    height: 620px;
  }

  .phone-main {
    left: 50%;
    transform: translateX(-50%);
  }

  .phone-calendar {
    left: 0;
  }

  .phone-list {
    right: 0;
  }

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

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .privacy-section {
    background: var(--soft);
  }

  .privacy-copy,
  .europe-card {
    justify-self: center;
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .sales-hero {
    min-height: auto;
  }

  .sales-reassurance .button {
    justify-self: start;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 21px;
  }

  .section-pad {
    padding: 64px 18px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .sales-hero-copy h1 {
    font-size: 42px;
  }

  .hero p,
  .section-heading p,
  .privacy-copy p,
  .waitlist-section p {
    font-size: 16px;
  }

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

  .hero-visual {
    height: 560px;
    overflow: hidden;
  }

  .phone-main {
    width: 232px;
    height: 510px;
  }

  .phone-calendar,
  .phone-list {
    width: 178px;
    height: 390px;
    opacity: 0.76;
  }

  .phone-calendar {
    left: -70px;
  }

  .phone-list {
    right: -70px;
  }

  .privacy-float {
    right: 16px;
    bottom: 18px;
  }

  .trust-strip {
    margin-right: 18px;
    margin-left: 18px;
    padding: 0;
  }

  .trust-strip article {
    padding: 20px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
  }

  .task-preview {
    min-height: 560px;
  }

  .task-phone {
    width: 278px;
    height: 560px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .price-card,
  .waitlist-form {
    padding: 24px;
  }

  .waitlist-section {
    border-radius: 0;
  }

  .sales-trust {
    display: grid;
  }

  .sales-summary {
    padding: 24px;
  }

  .sales-reassurance .button {
    width: 100%;
  }

  .order-header {
    grid-template-columns: 1fr auto;
  }

  .order-header-note {
    display: none;
  }

  .order-intro {
    padding-top: 44px;
  }

  .order-steps {
    gap: 10px;
  }

  .order-steps li {
    gap: 5px;
  }

  .order-fields {
    grid-template-columns: 1fr;
  }

  .plan-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .plan-option b {
    grid-column: 2;
    text-align: left;
  }

  .order-panel,
  .order-summary {
    padding: 22px;
  }

  .order-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ── Kuendigungsseite (Paragraf 312k BGB) ─────────────────────────────────── */

/* display:grid schlaegt das hidden-Attribut -- ohne diese Regel steht das
   Grundfeld auch bei ordentlicher Kuendigung offen. */
.kuendigung-block[hidden],
[data-kuendigung-erfolg][hidden] {
  display: none;
}

.kuendigung-block {
  clear: both;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.kuendigung-block small,
.kuendigung-nachweis span small {
  color: var(--muted);
  font-weight: 600;
}

.kuendigung-block textarea,
.kuendigung-nachweis textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  line-height: 1.55;
  outline: none;
  resize: vertical;
}

.kuendigung-block textarea:focus,
.kuendigung-nachweis textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 154, 91, 0.12);
}

.kuendigung-nachweis {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.kuendigung-nachweis textarea {
  background: var(--soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.kuendigung-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.kuendigung-hinweis {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Honigtopf: fuer Menschen unsichtbar, fuer Bots ein verlockendes Pflichtfeld.
   Kein display:none -- das ueberspringen viele Bots gezielt. */
.honigtopf {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Beim Drucken bleibt nur der Nachweis stehen. */
@media print {
  .site-header,
  .site-footer,
  .back-link,
  .kuendigung-aktionen {
    display: none;
  }

  .kuendigung-nachweis textarea {
    height: auto;
    min-height: 380px;
    border: none;
    background: #fff;
  }
}

/* Der Kuendigungslink muss nach Paragraf 312k BGB leicht auffindbar sein --
   deshalb im Footer bewusst staerker gesetzt als die uebrigen Rechtslinks. */
.site-footer .footer-kuendigen {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
