/* Verleihpilot Marketing-Site — Stylesheet */

:root {
  --navy:   #0f172a;
  --navy-2: #1e293b;
  --blue:   #2563eb;
  --blue-2: #1e40af;
  --blue-light: #dbeafe;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --green:  #10b981;
  --amber:  #f59e0b;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow:    0 4px 12px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.12);
  --radius:    10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  font-size: 16px;
  background: #fff;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
  position: sticky; top: 0; z-index: 100;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.topbar-logo {
  display: inline-flex; align-items: center;
  height: 65px;
  flex-shrink: 0;
}
.topbar-logo img {
  height: 65px; width: auto; display: block;
}
.topbar-nav { display: flex; gap: 22px; align-items: center; }
.topbar-nav a { color: var(--gray-700); font-weight: 500; font-size: 15px; }
.topbar-nav a:hover { color: var(--blue); text-decoration: none; }
.topbar-cta {
  background: var(--blue); color: #fff !important; padding: 10px 20px;
  border-radius: 8px; font-weight: 600; font-size: 14px;
  transition: background .15s;
}
.topbar-cta:hover { background: var(--blue-2); color: #fff !important; text-decoration: none; }

/* Hero */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.8vw, 52px); line-height: 1.08;
  margin: 0 0 18px; letter-spacing: -0.02em; color: var(--navy);
}
.hero h1 strong { color: var(--blue); }
.hero p.lead {
  font-size: 18px; color: var(--gray-700); margin: 0 0 26px;
  max-width: 580px;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.btn {
  display: inline-block; padding: 13px 24px;
  font-size: 15px; font-weight: 600;
  border-radius: 8px; cursor: pointer; border: none;
  transition: all .15s; text-decoration: none;
}
.btn-primary {
  background: var(--blue); color: #fff;
}
.btn-primary:hover { background: var(--blue-2); color: #fff; text-decoration: none; }
.btn-secondary {
  background: #fff; color: var(--navy); border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.hero-visual {
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.hero-visual img {
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}
.hero-visual p {
  color: var(--navy);
  font-weight: 600;
  margin: 18px 0 0;
}

/* Section */
.section { padding: 80px 0; }
.section-title {
  text-align: center; margin: 0 0 56px;
}
.section-title h2 {
  font-size: clamp(28px, 3.5vw, 38px); margin: 0 0 12px;
  color: var(--navy); letter-spacing: -0.01em;
}
.section-title p {
  font-size: 17px; color: var(--gray-600); max-width: 580px;
  margin: 0 auto;
}
.section-alt { background: var(--gray-50); }

/* Features-Grid */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.feature-card {
  background: #fff; padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all .2s;
}
.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--blue-light); color: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 18px; margin: 0 0 8px; color: var(--navy);
}
.feature-card p {
  margin: 0; color: var(--gray-600); font-size: 15px;
}

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.step {
  text-align: center;
}
.step-num {
  width: 56px; height: 56px; line-height: 56px;
  margin: 0 auto 18px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: 22px;
}
.step h3 { font-size: 19px; margin: 0 0 8px; color: var(--navy); }
.step p { margin: 0; color: var(--gray-600); }

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.price-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative;
  display: flex; flex-direction: column;
}
.price-card.recommended {
  border-color: var(--blue); border-width: 2px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  padding: 5px 14px; font-size: 12px; font-weight: 600;
  border-radius: 14px; letter-spacing: 0.04em;
}
.price-card h3 {
  margin: 0 0 6px; font-size: 22px; color: var(--navy);
}
.price-card .price {
  font-size: 36px; font-weight: 700; color: var(--navy);
  margin: 14px 0 0; line-height: 1.1;
}
.price-card .price small {
  font-size: 14px; font-weight: 400; color: var(--gray-600);
}
.price-card .desc {
  color: var(--gray-600); font-size: 14px; margin: 8px 0 22px;
  min-height: 38px;
}
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.price-card li {
  padding: 8px 0; padding-left: 28px; position: relative;
  color: var(--gray-700); font-size: 14.5px;
}
.price-card li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); color: #fff;
  text-align: center; line-height: 18px;
  font-size: 11px; font-weight: 700;
}
.price-card li.off { color: var(--gray-400); }
.price-card li.off::before {
  content: '–'; background: var(--gray-200); color: var(--gray-400);
}

/* Form */
.signup-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
  max-width: 540px; margin: 0 auto;
}
.signup-card h2 { margin: 0 0 8px; color: var(--navy); }
.signup-card .subtitle {
  color: var(--gray-600); margin: 0 0 28px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-size: 15px; font-family: inherit;
  transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--blue);
}
.form-group .hint {
  font-size: 12.5px; color: var(--gray-600); margin-top: 4px;
}
.form-group .hint.error { color: #dc2626; }
.form-group .hint.ok    { color: var(--green); }

.slug-row {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  overflow: hidden;
}
.slug-row input {
  border: none !important; border-radius: 0 !important;
  flex: 1; padding: 11px 14px; font-size: 15px;
}
.slug-row input:focus { outline: none; }
.slug-row .slug-suffix {
  background: var(--gray-100); color: var(--gray-600);
  padding: 11px 14px; font-size: 14px; font-family: monospace;
  display: flex; align-items: center;
}
.slug-row.focused { border-color: var(--blue); }

.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-700);
}
.checkbox-row input { margin-top: 4px; }

.alert {
  padding: 12px 14px; border-radius: 8px;
  font-size: 14px; margin-bottom: 16px;
}
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-ok    { background: #f0fdf4; color: #14532d; border: 1px solid #bbf7d0; }
.alert-info  { background: #eff6ff; color: #1e3a8a; border: 1px solid #bfdbfe; }

/* CTA-Section */
.cta-section {
  background: var(--navy); color: #fff;
  padding: 72px 0; text-align: center;
}
.cta-section h2 { color: #fff; margin: 0 0 12px; font-size: 32px; }
.cta-section p { color: rgba(255,255,255,0.85); margin: 0 0 28px; font-size: 17px; }
.cta-section .btn-primary {
  background: #fff; color: var(--navy);
}
.cta-section .btn-primary:hover { background: var(--blue-light); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%; padding: 18px 22px;
  background: none; border: none; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-family: inherit;
}
.faq-q::after { content: '+'; color: var(--blue); font-size: 22px; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .2s, padding .2s;
  color: var(--gray-700);
}
.faq-item.open .faq-a {
  padding: 0 22px 18px;
  max-height: 500px;
}

/* About */
.prose { font-size: 16px; color: var(--gray-700); line-height: 1.7; }
.prose h2 { color: var(--navy); margin-top: 36px; margin-bottom: 12px; }
.prose h3 { color: var(--navy); margin-top: 24px; margin-bottom: 8px; font-size: 18px; }
.prose p, .prose li { margin: 8px 0; }

/* Footer */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding: 60px 0 28px; margin-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  color: #fff; font-size: 13px; margin: 0 0 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700;
}
.footer-grid a {
  color: rgba(255,255,255,0.7); display: block;
  padding: 5px 0; font-size: 14px;
}
.footer-grid a:hover { color: #fff; text-decoration: none; }
.footer-logo {
  display: flex; align-items: center;
  margin-bottom: 14px;
  height: 65px;
}
.footer-logo img {
  height: 65px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px; font-size: 13px;
  text-align: center;
}

/* Cookie-Banner */
#cookie-banner {
  position: fixed; bottom: 18px; left: 18px; right: 18px;
  max-width: 760px; margin: 0 auto;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: none; z-index: 9999;
  font-size: 14px;
}
#cookie-banner.show { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
#cookie-banner p { margin: 0; flex: 1; min-width: 260px; }
#cookie-banner .btn { padding: 9px 18px; font-size: 13.5px; }

/* Mobile */
@media (max-width: 880px) {
  .hero-grid, .features-grid, .steps, .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero { padding: 56px 0 40px; }
  .hero-visual img { max-width: 280px; }
  .section { padding: 56px 0; }
  .topbar-logo { height: 65px; }
  .topbar-logo img { height: 65px; }
  .topbar-nav { gap: 14px; font-size: 14px; }
  .topbar-nav a:not(.topbar-cta) { display: none; }
  .signup-card { padding: 28px 20px; }
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: 26px; }
  .footer-grid { gap: 24px; }
}
