/* ============================================================
   Voice2Symbol — Website v2.0
   Production-ready design · 2026-04-09
   ============================================================ */

:root {
  --primary:       #5b6ef5;
  --primary-dark:  #4455e0;
  --secondary:     #7c4dbd;
  --accent:        #e91e8c;
  --dark:          #1a1d2e;
  --dark-soft:     #2c2f45;
  --gray-bg:       #f4f6fb;
  --gray-mid:      #e8ebf4;
  --text:          #2c2f45;
  --text-muted:    #6b7080;
  --success:       #27ae60;
  --warning:       #f59e0b;
  --danger:        #e74c3c;
  --border:        rgba(0,0,0,0.07);
  --radius:        14px;
  --radius-lg:     22px;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.15);
  --transition:    all 0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: white;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1400px) { .container { max-width: 1360px; } }
@media (max-width: 480px)  { .container { padding: 0 16px; } }

/* ── Utility ── */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo { height: 38px; width: auto; }
.nav-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--primary); background: var(--gray-bg); }

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: white !important; }

.btn-nav-logout {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
  border: 1px solid var(--border) !important;
}

/* Mobile nav */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .mobile-menu-toggle { display: flex; }
  .navbar { overflow: visible; }
  .navbar .container { overflow: visible; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 6px;
    overflow-y: auto;
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .nav-menu.active { display: flex; }
  .nav-menu a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    white-space: normal;
  }
  .nav-menu a:hover { background: var(--gray-bg); }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(145deg, #0d0e1a 0%, #1a1040 50%, #0d1833 100%);
  color: white;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,110,245,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,77,189,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span {
  background: linear-gradient(90deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-welcome {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* Hero visual: phone mockup stack */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -20px;
  position: relative;
}
.hero-phone {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.hero-phone.primary {
  width: 200px;
  z-index: 2;
  transform: rotate(-2deg);
}
.hero-phone.secondary {
  width: 175px;
  z-index: 1;
  transform: rotate(4deg) translateX(-25px) translateY(20px);
  opacity: 0.85;
}
.hero-phone img { width: 100%; height: auto; }

/* Vision badge below hero */
.hero-vision {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
}
.hero-vision p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero-vision strong { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; justify-content: center; }
  .hero-phone.primary { width: 160px; }
  .hero-phone.secondary { width: 140px; }
  .hero { padding: 60px 0 50px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-phone.primary { width: 130px; }
  .hero-phone.secondary { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(91,110,245,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,110,245,0.45);
  color: white;
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gray-mid);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--gray-bg);
  color: var(--primary);
}

.btn-success {
  background: var(--success);
  color: white;
  box-shadow: 0 4px 16px rgba(39,174,96,0.3);
}
.btn-success:hover {
  background: #229954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39,174,96,0.4);
  color: white;
}

.btn-lg { padding: 16px 34px; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; border-radius: 8px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-bg-gray { background: var(--gray-bg); }
.section-bg-dark {
  background: var(--dark);
  color: white;
}
.section-bg-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-bg-dark .section-label,
.section-bg-gradient .section-label { color: rgba(255,255,255,0.6); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.section-bg-dark .section-title,
.section-bg-gradient .section-title { color: white; }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.section-bg-dark .section-intro,
.section-bg-gradient .section-intro { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin-left: auto; margin-right: auto; }

/* ============================================================
   AUDIENCE / USE CASES
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
@media (min-width: 1100px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}

.audience-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-card:hover::before { opacity: 1; }

.audience-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.audience-icon {
  width: 48px; height: 48px;
  background: rgba(91,110,245,0.08);
  border: 1px solid rgba(91,110,245,0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audience-icon i { width: 22px; height: 22px; stroke: #5b6ef5; stroke-width: 1.75; }
.audience-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}
.audience-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.audience-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gray-bg);
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--transition);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-card:hover {
  border-color: rgba(91,110,245,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.section-bg-gray .feature-card { background: white; }

.feature-icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.feature-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SCREENSHOT GALLERY — horizontal scroll rows (Option D)
   ============================================================ */
.gallery-section { background: var(--dark); padding: 80px 0; }

.gallery-row { margin-bottom: 44px; }
.gallery-row:last-child { margin-bottom: 0; }

.gallery-row-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding: 0 2px;
}
.gallery-row-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.gallery-row-count {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.gallery-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.gallery-item {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.07);
}
.gallery-item:hover { transform: translateY(-4px); border-color: rgba(91,110,245,0.5); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Portrait phone: ~160px wide, natural height */
.gallery-item.portrait  { width: 150px; }
.gallery-item.landscape { width: 290px; }

/* Tablet sizes — ready for future use */
.gallery-item.tablet-portrait  { width: 200px; }
.gallery-item.tablet-landscape { width: 320px; }

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.75) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
}
.gallery-item-caption {
  padding: 12px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}
.gallery-item-caption .zoom-hint {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 2px;
  font-weight: 400;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 14px;
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.download-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.download-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.download-card.available { border-color: rgba(91,110,245,0.4); }

.download-os-logo {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-os-logo img { width: 100%; height: auto; }
.download-os-logo svg { width: 48px; height: 48px; }

.download-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.download-version {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.download-size {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}
.download-req {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
}

.download-soon {
  padding: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.download-coming-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* ============================================================
   ROADMAP / VISION STRIP
   ============================================================ */
.vision-strip {
  background: linear-gradient(135deg, #1a1040, #0d1833);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}
.vision-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.vision-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
}
.vision-chip.active {
  background: rgba(91,110,245,0.2);
  border: 1px solid rgba(91,110,245,0.4);
  color: #a5b4fc;
}
.vision-chip.upcoming {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.35);
}
.vision-chip .chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.vision-chip.active .chip-dot { background: #4ade80; }
.vision-chip.upcoming .chip-dot { background: rgba(255,255,255,0.2); }
.vision-arrow {
  color: rgba(255,255,255,0.15);
  font-size: 1.1rem;
}

/* ============================================================
   INSTALLATION STEPS
   ============================================================ */
.steps { max-width: 720px; margin: 0 auto; }
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}
.step:hover { border-color: rgba(91,110,245,0.25); box-shadow: var(--shadow-sm); }
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.step-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.step-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-body code {
  background: var(--gray-bg);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-family: 'SF Mono', 'Consolas', monospace;
}

/* ============================================================
   IMPRESSUM / LEGAL pages
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--dark);
  border-bottom: 2px solid var(--gray-mid);
  padding-bottom: 10px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-content ul { margin-left: 22px; margin-bottom: 16px; }

.info-box {
  background: var(--gray-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.info-box.warning {
  background: #fffbeb;
  border-color: var(--warning);
}
.info-box.success {
  background: #f0fdf4;
  border-color: var(--success);
}
.info-box p { margin: 0; font-size: 0.9rem; }

.thanks-list { list-style: none; margin-left: 0; }
.thanks-list li { padding: 8px 0; padding-left: 28px; position: relative; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.thanks-list li:last-child { border-bottom: none; }
.thanks-list li::before { content: '💜'; position: absolute; left: 0; }

/* ============================================================
   SUPPORT / PAYPAL
   ============================================================ */
.support-box {
  background: linear-gradient(135deg, #eef2ff, #f5f0ff);
  border: 1px solid rgba(91,110,245,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.support-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.support-box p { color: var(--text-muted); margin-bottom: 24px; }
.btn-paypal {
  background: #0070ba;
  color: white;
  box-shadow: 0 4px 16px rgba(0,112,186,0.3);
}
.btn-paypal:hover { background: #005ea6; color: white; transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 36px;
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-brand img { height: 32px; opacity: 0.9; }
.footer-brand-name { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.footer-tagline { font-size: 0.82rem; line-height: 1.6; max-width: 280px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8rem; }
.footer-logout a {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  text-decoration: none;
}
.footer-logout a:hover { color: rgba(255,255,255,0.5); }

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   EMILIA STORY TEASER
   ============================================================ */
.story-teaser {
  display: flex;
  gap: 40px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 860px;
  margin: 0 auto;
}
.story-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(124,77,189,0.2);
  box-shadow: var(--shadow-md);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.story-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

@media (max-width: 600px) {
  .story-teaser { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; }
  .story-photo { width: 110px; height: 110px; }
}

/* ============================================================
   PRIVACY GRID
   ============================================================ */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.privacy-item {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.privacy-item .pi-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.privacy-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .section-title { font-size: 1.6rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; max-width: 360px; }
  .steps .step { flex-direction: column; }
  .story-teaser { padding: 24px; }
  .gallery-item.portrait  { width: 130px; }
  .gallery-item.landscape { width: 240px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
}

/* ============================================================
   VISION BANNER (dezent, unter Hero)
   ============================================================ */
.vision-banner {
  background: #0f1020;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.vision-banner-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.85rem;
}
.vision-dot-active {
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 2s infinite;
  vertical-align: middle;
}
.vision-banner-now { color: rgba(255,255,255,0.75); font-weight: 600; }
.vision-banner-sep { color: rgba(255,255,255,0.2); }
.vision-banner-future { color: rgba(255,255,255,0.35); }
.vision-banner-link {
  color: #a5b4fc;
  font-weight: 600;
  text-decoration: none;
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.82rem;
}
.vision-banner-link:hover { color: white; text-decoration: none; }
@media (max-width: 640px) {
  .vision-banner-link { margin-left: 0; }
}

/* ── Hero: 3 Phone Visual ── */
.hero-phone.tertiary {
  width: 160px;
  z-index: 1;
  transform: rotate(-5deg) translateX(15px) translateY(25px);
  opacity: 0.7;
}
.hero-phone.landscape-phone {
  width: 220px;
  z-index: 1;
  transform: rotate(3deg) translateX(-15px) translateY(30px);
  opacity: 0.75;
  border-radius: 16px;
}
@media (max-width: 900px) {
  .hero-phone.tertiary { display: none; }
  .hero-phone.landscape-phone { width: 180px; }
}
@media (max-width: 480px) {
  .hero-phone.landscape-phone { display: none; }
}
