/* ==========================================================================
   Direktvertrieb360 Landing Page Stylesheet
   Complete, production-ready CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #DBEAFE;
  --accent: #F97316;
  --accent-dark: #EA580C;
  --accent-light: #FFF7ED;
  --secondary: #0F172A;
  --bg: #F8FAFC;
  --text: #334155;
  --text-light: #64748B;
  --border: #E2E8F0;
  --success: #16A34A;
  --white: #FFFFFF;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

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

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

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   3. Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   4. Navigation (.landing-nav)
   -------------------------------------------------------------------------- */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  transition: color var(--transition-fast);
}

.landing-nav.scrolled .nav-logo {
  color: var(--secondary);
}

.nav-logo img {
  max-height: 40px;
  width: auto;
}

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

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
  border-radius: 1px;
}

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

.landing-nav.scrolled .nav-links a {
  color: var(--text);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  z-index: 1001;
}

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

.landing-nav.scrolled .nav-toggle span {
  background: var(--secondary);
}

.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(6px, -6px);
}

/* --------------------------------------------------------------------------
   5. Hero Section (.hero)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, #0F172A 0%, #1a2744 60%, #1e3050 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-visual {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-full);
  color: #93C5FD;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge i,
.hero-badge svg {
  font-size: 0.75rem;
}

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

.hero h1 .hero-accent {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

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

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

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-trust span i,
.hero-trust span svg {
  color: var(--success);
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   6. App Preview (.app-preview)
   -------------------------------------------------------------------------- */
.app-preview {
  width: 100%;
  max-width: 540px;
  background: #1E293B;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform var(--transition-slow);
  animation: previewFloat 6s ease-in-out infinite;
}

.app-preview:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

@keyframes previewFloat {
  0%, 100% {
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(-10px);
  }
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #0F172A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-header .dots {
  display: flex;
  gap: 6px;
}

.preview-header .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}

.preview-header .dots span:nth-child(1) {
  background: #EF4444;
}

.preview-header .dots span:nth-child(2) {
  background: #EAB308;
}

.preview-header .dots span:nth-child(3) {
  background: #22C55E;
}

.preview-header .title {
  flex: 1;
  text-align: center;
  color: #64748B;
  font-size: 0.8125rem;
  font-weight: 500;
}

.preview-body {
  display: flex;
  min-height: 320px;
}

.preview-sidebar {
  width: 52px;
  background: #0F172A;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-sidebar .sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: #475569;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  cursor: default;
}

.preview-sidebar .sidebar-item:hover {
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.04);
}

.preview-sidebar .sidebar-item.active {
  background: var(--primary);
  color: var(--white);
}

.preview-content {
  flex: 1;
  padding: 24px;
  overflow: hidden;
}

.preview-content .welcome-text {
  color: #94A3B8;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.preview-content .welcome-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.preview-stats .stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
}

.preview-stats .stat-card .stat-value {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.preview-stats .stat-card .stat-label {
  display: block;
  color: #64748B;
  font-size: 0.625rem;
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.preview-chart .chart-title {
  color: #94A3B8;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: #334155;
  min-height: 6px;
  transition: height 0.8s ease;
  animation: chartGrow 1.2s ease forwards;
  transform-origin: bottom;
}

.chart-bar:nth-child(1) { height: 35%; animation-delay: 0.1s; }
.chart-bar:nth-child(2) { height: 55%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.chart-bar:nth-child(4) { height: 70%; animation-delay: 0.4s; }
.chart-bar:nth-child(5) { height: 50%; animation-delay: 0.5s; }
.chart-bar:nth-child(6) { height: 85%; animation-delay: 0.6s; }
.chart-bar:nth-child(7) { height: 65%; animation-delay: 0.7s; }

.chart-bar.active {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.25);
}

@keyframes chartGrow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   7. Section Styles (.section)
   -------------------------------------------------------------------------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-light {
  background: var(--bg);
}

.section-bg-white {
  background: var(--white);
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

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

.feature-card .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

.features-extras {
  display: flex;
  gap: 24px;
}

.features-extras .extra-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.features-extras .extra-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.features-extras .extra-card .extra-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.125rem;
}

.features-extras .extra-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.features-extras .extra-card p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.55;
}

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

.branche-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  cursor: default;
}

.branche-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.branche-card .branche-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  line-height: 1;
  display: block;
}

.branche-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.branche-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   10. Individuell Section (.individuell-content)
   -------------------------------------------------------------------------- */
.individuell-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.individuell-text {
  flex: 1;
  min-width: 0;
}

.individuell-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.individuell-text > p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.individuell-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.individuell-list .list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.individuell-list .list-item .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.125rem;
}

.individuell-list .list-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.individuell-list .list-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.custom-showcase {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-item {
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

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

.showcase-item:nth-child(1) {
  background: var(--primary-light);
}

.showcase-item:nth-child(2) {
  background: var(--accent-light);
}

.showcase-item:nth-child(3) {
  background: #F0FDF4;
}

.showcase-item:nth-child(4) {
  background: #F5F3FF;
}

.showcase-item .showcase-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.showcase-item:nth-child(1) .showcase-icon { color: var(--primary); }
.showcase-item:nth-child(2) .showcase-icon { color: var(--accent); }
.showcase-item:nth-child(3) .showcase-icon { color: var(--success); }
.showcase-item:nth-child(4) .showcase-icon { color: #7C3AED; }

.showcase-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.showcase-item p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. Pricing (.pricing-grid)
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.pricing-card.featured:hover {
  box-shadow: var(--shadow-2xl);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.pricing-card .pricing-name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.pricing-card .pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-price .price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.pricing-price .price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-price .price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.pricing-card .pricing-billing {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.pricing-features {
  margin-bottom: 28px;
}

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

.pricing-features li i,
.pricing-features li svg {
  color: var(--success);
  font-size: 0.875rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-setup {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.pricing-setup .setup-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-setup .setup-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
}

.pricing-setup .setup-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 4px;
}

.pricing-note-box {
  background: var(--accent-light);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note-box p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

.pricing-note-box strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   12. Demo Section (.demo)
   -------------------------------------------------------------------------- */
.demo {
  background: linear-gradient(165deg, #0F172A 0%, #1a2744 100%);
  position: relative;
  overflow: hidden;
}

.demo::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

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

.demo-text {
  position: relative;
  z-index: 2;
}

.demo-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.demo-text > p {
  font-size: 1.125rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 36px;
}

.demo-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.demo-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.demo-benefits .benefit-item .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.15);
  color: #93C5FD;
  font-size: 1rem;
}

.demo-benefits .benefit-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.demo-benefits .benefit-item p {
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.5;
}

.demo-calendar {
  position: relative;
  z-index: 2;
}

.demo-calendar .calendar-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 4 / 3;
}

.demo-calendar .calendar-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --------------------------------------------------------------------------
   13. Footer (.landing-footer)
   -------------------------------------------------------------------------- */
.landing-footer {
  background: #0B1120;
  padding: 64px 0 0;
  color: #94A3B8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  max-height: 35px;
  width: auto;
}

.footer-brand .footer-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
}

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

.footer-brand > p {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li a {
  font-size: 0.9375rem;
  color: #64748B;
  transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i,
.footer-contact-item svg {
  color: #475569;
  margin-top: 3px;
  font-size: 0.875rem;
  min-width: 16px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: #475569;
}

.footer-bottom a {
  color: #64748B;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   14. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --------------------------------------------------------------------------
   15. Animations
   -------------------------------------------------------------------------- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.feature-card.animate-in.visible {
  animation: fadeUp 0.6s ease forwards;
}

.feature-card:nth-child(1).animate-in.visible { animation-delay: 0s; }
.feature-card:nth-child(2).animate-in.visible { animation-delay: 0.1s; }
.feature-card:nth-child(3).animate-in.visible { animation-delay: 0.2s; }
.feature-card:nth-child(4).animate-in.visible { animation-delay: 0.3s; }
.feature-card:nth-child(5).animate-in.visible { animation-delay: 0.4s; }
.feature-card:nth-child(6).animate-in.visible { animation-delay: 0.5s; }

.branche-card.animate-in.visible {
  animation: fadeUp 0.5s ease forwards;
}

.branche-card:nth-child(1).animate-in.visible { animation-delay: 0s; }
.branche-card:nth-child(2).animate-in.visible { animation-delay: 0.05s; }
.branche-card:nth-child(3).animate-in.visible { animation-delay: 0.1s; }
.branche-card:nth-child(4).animate-in.visible { animation-delay: 0.15s; }
.branche-card:nth-child(5).animate-in.visible { animation-delay: 0.2s; }
.branche-card:nth-child(6).animate-in.visible { animation-delay: 0.25s; }

.pricing-card.animate-in.visible {
  animation: fadeUp 0.6s ease forwards;
}

.pricing-card:nth-child(1).animate-in.visible { animation-delay: 0s; }
.pricing-card:nth-child(2).animate-in.visible { animation-delay: 0.15s; }

/* --------------------------------------------------------------------------
   16. Utility Classes
   -------------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* --------------------------------------------------------------------------
   17. Responsive - Tablet (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branchen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .individuell-content {
    gap: 40px;
  }

  .demo-content {
    gap: 40px;
  }

  .section-header h2 {
    font-size: 2.125rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
  }

  .app-preview {
    max-width: 460px;
  }
}

/* --------------------------------------------------------------------------
   18. Responsive - Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

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

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

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

  .hero-subtitle {
    font-size: 1.0625rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    justify-content: center;
  }

  .app-preview {
    max-width: 100%;
    transform: perspective(1200px) rotateY(0deg) rotateX(2deg);
    animation: none;
  }

  .app-preview:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
  }

  .preview-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .preview-stats .stat-card {
    padding: 10px 6px;
  }

  .preview-stats .stat-card .stat-value {
    font-size: 1rem;
  }

  /* Sections Mobile */
  .section-header {
    margin-bottom: 48px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .features-extras {
    flex-direction: column;
    gap: 12px;
  }

  /* Branchen Mobile */
  .branchen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .branche-card {
    padding: 24px 12px;
  }

  .branche-card .branche-icon {
    font-size: 2rem;
  }

  /* Individuell Mobile */
  .individuell-content {
    flex-direction: column;
    gap: 40px;
  }

  .individuell-text h2 {
    font-size: 1.75rem;
  }

  .custom-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .showcase-item {
    padding: 22px 16px;
  }

  /* Pricing Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 20px;
  }

  .pricing-card {
    padding: 32px 28px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-price .price-amount {
    font-size: 2.75rem;
  }

  /* Demo Mobile */
  .demo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-text h2 {
    font-size: 1.75rem;
  }

  .demo-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .demo-calendar .calendar-wrapper {
    aspect-ratio: auto;
    min-height: 400px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand > p {
    max-width: 100%;
  }

  /* Buttons Mobile */
  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------
   19. Responsive - Small Mobile (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

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

  .branchen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .branche-card {
    padding: 20px 10px;
  }

  .branche-card .branche-icon {
    font-size: 1.75rem;
  }

  .custom-showcase {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-price .price-amount {
    font-size: 2.25rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   20. Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .landing-nav,
  .nav-toggle,
  .demo-calendar {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    background: var(--white);
  }

  .hero h1 {
    color: var(--secondary);
  }

  .section {
    padding: 32px 0;
  }

  .feature-card,
  .pricing-card,
  .branche-card {
    break-inside: avoid;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}
