:root {
  --navy: #26384a;
  --navy-deep: #1b2a38;
  --blue: #28706b;
  --blue-soft: #dce5ef;
  --coral: #d2a04f;
  --coral-dark: #9b651b;
  --coral-soft: #f6ead2;
  --sea: #28706b;
  --sea-soft: #e5f0ed;
  --warm: #f7f2e9;
  --ink: #26384a;
  --muted: #566672;
  --line: #cbd5d8;
  --shadow: 0 22px 58px rgba(38, 56, 74, 0.14);
}

body {
  color: var(--ink);
  background: #fff;
}

.operator-bar,
.site-footer {
  background: var(--navy-deep);
}

.domain-mark {
  color: var(--navy-deep);
  font-weight: 800;
}

.domain-mark b,
.eyebrow,
.section-kicker,
.path-label,
.contact-links span {
  color: var(--coral-dark);
}

.main-nav .nav-cta,
.button-primary {
  color: #fff;
  background: var(--sea);
}

.main-nav .nav-cta:hover,
.button-primary:hover {
  color: #fff;
  background: var(--navy-deep);
}

.assistant-hero {
  padding: 62px 0 68px;
  background: var(--warm);
}

.assistant-hero::before {
  right: auto;
  left: 0;
  width: 51%;
  background: linear-gradient(145deg, var(--blue-soft), #edf2f5 75%);
}

.assistant-hero::after {
  right: 0;
  width: 44%;
  height: 8px;
  background: var(--coral);
}

.assistant-hero .hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(42px, 6vw, 84px);
}

.assistant-hero .hero-copy {
  grid-column: 2;
  grid-row: 1;
}

.assistant-hero h1 {
  max-width: 600px;
  color: var(--navy-deep);
  font-size: clamp(42px, 3.65vw, 53px);
  hyphens: auto;
  overflow-wrap: break-word;
}

.assistant-hero .hero-lead {
  color: #4f5d67;
}

.assistant-hero .hero-image {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 3 / 2;
  border: 8px solid #fff;
  border-radius: 22px 22px 92px 22px;
  box-shadow: var(--shadow);
}

.assistant-hero .hero-image::before {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  width: 33%;
  height: 8px;
  background: var(--coral);
}

.assistant-hero .hero-image img {
  object-position: 50% center;
}

.basis-note {
  position: relative;
  background: var(--navy);
}

.basis-note::before {
  position: absolute;
  top: 0;
  left: calc(50% - min(590px, 48%));
  width: 76px;
  height: 5px;
  background: var(--coral);
  content: "";
}

.basis-note .section-kicker {
  color: #f3cf8c;
}

.overview-section {
  padding: 96px 0 90px;
  background: #fff;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 108px);
}

.overview-heading {
  position: relative;
  padding: 6px 0 12px 27px;
}

.overview-heading::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--coral);
  content: "";
}

.overview-heading p:last-child,
.prep-copy p,
.conversation-copy p {
  color: var(--muted);
}

.folder-lines {
  border-top: 1px solid var(--line);
}

.folder-lines article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 23px 8px 23px 0;
  border-bottom: 1px solid var(--line);
}

.folder-lines article::after {
  position: absolute;
  top: -1px;
  right: 0;
  width: 58px;
  height: 5px;
  background: var(--blue-soft);
  content: "";
}

.folder-lines article:nth-child(2)::after {
  width: 88px;
  background: var(--sea-soft);
}

.folder-lines article:nth-child(3)::after {
  width: 118px;
  background: var(--coral-soft);
}

.folder-lines article > span {
  padding-top: 4px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.folder-lines h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.folder-lines p {
  margin: 0;
  color: var(--muted);
}

.prep-section {
  padding: 88px 0;
  background: var(--sea-soft);
}

.prep-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
}

.prep-copy {
  padding-left: 25px;
  border-left: 1px solid rgba(40, 112, 107, 0.42);
}

.prep-image {
  aspect-ratio: 3 / 2;
  border: 8px solid #fff;
  border-radius: 76px 18px 18px 18px;
  box-shadow: var(--shadow);
}

.prep-image img {
  object-position: 48% center;
}

.assistant-task-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: var(--warm);
}

.assistant-task-section::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(210, 160, 79, 0.16);
  border-radius: 50%;
  content: "";
}

.assistant-task-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
}

.task-heading p:last-child {
  color: var(--muted);
}

.task-path {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.task-path li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.task-path li > span {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 850;
}

.task-path strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-deep);
}

.task-path p {
  margin: 0;
  color: var(--muted);
}

.conversation-section {
  padding: 94px 0;
  background: var(--blue-soft);
}

.conversation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.conversation-image {
  aspect-ratio: 3 / 2;
  border: 8px solid #fff;
  border-radius: 18px 78px 18px 18px;
  box-shadow: var(--shadow);
}

.conversation-image img {
  object-position: 50% center;
}

.conversation-copy {
  position: relative;
  padding-right: 24px;
}

.conversation-copy::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 92px;
  background: var(--coral);
  content: "";
}

.conversation-copy .button {
  margin-top: 8px;
}

.support-section {
  background: var(--sea);
}

.support-section .section-kicker {
  color: #f3cf8c;
}

.support-list > div {
  border-color: rgba(255, 255, 255, 0.22);
}

.property-section {
  background: #fff;
}

.property-intro {
  border-right-color: var(--line);
}

.seller-path a {
  color: var(--coral-dark);
}

.buyer-path a {
  color: var(--sea);
}

.career-link {
  background: var(--coral-soft);
  border-block-color: rgba(210, 160, 79, 0.4);
}

.career-layout .button-outline {
  border-color: var(--navy);
}

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

.trust-layout p:last-child,
.trust-facts dd {
  color: #4d626f;
}

.trust-facts,
.trust-facts > div {
  border-color: rgba(38, 56, 74, 0.25);
}

.form-section {
  background: var(--warm);
}

#kontaktformular {
  border-top-color: var(--coral);
}

.intent-options label[data-selected="true"] {
  background: var(--sea-soft);
  border-color: var(--sea);
}

.intent-options input,
.consent input {
  accent-color: var(--sea);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(40, 112, 107, 0.16);
}

.privacy-note {
  color: #245650;
  background: var(--sea-soft);
  border-left-color: var(--sea);
}

@media (max-width: 1060px) {
  .assistant-hero .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
    gap: 38px;
  }

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

@media (max-width: 920px) {
  .assistant-hero h1 {
    font-size: 40px;
  }

  .overview-layout,
  .prep-layout,
  .assistant-task-layout,
  .conversation-layout {
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .assistant-hero {
    padding: 30px 0 44px;
  }

  .assistant-hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 31%;
  }

  .assistant-hero .hero-layout {
    display: flex;
    gap: 24px;
  }

  .assistant-hero .hero-copy {
    display: contents;
  }

  .assistant-hero h1 {
    max-width: 680px;
    font-size: clamp(36px, 7vw, 47px);
  }

  .assistant-hero .hero-image {
    aspect-ratio: 3 / 2;
    border-radius: 18px 18px 54px 18px;
  }

  .overview-section,
  .prep-section,
  .assistant-task-section,
  .conversation-section {
    padding: 70px 0;
  }

  .overview-layout,
  .prep-layout,
  .assistant-task-layout,
  .conversation-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .prep-copy,
  .overview-heading {
    padding-left: 21px;
  }

  .prep-copy {
    order: -1;
  }

  .conversation-copy {
    order: -1;
    padding-right: 20px;
  }

  .prep-image,
  .conversation-image {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 620px) {
  .domain-mark {
    font-size: 17px;
  }

  .folder-lines article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .assistant-hero h1 {
    font-size: clamp(33px, 9.3vw, 38px);
  }

  .assistant-hero .hero-image,
  .prep-image,
  .conversation-image {
    border-width: 6px;
  }

  .basis-note::before {
    left: 16px;
  }
}

@media (max-width: 350px) {
  .domain-mark {
    font-size: 13.5px;
  }

  .assistant-hero h1 {
    font-size: 31px;
  }

  .folder-lines article::after {
    width: 44px;
  }

  .folder-lines article:nth-child(2)::after {
    width: 62px;
  }

  .folder-lines article:nth-child(3)::after {
    width: 78px;
  }
}
