/* ============================================================
   WelcomeTap – Landing Page Styles
   ============================================================ */

/* --- Tokens ------------------------------------------------- */
:root {
  --color-night:      #1A1A2E;
  --color-bg:         #F5F0E8;
  --color-amber:      #E8A838;
  --color-amber-dark: #C8891A;
  --color-teal:       #3D7A6F;
  --color-teal-light: #EBF4F2;
  --color-white:      #FFFFFF;
  --color-gray:       #6B6B6B;
  --color-gray-light: #F0EDE7;
  --color-border:     #E2DDD4;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --shadow-card: 0 2px 12px rgba(26,26,46,0.08);
  --shadow-lift: 0 8px 32px rgba(26,26,46,0.14);

  --max-w:       1160px;
  --section-gap: 100px;
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-night);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography -------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-body); }
p  { color: var(--color-gray); line-height: 1.75; }

/* --- Layout ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: var(--section-gap); }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-amber);
  color: var(--color-night);
  box-shadow: 0 4px 16px rgba(232,168,56,0.35);
}
.btn-primary:hover {
  background: var(--color-amber-dark);
  box-shadow: 0 6px 24px rgba(232,168,56,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--color-night);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-night);
  background: rgba(26,26,46,0.04);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-night);
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--color-night);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-amber);
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--color-night); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__actions .btn { padding: 10px 22px; font-size: 0.875rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-night);
  border-radius: 2px;
}


/* ============================================================
   MOBILE MENU – wird komplett per JS gesteuert
   ============================================================ */
.nav__mobile-menu {
  display: none;
}

.nav__mobile-close {
  align-self: flex-end;
  background: transparent;
  font-size: 1.5rem;
  color: var(--color-night);
  padding: 4px 0 24px;
  line-height: 1;
  flex-shrink: 0;
}

.nav__mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-night);
  flex-shrink: 0;
}

.nav__mobile-menu .btn {
  margin-top: 24px;
  justify-content: center;
  border-bottom: none;
  flex-shrink: 0;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 148px;
  padding-bottom: 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title { margin-bottom: 20px; }

.hero__title em {
  font-style: normal;
  color: var(--color-teal);
}

.hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-gray);
  font-weight: 500;
}

.trust-badge__icon {
  width: 20px;
  height: 20px;
  background: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.trust-divider { display: none; }

/* NFC Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.nfc-scene {
  position: relative;
  width: 340px;
  height: 420px;
}

.nfc-stand {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 260px;
  background: #221C0C;
  border-radius: 16px 16px 8px 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 20px;
  gap: 12px;
}

.nfc-stand__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-amber);
  letter-spacing: 0.05em;
}

.nfc-stand__sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.nfc-stand__qr {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 8px;
  padding: 8px;
  margin-top: 4px;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  width: 100%;
  height: 100%;
}
.qr-cell   { background: #1A1508; border-radius: 1px; }
.qr-cell.w { background: white; }

.nfc-stand__chip {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

.chip-icon {
  width: 16px;
  height: 12px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  background: rgba(232,168,56,0.22);
}

.nfc-phone {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 120px;
  height: 200px;
  background: var(--color-night);
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-lift);
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-header {
  background: var(--color-teal);
  padding: 10px 10px 8px;
  color: white;
}
.phone-header__name    { font-size: 0.6rem; font-weight: 700; margin-bottom: 2px; }
.phone-header__address { font-size: 0.5rem; opacity: 0.75; }

.phone-body {
  padding: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-row { height: 8px; background: var(--color-gray-light); border-radius: 4px; }
.phone-row.short  { width: 65%; }
.phone-row.medium { width: 80%; }

.phone-card {
  background: var(--color-teal-light);
  border-radius: 6px;
  padding: 6px 8px;
  margin-top: 4px;
}
.phone-card__icon  { width: 14px; height: 14px; background: var(--color-teal); border-radius: 4px; margin-bottom: 4px; }
.phone-card__lines { display: flex; flex-direction: column; gap: 3px; }
.phone-card__line  { height: 5px; background: var(--color-teal); border-radius: 3px; opacity: 0.4; }
.phone-card__line.short { width: 55%; }

.nfc-ripple {
  position: absolute;
  bottom: 105px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.ripple-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-amber);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2.4s ease-out infinite;
}
.ripple-ring:nth-child(2) { animation-delay: 0.8s; }
.ripple-ring:nth-child(3) { animation-delay: 1.6s; }

@keyframes ripple {
  0%   { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}


/* ============================================================
   STORY: VORHER / NACHHER
   ============================================================ */
.story { background: var(--color-white); }

.story__intro { text-align: center; margin-bottom: 60px; }
.story__intro h2 { margin-bottom: 10px; }
.story__intro p  { font-size: 1.1rem; }

.story__split {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 32px;
  align-items: center;
}

.story__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.story__label {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}
.story__label--before { background: #FFF0F0; color: #C0392B; }
.story__label--after  { background: var(--color-teal-light); color: var(--color-teal); }

.story__caption { font-size: 0.82rem; color: var(--color-gray); text-align: center; line-height: 1.6; }

.story__arrow { display: flex; justify-content: center; color: var(--color-night); }

/* Word Doc */
.word-doc {
  width: 100%;
  max-width: 360px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 4px 4px 0 #e0e0e0, 8px 8px 0 #ebebeb;
  overflow: hidden;
}

.word-doc__titlebar {
  background: #2B579A;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.word-doc__titlebar span { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.85); flex: 1; }
.word-doc__dots { display: flex; gap: 4px; }
.word-doc__dots span { display: block; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); }

.word-doc__body { padding: 24px 28px 20px; background: white; }

.word-doc__heading    { font-size: 1rem; font-weight: 700; color: #1A1A2E; margin-bottom: 2px; font-family: 'Comic Sans MS', cursive; }
.word-doc__subheading { font-size: 0.72rem; color: #888; font-style: italic; margin-bottom: 10px; font-family: var(--font-body); }
.word-doc__divider    { height: 2px; background: #2B579A; margin-bottom: 14px; }
.word-doc__section    { margin-bottom: 12px; }
.word-doc__section-title { font-size: 0.8rem; font-weight: 700; color: #1A1A2E; font-family: var(--font-body); margin-bottom: 2px; }
.word-doc__text       { font-size: 0.75rem; color: #444; line-height: 1.5; font-family: var(--font-body); }
.word-doc__text--highlight { background: #FFFF99; padding: 2px 4px; border-radius: 2px; }
.word-doc__footer     { margin-top: 16px; padding-top: 10px; border-top: 1px solid #ddd; font-size: 0.65rem; color: #aaa; font-family: var(--font-body); }

/* Phone Mockup (Story) */
.phone-mockup { width: 100%; max-width: 240px; }

.phone-mockup__shell {
  background: var(--color-night);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(255,255,255,0.06);
}

.phone-mockup__notch {
  width: 60px;
  height: 10px;
  background: var(--color-night);
  border-radius: 0 0 10px 10px;
  margin: 0 auto 6px;
}

.phone-mockup__screen {
  background: var(--color-bg);
  border-radius: 28px;
  overflow: hidden;
}

.app-header          { position: relative; height: 90px; }
.app-header__bg      { position: absolute; inset: 0; background: var(--color-teal); }
.app-header__content { position: relative; z-index: 1; padding: 18px 14px 12px; }
.app-header__name    { font-size: 0.85rem; font-weight: 700; color: white; font-family: var(--font-display); }
.app-header__loc     { font-size: 0.6rem; color: rgba(255,255,255,0.7); margin-top: 3px; }

.app-body { padding: 10px; display: flex; flex-direction: column; gap: 8px; }

.app-tile {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-border);
}
.app-tile--wide { width: 100%; }
.app-tile--cta  { background: var(--color-teal-light); border-color: transparent; }

.app-tiles-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.app-tile__icon  { font-size: 1rem; flex-shrink: 0; }
.app-tile__label { font-size: 0.6rem; color: var(--color-gray); font-weight: 600; }
.app-tile__value { font-size: 0.7rem; font-weight: 700; color: var(--color-night); }
.app-tile__sub   { font-size: 0.6rem; color: var(--color-gray); margin-top: 1px; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--color-night); padding-block: var(--section-gap); }

.how__header { text-align: center; margin-bottom: 64px; }
.how__header h2 { color: var(--color-white); }
.how__header p  { color: rgba(255,255,255,0.55); margin-top: 12px; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.how__step {
  background: rgba(255,255,255,0.03);
  padding: 44px 36px;
  transition: background 0.2s;
}
.how__step:hover { background: rgba(255,255,255,0.06); }

.how__step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 12px;
}
.how__step p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; }


/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--color-white); }

.features__header { text-align: center; max-width: 580px; margin-inline: auto; margin-bottom: 64px; }
.features__header p { margin-top: 14px; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card__icon--amber { background: rgba(232,168,56,0.15); }
.feature-card__icon--teal  { background: var(--color-teal-light); }
.feature-card__icon--night { background: rgba(26,26,46,0.08); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: 0.9rem; }


/* ============================================================
   AUFSTELLER
   ============================================================ */
.aufsteller { background: var(--color-bg); }

.aufsteller__header { text-align: center; max-width: 560px; margin-inline: auto; margin-bottom: 56px; }
.aufsteller__header p { margin-top: 14px; }

.aufsteller__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 384px));
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.aufsteller__card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.aufsteller__card:hover        { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.aufsteller__card--featured    { border-color: var(--color-amber); box-shadow: 0 0 0 2px var(--color-amber); }

.aufsteller__img-wrap {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aufsteller__img-wrap--wood  { background: #E9DCC2; }
.aufsteller__img-wrap--acryl { background: #DEF0ED; }
.aufsteller__img-wrap--dark  { background: #222232; }

.aufsteller__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; }

.placeholder-stand { display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18)); }

.placeholder-stand__body {
  width: 110px;
  padding: 18px 16px 20px;
  border-radius: 10px 10px 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.placeholder-stand--wood  .placeholder-stand__body { background: #3B2A17; }
.placeholder-stand--acryl .placeholder-stand__body { background: rgba(255,255,255,0.75); border: 1px solid rgba(61,122,111,0.2); }
.placeholder-stand--dark  .placeholder-stand__body { background: #2C2C3F; border: 1px solid rgba(255,255,255,0.08); }

.placeholder-stand__logo {
  width: 32px; height: 32px;
  background: var(--color-amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--color-night);
}

.placeholder-stand__qr {
  width: 54px; height: 54px;
  background: white;
  border-radius: 6px;
  padding: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7' shape-rendering='crispEdges'%3E%3Cpath fill='%231A1508' d='M0 0h3v1H0zM4 0h1v1H4zM6 0h1v1H6zM0 1h1v1H0zM2 1h1v1H2zM5 1h2v1H5zM0 2h3v1H0zM4 2h1v1H4zM6 2h1v1H6zM1 3h1v1H1zM3 3h2v1H3zM6 3h1v1H6zM0 4h1v1H0zM2 4h1v1H2zM5 4h1v1H5zM0 5h1v1H0zM3 5h2v1H3zM6 5h1v1H6zM1 6h2v1H1zM4 6h1v1H4zM6 6h1v1H6z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-origin: content-box;
}

.placeholder-stand__label { font-size: 0.58rem; font-weight: 700; }
.placeholder-stand--wood  .placeholder-stand__label { color: var(--color-amber); }
.placeholder-stand--acryl .placeholder-stand__label { color: var(--color-teal); }
.placeholder-stand--dark  .placeholder-stand__label { color: rgba(255,255,255,0.6); }

.placeholder-stand__foot { width: 40px; height: 14px; border-radius: 0 0 6px 6px; }
.placeholder-stand--wood  .placeholder-stand__foot { background: #1A0E05; }
.placeholder-stand--acryl .placeholder-stand__foot { background: rgba(61,122,111,0.3); }
.placeholder-stand--dark  .placeholder-stand__foot { background: #0E0E1A; }

.aufsteller__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--color-night); color: white;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
}
.aufsteller__badge--popular { background: var(--color-amber); color: var(--color-night); }

.aufsteller__info { padding: 20px 24px 24px; }
.aufsteller__info h3 { margin-bottom: 6px; }
.aufsteller__info p  { font-size: 0.875rem; margin-bottom: 12px; }

.aufsteller__price { font-size: 1.1rem; font-weight: 700; color: var(--color-night); font-family: var(--font-display); }

.aufsteller__note {
  text-align: center; font-size: 0.875rem; color: var(--color-gray);
  background: var(--color-gray-light); padding: 14px 24px;
  border-radius: 100px; width: fit-content; margin-inline: auto;
}


/* ============================================================
   GASTSEITE PREVIEW
   ============================================================ */
.preview { background: var(--color-teal-light); padding-block: var(--section-gap); }

.preview__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.preview__text h2 { margin-bottom: 16px; }
.preview__text p  { margin-bottom: 28px; }

.preview__checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.preview__checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--color-night); font-weight: 500; }

.check-icon {
  width: 20px; height: 20px; background: var(--color-teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.6rem; flex-shrink: 0; margin-top: 2px;
}

.browser-mockup { background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-lift); overflow: hidden; border: 1px solid var(--color-border); }

.browser-bar { background: #f0f0f0; padding: 10px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #e0e0e0; }
.browser-dots { display: flex; gap: 6px; }
.browser-dot  { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #28CA41; }

.browser-url { flex: 1; background: white; border-radius: 6px; padding: 4px 10px; font-size: 0.72rem; color: var(--color-gray); border: 1px solid #ddd; }

.browser-content { min-height: 280px; background: var(--color-bg); }

.guest-page-preview { display: flex; flex-direction: column; }

.guest-hero-placeholder {
  height: 120px; background: var(--color-teal);
  display: flex; align-items: flex-end; padding: 16px;
}
.guest-hero-placeholder__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: white; }
.guest-hero-placeholder__sub   { font-size: 0.65rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

.guest-info { padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.guest-info-card { background: white; border-radius: 8px; padding: 10px; border: 1px solid var(--color-border); }
.guest-info-card__icon  { font-size: 1rem; margin-bottom: 4px; }
.guest-info-card__label { font-size: 0.65rem; font-weight: 600; color: var(--color-gray); margin-bottom: 4px; }
.guest-info-card__value { font-size: 0.7rem; color: var(--color-night); font-weight: 600; }


/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--color-bg); }

.faq__header { text-align: center; margin-bottom: 52px; }
.faq__header p { margin-top: 10px; font-size: 1.05rem; }

.faq__list {
  max-width: 720px; margin-inline: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__item:last-child { border-bottom: none; }

.faq__question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-size: 0.95rem; font-weight: 600;
  color: var(--color-night); cursor: pointer; list-style: none;
  user-select: none; transition: background 0.15s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { background: var(--color-bg); }

.faq__icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--color-gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--color-gray);
  transition: transform 0.2s, background 0.2s;
}

details[open] .faq__icon     { transform: rotate(45deg); background: var(--color-amber); color: var(--color-night); }
details[open] .faq__question { background: var(--color-bg); }

.faq__answer {
  padding: 0 24px 20px; font-size: 0.9rem;
  color: var(--color-gray); line-height: 1.75;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   WEBDESIGN SERVICE
   ============================================================ */
.webdesign { background: var(--color-white); }

.webdesign__inner { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center; }

.webdesign__img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; object-position: center 35%; margin: 0 auto; box-shadow: var(--shadow-lift); }

.webdesign__lead { font-size: 1.1rem; margin-top: 16px; margin-bottom: 32px; }

.webdesign__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }

.webdesign__card { background: var(--color-gray-light); border-radius: var(--radius-md); padding: 20px; }

.webdesign__card-title { font-weight: 600; font-size: 1rem; color: var(--color-night); margin-bottom: 8px; }

.webdesign__bonus {
  background: var(--color-teal-light);
  border-left: 3px solid var(--color-teal);
  padding: 12px 16px; border-radius: 6px;
  margin-bottom: 20px; font-weight: 500;
}

.webdesign__cta-text { margin-bottom: 20px; }

.webdesign__buttons { display: flex; gap: 12px; flex-wrap: wrap; }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--color-amber); padding-block: 80px; text-align: center; }

.cta-banner h2 { color: var(--color-night); margin-bottom: 16px; }
.cta-banner p  { color: rgba(26,26,46,0.65); max-width: 500px; margin-inline: auto; margin-bottom: 36px; }

.cta-banner .btn-primary { background: var(--color-night); color: white; box-shadow: 0 4px 20px rgba(26,26,46,0.3); }
.cta-banner .btn-primary:hover { background: #2D2D4A; }

.cta-banner__note { margin-top: 16px; font-size: 0.82rem; color: rgba(26,26,46,0.5); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--color-night); padding-block: 60px 32px; }

.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__brand .nav__logo { margin-bottom: 14px; color: white; }
.footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); max-width: 260px; line-height: 1.6; }

.footer__col h4 { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a  { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer__col a:hover { color: white; }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy   { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__legal  { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__links    { display: none; }
  .nav__actions  { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner    { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__cta      { justify-content: center; }
  .hero__trust    { align-items: center; }
  .hero__visual   { order: -1; }

  .how__steps     { grid-template-columns: 1fr; gap: 0; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .preview__inner { grid-template-columns: 1fr; }

  .story__split { grid-template-columns: 1fr; gap: 40px; }
  .story__arrow { transform: rotate(90deg); }

  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-gap: 64px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero { padding-top: 120px; }
  .hero__visual { display: none; }

  .features__grid   { grid-template-columns: 1fr; }
  .aufsteller__grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }

  .how__step { padding: 32px 24px; }

  .faq__question { padding: 16px 18px; font-size: 0.88rem; }
  .faq__answer   { padding: 0 18px 16px; }

  .word-doc, .phone-mockup { max-width: 100%; }
  .word-doc__body { padding: 16px 18px 14px; }

  .webdesign__inner   { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .webdesign__cards   { grid-template-columns: 1fr; }
  .webdesign__buttons { justify-content: center; }

  .footer__top    { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .cta-banner { padding-block: 60px; }
}

/* --- Reduced motion ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .nfc-phone   { animation: none; }
  .ripple-ring { animation: none; }
  .btn:hover   { transform: none; }
  .feature-card:hover { transform: none; }
}
