@font-face {
  font-family: "Sora";
  src: url("assets/webfonts/Sora-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/webfonts/Sora-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/webfonts/inter-v20-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/webfonts/inter-v20-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/webfonts/inter-v20-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/webfonts/inter-v20-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff5a3d;
  --orange-dark: #e8462d;
  --navy: #0f172a;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --light: #f3f4f6;
  --cream: #fff6ef;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5.8vw, 5.4rem);
}

.hero-title span {
  display: block;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(-104%);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.09);
}

.page-header {
  position: sticky;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--slate);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: var(--cream);
  color: var(--navy);
}

.site-nav .nav-cta {
  margin-left: 10px;
  background: var(--navy);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px max(20px, calc((100vw - 1120px) / 2)) 72px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.94) 37%, rgba(255, 246, 239, 0.58) 53%, rgba(255, 255, 255, 0.08) 78%), url("assets/images/hero-desktop.jpg");
  background-size: cover;
  background-position: left center;
  overflow: hidden;
}

.hero-content {
  width: min(50%, 620px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 610px;
  margin-top: 24px;
  color: var(--slate);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: 700 0.98rem/1 "Inter", Arial, Helvetica, sans-serif;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(255, 90, 61, 0.26);
}

.button.primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 42px rgba(255, 90, 61, 0.32);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.button.secondary:hover {
  border-color: rgba(255, 90, 61, 0.42);
  background: var(--cream);
}

.button.whatsapp {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(255, 90, 61, 0.22);
}

.button.whatsapp:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 42px rgba(255, 90, 61, 0.3);
}

.button.full {
  width: 100%;
}

.section {
  padding: 96px max(20px, calc((100vw - 1120px) / 2));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  max-width: 790px;
  margin-top: 18px;
  color: var(--slate);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 740px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fffdfb);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(255, 90, 61, 0.28);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
  transform: translateY(-3px);
}

.number-mark {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
}

.feature-card p,
.included-grid p,
.example-points p,
.legal-card p {
  margin-top: 12px;
  color: var(--slate);
}

.legal-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--slate);
}

.legal-card li::marker {
  color: var(--orange);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  background: var(--cream);
}

.split-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--slate);
  font-size: 1.08rem;
}

.slim-visual {
  padding: 14px;
  border: 1px solid rgba(255, 90, 61, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.slim-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.soft-section,
.pricing-section {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.included-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.included-card:hover {
  background: linear-gradient(180deg, #ffffff, var(--cream));
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.line-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visibility-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 90, 61, 0.14), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #111b32 58%, #0b1224 100%);
  color: var(--white);
}

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

.visibility-section::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 1px, transparent 1.8px);
  background-size: 74px 74px, 74px 74px, 148px 148px;
  background-position: 0 0, 0 0, 16px 20px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
}

.visibility-section::after {
  opacity: 0.2;
  background:
    linear-gradient(128deg, transparent 0 28%, rgba(255, 255, 255, 0.16) 28.2%, transparent 28.8% 100%),
    linear-gradient(38deg, transparent 0 58%, rgba(255, 90, 61, 0.18) 58.2%, transparent 58.8% 100%),
    radial-gradient(circle at 77% 34%, rgba(255, 255, 255, 0.36) 0 2px, transparent 2.6px),
    radial-gradient(circle at 88% 58%, rgba(255, 90, 61, 0.38) 0 2px, transparent 2.8px),
    radial-gradient(circle at 62% 72%, rgba(255, 255, 255, 0.26) 0 2px, transparent 2.8px);
  background-size: 100% 100%;
}

.visibility-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 52px;
  align-items: start;
}

.visibility-copy h2 {
  color: var(--white);
}

.visibility-copy .eyebrow {
  color: var(--orange);
  font-size: 0.78rem;
}

.visibility-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.visibility-points {
  display: grid;
  gap: 14px;
}

.visibility-points article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.visibility-points span {
  color: var(--orange);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.visibility-points h3 {
  margin-top: 6px;
  color: var(--white);
}

.visibility-points p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.pricing-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
  padding-top: 16px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.price-card.featured {
  border-color: rgba(255, 90, 61, 0.6);
  background: linear-gradient(180deg, #ffffff 0%, #fff6ef 100%);
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.18);
  transform: translateY(-12px);
}

.recommended {
  position: absolute;
  top: -20px;
  right: -8px;
  z-index: 2;
  width: max-content;
  margin: 0;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  transform: rotate(8deg);
}

.price-head p {
  margin-top: 10px;
  color: var(--slate);
}

.price {
  margin: 28px 0 20px;
}

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

.price strong {
  display: block;
  margin: 4px 0 2px;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.monthly {
  margin: -8px 0 18px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 90, 61, 0.1);
  color: var(--navy);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

.fine-print {
  margin-top: auto;
  padding-top: 36px;
  color: var(--slate);
  font-size: 0.92rem;
  font-style: italic;
}

.price-card.featured .fine-print {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--slate);
}

.principle-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  background: var(--white);
}

.principle-copy p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 18px;
  color: var(--slate);
  font-size: 1.08rem;
}

.principle-visual {
  align-self: center;
}

.principle-visual img {
  width: min(100%, 560px);
  height: auto;
  margin-left: auto;
  border-radius: var(--radius);
}

.contact-section {
  background-image:
    linear-gradient(90deg, rgba(255, 246, 239, 0.92) 0%, rgba(255, 255, 255, 0.78) 44%, rgba(255, 255, 255, 0.5) 100%),
    url("assets/images/anfrage-desktop.jpg");
  background-size: cover;
  background-position: center;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
  padding: 48px 52px;
  border: 1px solid rgba(255, 90, 61, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
  color: var(--slate);
  font-size: 1.08rem;
}

.contact-actions {
  flex-direction: column;
}

.contact-card {
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.contact-method {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-method:hover {
  border-color: rgba(15, 23, 42, 0.22);
  background: #fbfcfe;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.contact-method small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-method strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.method-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--cream);
  color: var(--orange);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.whatsapp-method {
  border-color: rgba(15, 23, 42, 0.22);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.whatsapp-method small,
.whatsapp-method strong {
  color: var(--white);
}

.whatsapp-method .method-icon {
  background: var(--orange);
  color: var(--white);
}

.whatsapp-method:hover {
  border-color: rgba(15, 23, 42, 0.28);
  background: #17213a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.24);
}

.contact-hint {
  color: var(--slate);
  font-size: 0.94rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.28fr 0.76fr 0.96fr;
  gap: 38px;
  padding: 58px max(20px, calc((100vw - 1120px) / 2)) 34px;
  border-top: 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 -10px 26px rgba(255, 90, 61, 0.22);
}

.site-footer > * {
  position: relative;
}

.footer-logo img {
  width: 228px;
  height: auto;
}

.footer-brand p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav {
  padding-left: 20%;
}

.footer-legal {
  position: relative;
  padding-left: 34px;
}

.footer-legal::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.footer-note {
  grid-column: 1 / -1;
  align-self: end;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.legal-hero {
  max-width: 860px;
  margin: 0;
  padding: 136px max(20px, calc((100vw - 1120px) / 2)) 50px;
  text-align: left;
}

.legal-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.7rem, 5.2vw, 4.65rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.legal-hero p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--slate);
  font-size: 1.08rem;
}

.legal-section {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 20px 90px;
  gap: 16px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.legal-card h2 {
  font-size: 1.4rem;
}

.legal-card a {
  color: var(--orange);
  font-weight: 700;
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.has-reveal .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  :root {
    --container: min(928px, calc(100vw - 32px));
  }

  .hero {
    min-height: 720px;
    padding-top: 118px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(255, 246, 239, 0.38) 66%, rgba(255, 255, 255, 0.04) 100%), url("assets/images/hero-tablet.jpg");
    background-position: center right;
  }

  .hero-content {
    width: min(54%, 540px);
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .feature-grid.three,
  .pricing-grid,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }

  .split-section,
  .visibility-inner,
  .principle-section,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .principle-visual img {
    width: min(100%, 620px);
    margin-right: auto;
    margin-left: auto;
  }

  .contact-box {
    padding: 34px;
  }

  .contact-actions {
    max-width: 460px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-nav {
    padding-left: 0;
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --container: calc(100vw - 24px);
    --header-height: 64px;
  }

  body {
    font-size: 15px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 9px 20px;
  }

  .brand {
    max-width: calc(100vw - 92px);
  }

  .brand img {
    width: 176px;
    height: auto;
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 20px 18px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
  }

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

  .site-nav a {
    min-height: 48px;
    justify-content: center;
  }

  .hero {
    min-height: 1140px;
    align-items: start;
    padding: 104px 20px 42px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 246, 239, 0.22) 52%, rgba(255, 255, 255, 0) 68%), url("assets/images/hero-mobile.jpg");
    background-position: center -70px;
  }

  .contact-section {
    background-image:
      linear-gradient(180deg, rgba(255, 246, 239, 0.94) 0%, rgba(255, 255, 255, 0.76) 46%, rgba(255, 255, 255, 0.56) 100%),
      url("assets/images/anfrage-mobile.jpg");
    background-position: center top;
  }

  .hero-content {
    width: 100%;
    max-width: 520px;
  }

  h1 {
    font-size: clamp(2.24rem, 11vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 24px;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: min(180px, calc((100vw - 52px) / 2));
    text-align: center;
  }

  .button {
    width: auto;
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .button.full {
    width: fit-content;
    min-width: 180px;
  }

  .section {
    padding: 64px 20px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .feature-grid.three,
  .pricing-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    gap: 34px;
  }

  .feature-card,
  .price-card,
  .included-card,
  .legal-card {
    padding: 24px;
  }

  .slim-visual {
    padding: 10px;
  }

  .contact-box {
    padding: 24px;
  }

  .contact-card {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .principle-visual img {
    width: min(100%, 520px);
  }

  .contact-method {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 72px;
    padding: 12px;
  }

  .method-icon {
    width: 40px;
    height: 40px;
  }

  .contact-method strong {
    font-size: 0.98rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }

  .footer-logo img {
    width: 210px;
  }

  .footer-legal {
    padding-left: 0;
  }

  .footer-legal::before {
    display: none;
  }

  .legal-hero {
    padding-top: 104px;
    text-align: left;
  }

  .legal-hero h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .legal-section {
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-reveal .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
