/* ============================================================
   Weventis Page-Specific Styles
   ============================================================ */


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: var(--space-8) var(--space-12);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
  min-height: 600px;
}

.hero__title {
  margin-bottom: var(--space-5);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 1.6vw, 1.75rem);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  line-height: 1.43;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  max-width: 640px;
}

.hero__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Hero-spezifische Button-Variante: rounded-corner (statt pill), größer, bolder */
.hero__actions .btn {
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-bold);
  padding: 1rem 2.25rem;
  min-height: 56px;
  border-radius: 13px;
  min-width: 240px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 557 / 896;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}

.hero__dome {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  aspect-ratio: 544 / 459;
  background-color: var(--color-primary-soft);
  -webkit-mask: url('/public/img/hero-dome.svg') no-repeat center / contain;
          mask: url('/public/img/hero-dome.svg') no-repeat center / contain;
  z-index: 1;
}

.hero__image-wrap {
  position: absolute;
  inset: 3% 4% 2% 4%;
  border-radius: 50% / 38%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(73, 15, 115, 0.18);
  z-index: 2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__doodle {
  position: absolute;
  top: 38%;
  right: -32%;
  width: 92%;
  aspect-ratio: 635 / 545;
  background-color: var(--color-accent);
  -webkit-mask: url('/public/img/hero-w-doodle.svg') no-repeat center / contain;
          mask: url('/public/img/hero-w-doodle.svg') no-repeat center / contain;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero { padding-block: var(--space-6) var(--space-10); }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
    min-height: 0;
  }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; max-width: 340px; }
  .hero__doodle { right: -22%; width: 70%; }
}

@media (max-width: 480px) {
  .hero__visual { max-width: 260px; }
  .hero__actions .btn { width: 100%; min-width: 0; }
}


/* ============================================================
   STEPS
   ============================================================ */
.steps {
  padding-block: var(--space-12);
}

.steps__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-10);
  align-items: center;
}

.steps__visual {
  position: relative;
  aspect-ratio: 862 / 1223;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
}

.steps__dome {
  position: absolute;
  top: 0;
  left: 13.2%;
  width: 86.8%;
  height: 93.4%;
  background: var(--color-primary);
  border-radius: 9999px;
  z-index: 1;
}

.steps__phantom {
  position: absolute;
  top: 12.3%;
  left: 38.1%;
  width: 48.7%;
  aspect-ratio: 420 / 800;
  background: var(--color-surface);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.steps__mockup {
  position: absolute;
  top: 19.9%;
  left: 0;
  width: 48.7%;
  aspect-ratio: 420 / 800;
  background: var(--color-surface);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: var(--space-6) var(--space-4);
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.steps__mockup-title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  text-align: center;
  margin-bottom: var(--space-5);
}

.steps__guests {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
  justify-content: center;
}

.steps__guest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.steps__guest-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(73, 15, 115, 0.15);
  background: var(--color-surface-alt);
  margin-bottom: 4px;
}

.steps__guest-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps__guest-name {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

.steps__guest-email {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.steps__title {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.steps__intro {
  font-size: var(--fs-body-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 560px;
  line-height: var(--lh-snug);
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
}

.steps__num {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 3rem;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  min-width: 2.5ch;
}

.steps__item-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2);
}

.steps__item-desc {
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

@media (max-width: 960px) {
  .steps__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .steps__visual { max-width: 420px; }
}

@media (max-width: 480px) {
  .steps__num { font-size: 2.25rem; }
  .steps__item { gap: var(--space-3); }
  .steps__guest-avatar { width: 64px; height: 64px; }
}


/* ============================================================
   OCCASIONS — Header only (Title "Eine App für jeden Anlass"),
   sitzt auf Beige, direkt vor der Bowl.
   ============================================================ */
.occasions {
  padding-block: var(--space-12) var(--space-6);
}

.occasions__header {
  margin-bottom: 0;
}

.occasions__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-text);
}


/* ============================================================
   OCCASIONS ROWS — inside Bowl. Contains the W decoration
   sitting behind both image rows.
   ============================================================ */
.occasions__rows-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-8) var(--space-10);
  isolation: isolate;
}

/* "W" doodle — capped at Figma's true 1521px size, right-anchored so
   it bleeds slightly off the right edge like in the Figma frame.
   On wider viewports stays at 1521px (doesn't grow further). */
.occasions__rows-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: max(-180px, -12vw);
  width: min(70vw, 1300px);
  aspect-ratio: 1521 / 1133;
  background-color: var(--color-decoration);
  -webkit-mask: url('/public/img/bg-w-large.svg') no-repeat center / contain;
          mask: url('/public/img/bg-w-large.svg') no-repeat center / contain;
  z-index: 0;
  pointer-events: none;
}

.occasions__rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.occasions__row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.occasions__row--reverse {
  grid-template-columns: 1fr 3fr;
}

.occasions__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.occasions__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  position: relative;
  z-index: 1;
}

.occasions__img:hover { transform: translateY(-3px); }

.occasions__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occasions__labels {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .occasions__rows-section::before {
    width: 100vw;
    right: -20vw;
    opacity: 0.7;
  }
  .occasions__row,
  .occasions__row--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .occasions__labels {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-5);
    font-size: 1.125rem;
  }
  .occasions__row--reverse .occasions__images { order: 2; }
  .occasions__row--reverse .occasions__labels  { order: 1; }
}

@media (max-width: 600px) {
  .occasions__rows-section::before { display: none; }
  .occasions__images {
    grid-template-columns: repeat(2, 1fr);
  }
  .occasions__img:nth-child(3) {
    grid-column: span 2;
    aspect-ratio: 8 / 5;
  }
}


/* ============================================================
   BOWL — weißer Hintergrund für Bildreihen + Occasions-CTA.
   Top: arch curve. Bottom: flat (Übergang zurück auf Beige).
   ============================================================ */
.bowl {
  background: var(--color-surface);
  position: relative;
  z-index: 1;
  padding-top: var(--space-2);
}

.bowl::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: clamp(140px, 16vw, 280px);
  background: url('/public/img/bowl-dome.svg') no-repeat center bottom / 100% 100%;
}


/* ============================================================
   OCCASIONS CTA SECTION (Dein Anlass ist nicht dabei?) — in Bowl
   ============================================================ */
.occasions-cta-section {
  padding-block: var(--space-6) var(--space-10);
}

.occasions__cta {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.occasions__cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

.occasions__cta-text {
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-5);
  max-width: 640px;
  margin-inline: auto;
}


/* ============================================================
   CLUTTER — auf Beige (nach der Bowl)
   ============================================================ */
.clutter {
  padding-block: var(--space-12);
  position: relative;
}

.clutter__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
  align-items: center;
}

.clutter__title {
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.clutter__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}

.clutter__item-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.clutter__item-desc {
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
  max-width: 480px;
}

.clutter__visual {
  position: relative;
  aspect-ratio: 1 / 1.2;
  max-width: 600px;
  margin-inline: auto;
  width: 100%;
}

.clutter__dome {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 748 / 1142;
  background: var(--color-primary-soft);
  border-radius: 9999px;
  z-index: 1;
}

.clutter__card {
  position: absolute;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  z-index: 3;
}

.clutter__card--events {
  top: 0;
  left: 0;
  width: 56%;
}

.clutter__card--phone {
  top: 6%;
  right: 0;
  width: 44%;
  aspect-ratio: 9 / 18;
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.clutter__card--person {
  bottom: 28%;
  left: 8%;
  width: 52%;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.clutter__card--langs {
  bottom: 0;
  left: 4%;
  width: 56%;
}

.clutter__card-title {
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

.clutter__events {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.clutter__event {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  font-size: 0.8125rem;
}

.clutter__event-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-decoration);
}

.clutter__event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clutter__event-meta { flex: 1; min-width: 0; }
.clutter__event-name { font-weight: var(--fw-medium); color: var(--color-text); }
.clutter__event-date { font-size: 0.75rem; color: var(--color-text-muted); }
.clutter__event-tag {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
  font-size: 0.625rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.clutter__phone-back {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.clutter__phone-title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-2);
}

.clutter__phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: var(--space-2);
}

.clutter__stat {
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  padding: var(--space-3) 4px;
  text-align: center;
}

.clutter__stat-num {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
}

.clutter__stat-num--accent { color: var(--color-accent); }

.clutter__stat-label {
  font-size: 0.625rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.clutter__person-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.clutter__person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clutter__person-name { font-weight: var(--fw-medium); font-size: 0.9375rem; }
.clutter__person-email { font-size: 0.75rem; color: var(--color-text-muted); }

.clutter__langs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clutter__lang-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 10px;
  background: var(--color-surface);
  border-radius: 8px;
  font-size: 0.8125rem;
  border: 1px solid var(--color-border);
}

.clutter__lang-row .flag {
  font-size: 1rem;
  line-height: 1;
}

.clutter__lang-add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

@media (max-width: 960px) {
  .clutter__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .clutter__visual { max-width: 480px; }
}


/* ============================================================
   FEATURES GRID — auf Beige, Karten weiß
   ============================================================ */
.features {
  padding-block: var(--space-12);
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-10);
  max-width: 760px;
  margin-inline: auto;
}

.features__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-3);
}

.features__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.feature {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-accent);
}

.feature__icon svg {
  width: 24px;
  height: 24px;
}

.feature__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
}

.feature__desc {
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-snug);
}

.features__actions {
  text-align: center;
}

@media (max-width: 960px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   DEMO FORM — auf Beige (Pill bleibt lila)
   ============================================================ */
.demo-form {
  padding-block: var(--space-12);
}

.demo-form__pill {
  background: var(--color-primary);
  border-radius: 9999px;
  padding: var(--space-10) var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  color: var(--color-text-on-primary);
}

.demo-form__title {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-4);
  color: var(--color-text-on-primary);
}

.demo-form__text {
  font-size: var(--fs-body);
  opacity: 0.92;
  line-height: var(--lh-snug);
  color: var(--color-text-on-primary);
}

.demo-form__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.demo-form__input {
  width: 100%;
  height: 52px;
  background: var(--color-surface);
  border: none;
  border-radius: var(--radius-md);
  padding: 0 var(--space-5);
  font-size: var(--fs-body);
  color: var(--color-text);
}

.demo-form__input::placeholder { color: var(--color-text-muted); }

.demo-form__input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.demo-form__submit {
  align-self: flex-start;
  margin-top: var(--space-2);
}

@media (max-width: 960px) {
  .demo-form__pill {
    grid-template-columns: 1fr;
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6);
    gap: var(--space-6);
  }
  .demo-form__submit { align-self: stretch; }
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding-block: var(--space-12);
  text-align: center;
}

.final-cta__title {
  margin-bottom: var(--space-4);
}

.final-cta__text {
  font-size: var(--fs-body-lg);
  color: var(--color-text);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  line-height: var(--lh-snug);
}


/* ============================================================
   PRICING (Preise-Page)
   ============================================================ */
.pricing {
  padding-block: var(--space-12);
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--space-10);
  max-width: 720px;
  margin-inline: auto;
}

.pricing__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-3);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

.pricing__duration {
  text-align: center;
  margin-bottom: var(--space-7);
}

.pricing__duration-label {
  display: inline-block;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background: var(--color-surface);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
}

.pricing__duration-note {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
  max-width: 1080px;
  margin-inline: auto;
}

.plan {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan--featured {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.plan--featured:hover { transform: scale(1.04) translateY(-4px); }

.plan--featured .plan__name,
.plan--featured .plan__price,
.plan--featured .plan__per-month,
.plan--featured .plan__feature { color: var(--color-text-on-primary); }

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-text);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan__name {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.plan__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan__price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  font-weight: var(--fw-regular);
  color: var(--color-text);
}

.plan__currency {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: inherit;
}

.plan__per-month {
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
}

.plan--featured .plan__per-month { color: rgba(255,255,255,0.85); }

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.plan__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-snug);
  color: var(--color-text);
}

.plan__feature::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 12px;
  font-weight: var(--fw-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan--featured .plan__feature::before {
  background: var(--color-accent);
  color: var(--color-text);
}

.plan__cta {
  margin-top: auto;
}

.plan--featured .plan__cta.btn-primary {
  background: var(--color-surface);
  color: var(--color-primary);
}

@media (max-width: 960px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: var(--space-6);
  }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
}


/* ============================================================
   PAGE HEADER (used by Funktionen, Preise, Demo, Kontakt)
   ============================================================ */
.page-hero {
  padding-block: var(--space-10) var(--space-8);
  text-align: center;
}

.page-hero__title {
  margin-bottom: var(--space-3);
}

.page-hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: var(--lh-snug);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: var(--space-10) var(--space-12);
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq__item[open] .faq__question::after { content: '−'; }

.faq__answer {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}


/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  padding-block: var(--space-10) var(--space-12);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  max-width: 1080px;
  margin-inline: auto;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact__info-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--fs-body);
  color: var(--color-text);
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-text-on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info-icon svg { width: 18px; height: 18px; }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact__input,
.contact__textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
}

.contact__input { height: 52px; }
.contact__textarea { min-height: 160px; resize: vertical; }

.contact__input:focus,
.contact__textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-color: transparent;
}

@media (max-width: 960px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}
