/* =========================================================
   VOUCHMI — Brand Stylesheet
   v1.0 — April 2026
   ========================================================= */

:root {
  /* Brand Colors */
  --brand-deep: #1A1D2E;
  --brand-deep-2: #242843;
  --brand-primary: #F59E0B;
  --brand-primary-light: #FBBF24;
  --brand-accent: #4F46E5;
  --brand-accent-light: #6366F1;
  --brand-surface: #F8F7F4;
  --brand-surface-warm: #FFF8ED;
  --brand-muted: #94A3B8;
  --brand-muted-on-light: #64748B;  /* WCAG AA ~4.8:1 on Warm White */
  --brand-text: #1E293B;
  --brand-success: #10B981;
  --brand-coral: #F472B6;

  /* Spacing */
  --container: 1200px;
  --gutter: 24px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Shadows */
  --shadow-sm: 0 4px 12px -2px rgba(26,29,46,0.08);
  --shadow-md: 0 12px 32px -8px rgba(26,29,46,0.15);
  --shadow-lg: 0 24px 60px -12px rgba(245,158,11,0.25);
  --shadow-glow: 0 0 0 1px rgba(245,158,11,0.2), 0 20px 40px -10px rgba(245,158,11,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--brand-surface);
  color: var(--brand-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ LAYOUT ============ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
}

/* ============ NAVIGATION ============ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(248,247,244,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: rgba(26,29,46,0.08);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--brand-deep);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-deep);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
}

.nav-logo .mi,
.footer-brand .mi,
.logo-text .mi { color: var(--brand-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-text);
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--brand-primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: all 0.2s;
  transform: translateX(-50%);
}

.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  background: rgba(26,29,46,0.06);
  border-radius: 999px;
  padding: 4px;
  font-size: 12px;
  font-weight: 600;
}

.lang-switch button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brand-muted);
  font-weight: 600;
  transition: all 0.2s;
}

.lang-switch button.active {
  background: var(--brand-deep);
  color: white;
}

.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-deep);
  color: white;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--brand-surface);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(26,29,46,0.08);
  }
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--brand-deep);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--brand-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(245,158,11,0.3), 0 24px 50px -10px rgba(245,158,11,0.4);
}

.btn-dark {
  background: var(--brand-deep);
  color: white;
}

.btn-dark:hover {
  background: var(--brand-deep-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(26,29,46,0.06);
  color: var(--brand-deep);
}

.btn-ghost:hover {
  background: rgba(26,29,46,0.1);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ============ HERO ============ */

.hero {
  background: var(--brand-deep);
  color: white;
  padding: 180px 0 120px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245,158,11,0.15);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .highlight {
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-primary);
  opacity: 0.3;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brand-primary);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Phone Mockup */

.hero-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIn 1s 0.4s ease both;
}

.phone {
  width: 320px;
  height: 640px;
  background: linear-gradient(180deg, #2D3150 0%, #1A1D2E 100%);
  border-radius: 48px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.5),
    0 30px 60px -30px rgba(245,158,11,0.4),
    inset 0 0 0 2px rgba(255,255,255,0.05);
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}

.phone:hover { transform: rotate(0deg) scale(1.02); }

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--brand-deep);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 18px 28px 12px;
  font-size: 11px;
  color: white;
  font-weight: 600;
}

.phone-content {
  flex: 1;
  padding: 30px 20px 20px;
  overflow: hidden;
}

.phone-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.phone-app-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
}

.phone-app-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.phone-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

.phone-card-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.phone-card:nth-child(2) .phone-card-img {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-light));
}

.phone-card:nth-child(3) .phone-card-img {
  background: linear-gradient(135deg, var(--brand-success), #34d399);
}

.phone-card-text { flex: 1; min-width: 0; }
.phone-card-vouch {
  font-size: 10px;
  color: var(--brand-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-card-name {
  font-size: 13px;
  color: white;
  font-weight: 600;
  margin: 2px 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-card-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

/* Floating App Store Badge */

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: black;
  color: white;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.4);
}

.app-badge-icon { font-size: 26px; }

.app-badge-text { line-height: 1.1; }

.app-badge-small {
  font-size: 10px;
  opacity: 0.8;
  display: block;
}

.app-badge-big {
  font-size: 17px;
  font-weight: 600;
  display: block;
}

/* ============ SECTION HEADERS ============ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B45309;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--brand-deep);
  margin-bottom: 16px;
}

.section-title .accent { color: var(--brand-primary); }
.section-title em { font-style: italic; color: var(--brand-accent); }

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--brand-muted);
}

/* ============ BENEFITS ============ */

.benefits {
  background: white;
}

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

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

.benefit-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(26,29,46,0.06);
}

.benefit-card:hover { transform: translateY(-6px); }

.benefit-card.user {
  background: linear-gradient(135deg, #FEF3C7 0%, #FFF8ED 100%);
}

.benefit-card.influencer {
  background: linear-gradient(135deg, #FCE7F3 0%, #FDF2F8 100%);
}

.benefit-card.brand {
  background: linear-gradient(135deg, #E0E7FF 0%, #EEF2FF 100%);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--brand-deep);
  margin-bottom: 12px;
}

.benefit-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.benefit-card.user .benefit-tag { background: var(--brand-primary); color: var(--brand-deep); }
.benefit-card.influencer .benefit-tag { background: var(--brand-coral); color: white; }
.benefit-card.brand .benefit-tag { background: var(--brand-accent); color: white; }

.benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brand-text);
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--brand-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit-list li::before {
  content: '✓';
  color: var(--brand-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ HOW IT WORKS ============ */

.how {
  background: var(--brand-surface);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; }
}

.how-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 88px;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--brand-deep);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 15px;
  color: var(--brand-muted);
  line-height: 1.7;
}

/* ============ MEHRWERT / FEATURES ============ */

.features {
  background: var(--brand-deep);
  color: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features .section-title { color: white; }
.features .section-eyebrow { color: var(--brand-primary); }
.features .section-sub { color: rgba(255,255,255,0.6); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245,158,11,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============ MOCKUPS / SCREENSHOTS ============ */

.screens {
  background: white;
}

.screens-row {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screens-row::-webkit-scrollbar { height: 8px; }
.screens-row::-webkit-scrollbar-track { background: #F1F5F9; border-radius: 999px; }
.screens-row::-webkit-scrollbar-thumb { background: var(--brand-muted); border-radius: 999px; }

.screen-mockup {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.screen-frame {
  width: 280px;
  height: 560px;
  background: var(--brand-deep);
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.screen-inner {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.screen-1 { background: linear-gradient(180deg, var(--brand-deep) 0%, #2D3150 100%); }
.screen-2 { background: linear-gradient(180deg, var(--brand-accent) 0%, #6366F1 100%); }
.screen-3 { background: linear-gradient(180deg, var(--brand-coral) 0%, #fbcfe8 100%); }
.screen-4 { background: linear-gradient(180deg, var(--brand-primary) 0%, #FBBF24 100%); }

.screen-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: inherit;
}

.screen-mock-content {
  padding: 50px 20px 20px;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.screen-mock-content.dark { color: var(--brand-deep); }

.screen-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-deep);
  margin-top: 18px;
}

.screen-label small {
  display: block;
  color: var(--brand-muted);
  font-weight: 400;
  font-size: 12px;
  margin-top: 4px;
}

/* Generic mock blocks */
.mock-bar {
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  margin: 6px 0;
}
.mock-bar.dark-bg { background: rgba(26,29,46,0.15); }
.mock-bar.w-50 { width: 50%; }
.mock-bar.w-70 { width: 70%; }
.mock-bar.w-90 { width: 90%; }

.mock-tile {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px;
  margin: 8px 0;
}
.mock-tile.dark-bg { background: rgba(26,29,46,0.1); }

.mock-h1 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
}

/* ============ PRICING ============ */

.pricing {
  background: var(--brand-surface);
  position: relative;
}

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

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

.price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(26,29,46,0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  background: var(--brand-deep);
  color: white;
  border-color: var(--brand-deep);
  position: relative;
}

.price-card.featured::before {
  content: 'BELIEBT';
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-primary);
  color: var(--brand-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 6px;
}

.price-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 12px;
}

.price-card.featured .price-tier { color: var(--brand-primary); }

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--brand-deep);
  margin-bottom: 6px;
}

.price-card.featured .price-amount { color: white; }

.price-amount sup {
  font-size: 20px;
  font-weight: 400;
  vertical-align: super;
  margin-right: 4px;
}

.price-period {
  font-size: 13px;
  color: var(--brand-muted);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}

.price-features li {
  padding: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(26,29,46,0.06);
}

.price-card.featured .price-features li {
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.price-features li::before {
  content: '✓';
  color: var(--brand-success);
  font-weight: 700;
  flex-shrink: 0;
}

.price-cta {
  width: 100%;
  text-align: center;
}

/* ============ NEWSLETTER ============ */

.newsletter {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #FB923C 100%);
  color: var(--brand-deep);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; }
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}

.newsletter p {
  font-size: 16px;
  color: rgba(26,29,46,0.75);
  line-height: 1.7;
}

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

.newsletter-input {
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  border-radius: 999px;
  border: none;
  background: white;
  font-family: inherit;
  font-size: 15px;
  color: var(--brand-deep);
  outline: none;
  box-shadow: 0 8px 20px -6px rgba(26,29,46,0.15);
}

.newsletter-input::placeholder { color: var(--brand-muted); }

.newsletter-btn {
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--brand-deep);
  color: white;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.newsletter-btn:hover {
  background: black;
  transform: translateY(-2px);
}

.newsletter-consent {
  font-size: 12px;
  color: rgba(26,29,46,0.65);
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.newsletter-msg {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  display: none;
}

.newsletter-msg.success {
  background: rgba(16,185,129,0.2);
  color: #065F46;
  display: block;
}

.newsletter-msg.error {
  background: rgba(220,38,38,0.15);
  color: #991B1B;
  display: block;
}

/* ============ PRESS ============ */

.press {
  background: white;
  border-top: 1px solid rgba(26,29,46,0.06);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.press-card {
  padding: 32px;
  background: var(--brand-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,29,46,0.06);
  display: flex;
  flex-direction: column;
}

.press-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-deep);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.press-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand-deep);
  margin-bottom: 8px;
}

.press-card p {
  font-size: 14px;
  color: var(--brand-muted);
  margin-bottom: 20px;
  flex: 1;
}

.press-card a {
  font-weight: 600;
  color: var(--brand-accent);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.press-card a:hover { color: var(--brand-deep); }

/* ============ CONTACT FORM ============ */

.contact-page {
  padding: 160px 0 100px;
  min-height: 100vh;
  background: var(--brand-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}

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

.contact-info-card {
  background: var(--brand-deep);
  color: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
  position: relative;
}

.contact-info-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(245,158,11,0.15);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 11px;
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detail-value {
  font-size: 14px;
  color: white;
  font-weight: 500;
  margin-top: 2px;
}

.contact-form-card {
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,29,46,0.06);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-deep);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--brand-deep);
  background: white;
  outline: none;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.12);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.6;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--brand-primary);
}

.form-checkbox a { color: var(--brand-accent); text-decoration: underline; }

.form-msg {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}

.form-msg.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  display: block;
}

.form-msg.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
  display: block;
}

/* ============ LEGAL PAGES ============ */

.legal-page {
  padding: 160px 0 80px;
  min-height: 100vh;
  background: var(--brand-surface);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 64px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .legal-content { padding: 32px 24px; }
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: var(--brand-deep);
  margin-bottom: 12px;
  line-height: 1.1;
}

.legal-meta {
  font-size: 13px;
  color: var(--brand-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26,29,46,0.08);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--brand-deep);
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-deep);
  margin: 24px 0 10px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--brand-text);
  margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content strong { color: var(--brand-deep); }

.legal-content a {
  color: var(--brand-accent);
  text-decoration: underline;
}

/* ============ FOOTER ============ */

.footer {
  background: var(--brand-deep);
  color: white;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}


.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--brand-primary);
  color: var(--brand-deep);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-primary);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; padding: 0; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--brand-primary); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ============ COOKIE BANNER ============ */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--brand-deep);
  color: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 24px 60px -10px rgba(0,0,0,0.5);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner-actions button {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  min-width: 100px;
}

.cookie-accept {
  background: var(--brand-primary);
  color: var(--brand-deep);
}

.cookie-accept:hover { background: var(--brand-primary-light); }

.cookie-decline {
  background: rgba(255,255,255,0.08);
  color: white;
}

.cookie-decline:hover { background: rgba(255,255,255,0.15); }

/* ============ ANIMATIONS ============ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(40px) rotate(-6deg); }
  to { opacity: 1; transform: translateY(0) rotate(-3deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ UTILITY ============ */

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.hidden { display: none !important; }

/* ============ BRAND SECTION ============ */
.brand-section {
  background: var(--brand-deep);
  padding: 120px var(--gutter);
}
@media (max-width: 768px) {
  .brand-section { padding: 80px var(--gutter); }
}
.brand-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .brand-features-grid { grid-template-columns: 1fr; }
}
.brand-feature-card {
  background: var(--brand-surface-warm);
  border-radius: 16px;
  padding: 32px;
}
.brand-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--brand-deep);
}
.brand-feature-card p {
  font-size: 15px;
  color: var(--brand-muted-on-light);
  line-height: 1.6;
}
.brand-feature-card code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: #E2E8F0;
  padding: 2px 6px;
  border-radius: 4px;
}
.brand-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.brand-hint-box {
  background: var(--brand-surface-warm);
  border: 1px solid var(--brand-accent);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 720px;
  margin: 40px auto 0;
  font-size: 15px;
  color: var(--brand-deep);
  text-align: center;
}

/* ============ INFLUENCER SECTION ============ */
.influencer-section {
  background: var(--brand-surface);
  padding: 120px var(--gutter);
}
@media (max-width: 768px) {
  .influencer-section { padding: 80px var(--gutter); }
}
.influencer-feature-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
}
.influencer-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--brand-deep);
}
.influencer-feature-card p {
  font-size: 15px;
  color: var(--brand-muted-on-light);
  line-height: 1.6;
}
.influencer-compare {
  max-width: 720px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid var(--brand-coral);
  border-radius: 16px;
  padding: 24px 28px;
  overflow-x: auto;
}
.influencer-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.influencer-compare th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 13px;
  color: var(--brand-muted-on-light);
  border-bottom: 2px solid #E2E8F0;
}
.influencer-compare th:nth-child(2),
.influencer-compare th:nth-child(3),
.influencer-compare td:nth-child(2),
.influencer-compare td:nth-child(3) {
  text-align: center;
  width: 140px;
}
.influencer-compare td {
  padding: 10px 12px;
  border-bottom: 1px solid #F1F5F9;
  color: var(--brand-deep);
}

/* ============ MOBILE-FIXES (responsiv) ============ */

/* Section-Titles brand + influencer (vorher inline 48px hardcoded) */
.section-title--brand,
.section-title--influencer {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
}
.section-title--brand { color: #fff; }
.section-title--influencer { color: var(--brand-deep); }

.section-sub--brand,
.section-sub--influencer {
  font-size: clamp(15px, 2vw, 18px);
  max-width: 680px;
}
.section-sub--brand { color: rgba(255,255,255,0.7); }
.section-sub--influencer { color: var(--brand-muted-on-light); }

/* Hero stack auf mobile (vorher 2-col fix) */
@media (max-width: 768px) {
  .hero { padding: 130px 0 80px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-cta { flex-wrap: wrap; }
  .phone {
    width: 280px;
    height: 560px;
    border-radius: 40px;
  }
  .phone-screen { border-radius: 30px; }
}

/* Influencer-Vergleichstabelle: kleinere Schrift + horizontaler Scroll auf mobile */
@media (max-width: 768px) {
  .influencer-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .influencer-compare table { font-size: 13px; min-width: 480px; }
  .influencer-compare th,
  .influencer-compare td { padding: 8px 10px; }
}

/* Newsletter-Background-Kreis abdecken auf mobile (war 600px fix) */
@media (max-width: 768px) {
  .newsletter::before { width: 320px; height: 320px; }
}
