/* ================================================
   syna werk – Landing Page v9
   Deeploi.io-inspired Design System
   Mobile-First, DSGVO-compliant
   ================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors - Dark SaaS Style */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --bg-card: #1a1a2e;
  --bg-card-hover: #252540;
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);

  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --text-link: #7dd3fc;

  --accent-primary: #06b6d4;
  --accent-primary-hover: #22d3ee;
  --accent-secondary: #8b5cf6;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --accent-danger: #ef4444;

  /* Warm accent for primary CTAs */
  --accent-warm: #f97316;
  --accent-gold: #f9b234;
  --gradient-warm: linear-gradient(135deg, #f97316, #f59e0b);
  --shadow-glow-warm: 0 0 40px rgba(249, 115, 22, 0.2);

  --gradient-primary: linear-gradient(135deg, #06b6d4, #8b5cf6);
  --gradient-hero: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
  --gradient-card: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));

  --border-color: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(249, 178, 52, 0.4);
  --border-focus: var(--accent-primary);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.15);

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

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;

  --nav-height: 64px;
  --container-max: 1200px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-primary-hover);
}

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

ul {
  list-style: none;
  padding: 0;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

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

/* --- Section --- */
.section {
  padding: 96px 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

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

.section-tag {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-warm);
  color: #fff;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(6, 182, 212, 0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

.btn-nav {
  margin-left: 8px;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 16px;
  z-index: 9999;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

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

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* --- Navigation --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-dot {
  color: var(--accent-primary);
}

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

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --- Hero --- */
.hero {
  padding: 160px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-success);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.trust-item svg {
  color: var(--accent-success);
  flex-shrink: 0;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.trust-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-glass-hover);
}

.trust-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-card-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.trust-card-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Branchen Grid --- */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.branche-card {
  display: block;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
  position: relative;
}

.branche-card:hover {
  border-color: var(--accent-primary);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.branche-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.branche-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.branche-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.branche-arrow {
  color: var(--accent-primary);
  font-size: 1.25rem;
  font-weight: 600;
  transition: transform var(--transition-fast);
}

.branche-card:hover .branche-arrow {
  transform: translateX(4px);
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: #fff;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Steps Grid --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Pricing Toggle --- */
.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--bg-card);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle {
  padding: 10px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.pricing-toggle.active {
  background: var(--accent-primary);
  color: #fff;
}

.pricing-toggle:not(.active):hover {
  color: var(--text-primary);
}

/* --- Pricing Grid --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-grid.hidden {
  display: none;
}

.pricing-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.pricing-card.pricing-popular {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 100px;
}

.pricing-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-display);
}

.pricing-price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.pricing-features li {
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.pricing-features li.included::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-4.483 6.18-2.156-2.329a.75.75 0 10-1.108 1.007l2.78 3a.75.75 0 001.161-.061l5.02-6.915z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 18px;
}

.pricing-features li.not-included::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='%23404050'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zM8.28 7.22a.75.75 0 00-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 101.06 1.06L10 11.06l1.72 1.72a.75.75 0 101.06-1.06L11.06 10l1.72-1.72a.75.75 0 00-1.06-1.06L10 8.94 8.28 7.22z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 18px;
}

.pricing-features li.not-included {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(107, 107, 128, 0.3);
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing-note a {
  color: var(--accent-primary);
  text-decoration: underline;
}

/* --- Process Grid --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
}

.process-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.process-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.process-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.process-card p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table thead th {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-weight: 600;
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius-md) 0 0 0;
}

.comparison-table thead th:nth-child(2) {
  background: var(--gradient-primary);
  color: #fff;
}

.comparison-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  text-align: center;
}

.comparison-table tbody td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table tbody tr:hover td {
  background: var(--bg-glass);
}

.comparison-table .check {
  color: var(--accent-success);
  font-size: 1.25rem;
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--accent-danger);
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.5;
}

.comparison-table .partial {
  color: var(--accent-warning);
  font-size: 1.25rem;
  font-weight: 700;
}

/* --- DSGVO Grid --- */
.dsgvo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dsgvo-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.dsgvo-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.dsgvo-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.dsgvo-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.dsgvo-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--gradient-hero);
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-logo .logo-dot {
  color: var(--accent-primary);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

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

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

.footer-col a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* --- Contact Form --- */
.contact-section {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contact-detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--accent-danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b6b80' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 3.5L11.5 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

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

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent-primary);
}

.form-privacy label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.form-message {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.875rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-success);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--accent-danger);
}

/* --- Branchen Page Styles --- */
.branche-hero {
  padding: 160px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.branche-hero .hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.branche-hero-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.branche-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.branche-feature-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.branche-feature-card h4 {
  color: var(--accent-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.branche-feature-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.branche-usecases {
  margin-bottom: 64px;
}

.branche-usecases h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.usecase-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.usecase-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.usecase-item svg {
  flex-shrink: 0;
  color: var(--accent-success);
  margin-top: 2px;
}

.usecase-item span {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
    --nav-height: 56px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    font-size: 1.125rem;
    padding: 8px 0;
  }

  .nav-menu .btn-nav {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero */
  .hero {
    padding: 120px 0 64px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Trust Bar */
  .trust-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Branchen */
  .branchen-grid {
    grid-template-columns: 1fr;
  }

  .branche-card {
    padding: 24px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-toggle-wrapper {
    width: 100%;
  }

  .pricing-toggle {
    flex: 1;
    text-align: center;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* Comparison */
  .comparison-table {
    font-size: 0.8125rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 12px;
  }

  /* DSGVO */
  .dsgvo-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-title {
    font-size: 1.75rem;
  }

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

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Branche */
  .branche-features-grid {
    grid-template-columns: 1fr;
  }

  .usecase-list {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 24px;
  }

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

  .footer-grid .footer-col:first-child {
    grid-column: auto;
  }
}

/* --- Utility Classes --- */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-card,
.branche-card,
.step-card,
.process-card,
.dsgvo-card,
.pricing-card {
  animation: fadeIn 0.5s ease forwards;
}

/* Print styles */
@media print {
  .nav-header, .cookie-banner, .cta-section, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
  .section-alt { background: #f5f5f5; }
  a { color: #000; text-decoration: underline; }
}
.hero-example {
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.pricing-badge-card {
  position: relative;
}

/* ================================================
   FIX 2: Space Grotesk for all headings
   ================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* ================================================
   FIX 1: Animierter Chat-Mockup im Hero
   ================================================ */
.chat-mockup {
  max-width: 420px;
  margin: 24px auto 20px;
  background: rgba(15, 15, 22, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chat-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
}

.chat-mockup-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-success);
  border-radius: 50%;
  flex-shrink: 0;
}

.chat-mockup-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.chat-mockup-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
}

.chat-mockup-body {
  padding: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: chatBubbleIn 0.4s ease forwards;
}

.chat-bubble-user {
  align-self: flex-end;
  background: var(--gradient-primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-bubble-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-bottom-left-radius: 4px;
}

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

/* ================================================
   FIX 5: Demo Input im Hero
   ================================================ */
.demo-input-wrapper {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 24px;
  background: rgba(15, 15, 22, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition-fast);
}

.demo-input-wrapper:focus-within {
  border-color: var(--accent-warm);
}

.demo-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  padding: 8px 0;
}

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

.demo-send {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gradient-warm);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.demo-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.demo-send:active {
  transform: scale(0.95);
}

.demo-response {
  max-width: 420px;
  margin: 0 auto 24px;
  min-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.demo-response.show {
  opacity: 1;
  transform: translateY(0);
}

.demo-response-bubble {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text-primary);
}

/* ================================================
   FIX 3: Scroll Reveal Animations
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   Mobile Anpassungen für Chat-Mockup + Demo-Input
   ================================================ */
@media (max-width: 768px) {
  .chat-mockup {
    max-width: 100%;
    margin: 16px 0 16px;
  }

  .chat-bubble {
    max-width: 85%;
    font-size: 0.8125rem;
  }

  .demo-input-wrapper {
    max-width: 100%;
    margin: 0 0 16px;
  }

  .demo-response {
    max-width: 100%;
    margin: 0 0 16px;
  }
}

@media (max-width: 480px) {
  .chat-mockup-body {
    min-height: 160px;
  }

  .chat-bubble {
    max-width: 88%;
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}


/* ================================================
   Improvement 1: Anti-Tech Slogan (Hero)
   ================================================ */
.hero-anti-tech {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 8px 0 24px;
  letter-spacing: 0.01em;
}

.anti-tech-pipe {
  color: var(--accent-warm);
  opacity: 0.6;
  margin: 0 6px;
}

/* ================================================
   Improvement 2: Social Proof Badge
   ================================================ */
.social-proof-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-gold);
  background: rgba(249, 178, 52, 0.08);
  margin: 0 0 20px;
  animation: social-proof-pulse 2.5s ease-in-out infinite;
  letter-spacing: 0.01em;
}

@keyframes social-proof-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 178, 52, 0.3);
    border-color: var(--accent-gold);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(249, 178, 52, 0);
    border-color: rgba(249, 178, 52, 0.7);
  }
}

/* ================================================
   Improvement 3: Telegram Platform Button (Hero)
   ================================================ */
.telegram-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(36, 161, 222, 0.3);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0 0 24px;
  transition: all var(--transition-fast);
}

.telegram-platform-btn:hover {
  background: rgba(36, 161, 222, 0.1);
  border-color: rgba(36, 161, 222, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(36, 161, 222, 0.2);
}

.telegram-platform-btn .telegram-icon {
  color: #24a1de;
  flex-shrink: 0;
}

/* ================================================
   Improvement 4: Nutzer-Story Cards
   ================================================ */
#nutzer-story {
  background-color: var(--bg-primary);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.story-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-warm);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.story-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
}

.story-card:hover::before {
  opacity: 1;
}

.story-avatar {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 16px;
}

.story-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.story-name {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
}

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

.story-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent-warm);
  padding-left: 16px;
  margin: 0;
  font-style: italic;
}

/* ================================================
   Improvement 5: Slogan Section (pre-footer)
   ================================================ */
.slogan-section {
  padding: 64px 0;
  text-align: center;
  background: var(--bg-primary);
}

.slogan-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.slogan-dot {
  color: var(--accent-warm);
  -webkit-text-fill-color: var(--accent-warm);
  margin: 0 4px;
}

.slogan-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ================================================
   Mobile Adjustments
   ================================================ */
@media (max-width: 768px) {
  .social-proof-badge {
    display: block;
    text-align: center;
    max-width: 280px;
    margin: 0 auto 20px;
  }

  .telegram-platform-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-card {
    padding: 24px 20px;
  }

  .hero-anti-tech {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-anti-tech {
    font-size: 0.6875rem;
    line-height: 1.5;
  }

  .anti-tech-pipe {
    margin: 0 4px;
  }

  .social-proof-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .slogan-title {
    font-size: 1.75rem;
  }

  .slogan-subtitle {
    font-size: 0.8125rem;
  }
}

/* === CONTRAST ENHANCEMENTS (Webdesigner Agent) === */

/* Feature cards: stronger border + subtle gradient glow on hover */
.feature-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #1e1e35 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.feature-card:hover {
  border-color: rgba(249, 178, 52, 0.4);
  background: linear-gradient(135deg, #252540 0%, #2a2a4a 100%);
  box-shadow: 0 8px 30px rgba(249, 178, 52, 0.1), 0 0 0 1px rgba(249, 178, 52, 0.15);
  transform: translateY(-3px);
}
.feature-card .feature-icon {
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.3));
}

/* Pricing cards: more visible, popular card glows */
.pricing-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #1e1e35 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.pricing-card:hover {
  border-color: rgba(249, 178, 52, 0.4);
  box-shadow: 0 8px 30px rgba(249, 178, 52, 0.12);
  transform: translateY(-3px);
}
.pricing-card.pricing-popular {
  border-color: rgba(249, 178, 52, 0.3);
  box-shadow: 0 0 20px rgba(249, 178, 52, 0.08), 0 4px 20px rgba(0, 0, 0, 0.3);
}
.pricing-card.pricing-popular:hover {
  border-color: rgba(249, 178, 52, 0.6);
  box-shadow: 0 0 30px rgba(249, 178, 52, 0.15), 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* DSGVO cards: warmer accent */
.dsgvo-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #1e1e35 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.dsgvo-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: linear-gradient(135deg, #252540 0%, #2a2a4a 100%);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.1);
  transform: translateY(-3px);
}
.dsgvo-card .dsgvo-icon {
  filter: drop-shadow(0 0 8px rgba(249, 178, 52, 0.3));
}

/* Story cards: warm glow */
.story-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #1e1e35 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.story-card:hover {
  border-color: rgba(249, 178, 52, 0.3);
  box-shadow: 0 8px 30px rgba(249, 178, 52, 0.1);
  transform: translateY(-3px);
}

/* Step cards: accent border */
.step-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #1e1e35 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.step-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.08);
}

/* Trust cards: subtle warm tint */
.trust-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(30, 30, 53, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.trust-card:hover {
  border-color: rgba(249, 178, 52, 0.3);
  background: linear-gradient(135deg, rgba(37, 37, 64, 0.8) 0%, rgba(42, 42, 74, 0.8) 100%);
}

/* Chat mockup: stronger contrast */
.chat-mockup {
  background: linear-gradient(135deg, #0d0d18 0%, #15152a 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.chat-bubble-bot {
  background: linear-gradient(135deg, #1e293b 0%, #243044 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.chat-bubble-user {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.2);
}

/* Demo input: stronger glass effect */
.demo-input-wrapper {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.demo-input-wrapper:focus-within {
  border-color: rgba(249, 178, 52, 0.5);
  box-shadow: 0 0 20px rgba(249, 178, 52, 0.1);
}

/* Section titles: more visible */
.section-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero example: gold glow */
.hero-example {
  text-shadow: 0 0 20px rgba(249, 178, 52, 0.3);
}

/* Pricing badge: stronger contrast */
.pricing-badge {
  box-shadow: 0 2px 10px rgba(249, 178, 52, 0.3);
}

/* Telegram platform button: stronger */
.telegram-platform-btn {
  background: linear-gradient(135deg, rgba(36, 161, 222, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(36, 161, 222, 0.3);
  box-shadow: 0 4px 20px rgba(36, 161, 222, 0.1);
}
.telegram-platform-btn:hover {
  background: linear-gradient(135deg, rgba(36, 161, 222, 0.25) 0%, rgba(6, 182, 212, 0.15) 100%);
  border-color: rgba(36, 161, 222, 0.5);
  box-shadow: 0 6px 25px rgba(36, 161, 222, 0.15);
}

/* Social proof badge: pulse glow */
.early-adopter-badge {
  background: linear-gradient(135deg, rgba(249, 178, 52, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
  border: 1px solid rgba(249, 178, 52, 0.3);
  box-shadow: 0 0 15px rgba(249, 178, 52, 0.1);
}

/* Slogan section: gradient text stronger */
.slogan-text {
  text-shadow: 0 0 30px rgba(249, 178, 52, 0.2), 0 0 60px rgba(249, 115, 22, 0.1);
}

/* === CLOSING SECTION (replaces DSGVO + CTA + Slogan) === */
.closing-section {
  padding: 4rem 5%;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0f 0%, #0d0d18 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.closing-content {
  max-width: 600px;
  margin: 0 auto;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #f97316 0%, #f9b234 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.btn-pulse {
  animation: btn-pulse 2.5s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(249, 115, 22, 0.5), 0 0 0 4px rgba(249, 115, 22, 0.1); }
}

/* === MINIMAL FOOTER === */
.footer-minimal {
  padding: 1.5rem 5%;
  background: #08080f;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-minimal-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-minimal-inner a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-minimal-inner a:hover {
  color: var(--accent-gold);
}
.footer-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ================================================
   v9 B2C Improvements - Luzia/Replika-inspired
   ================================================ */

/* --- Hero Demo Input (zentral) --- */
.hero-demo-input {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  order: -1; /* erscheint vor Chat-Mockup */
}

.demo-input-hero {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.demo-input-hero:focus-within {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.demo-input-hero .demo-input {
  font-size: 1.05rem;
  padding: 14px 16px;
}

.demo-input-hero .demo-send {
  width: 44px;
  height: 44px;
}

/* --- Chat Mockup Compact (kleiner nach Input) --- */
.chat-mockup-compact {
  max-width: 360px;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
  transform: scale(0.92);
}

/* --- Platform Badge (App-Store-Style) --- */
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.platform-badge:hover {
  background: #252540;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.platform-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0088cc, #00a8e8);
  border-radius: 8px;
  color: #fff;
  flex-shrink: 0;
}

.platform-badge-icon svg {
  width: 22px;
  height: 22px;
}

.platform-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.platform-badge-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-badge-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* --- Pricing Grid 2-Col --- */
.pricing-grid-2 {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pricing-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Student Badge auf Free Card --- */
.pricing-badge-student {
  background: linear-gradient(135deg, #4a90d9, #5ba0e9);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* --- Family Pricing Link --- */
.pricing-link-family {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.pricing-link-family:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

/* --- Feature Desc (shorter, lighter) --- */
.feature-card .feature-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* --- Story Grid 3-Col --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Mobile Platform Badge --- */
@media (max-width: 480px) {
  .platform-badge {
    padding: 8px 14px;
  }
  .platform-badge-icon {
    width: 30px;
    height: 30px;
  }
  .platform-badge-name {
    font-size: 1rem;
  }
  .hero-demo-input {
    order: -1;
  }
  .chat-mockup-compact {
    display: none;
  }
}

/* ================================================
   Feature-Media-Rows (Clips in Feature-Sektion)
   ================================================ */

/* --- How-it-works Hero Visual --- */
.howit-works-hero {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.howit-works-hero-text {
  flex: 1 1 50%;
}

.howit-works-hero-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.howit-works-hero-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.howit-works-hero-visual {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Feature-Media-Row Layout --- */
.feature-media-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-media-row:last-of-type {
  border-bottom: none;
}

.feature-media-row-reverse {
  flex-direction: row-reverse;
}

.feature-media-text {
  flex: 1 1 45%;
}

.feature-media-text .feature-icon {
  margin-bottom: 16px;
}

.feature-media-text .feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.feature-media-text .feature-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.feature-media-visual {
  flex: 1 1 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Clip Visual Styles --- */
.clip-visual {
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: block;
}

.clip-visual-gif {
  object-fit: cover;
  height: auto;
}

.clip-visual-video {
  object-fit: contain;
  background: var(--bg-primary);
}

/* --- Compact Features Grid (Dokumente + DSGVO) --- */
.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* --- Responsive: Feature-Media-Rows --- */
@media (max-width: 768px) {
  .howit-works-hero {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .howit-works-hero-visual {
    order: -1;
  }

  .feature-media-row,
  .feature-media-row-reverse {
    flex-direction: column;
    gap: 20px;
    padding: 28px 0;
  }

  .feature-media-visual {
    order: -1;
    width: 100%;
  }

  .feature-media-text {
    width: 100%;
  }

  .clip-visual {
    max-width: 100%;
  }

  .features-grid-compact {
    grid-template-columns: 1fr;
  }
}
