/* WeinDesk — Marketing Stylesheet */
:root {
  --wine:      #7B1D1D;
  --wine-dark: #4A0E0E;
  --wine-mid:  #9B2A2A;
  --gold:      #C4952A;
  --gold-light:#E8BB5A;
  --cream:     #FDF6E3;
  --cream-dark:#F5EDD2;
  --brown:     #3D2B1F;
  --brown-mid: #6B4226;
  --text:      #2C1A0E;
  --text-muted:#7A5C44;
  --white:     #FFFFFF;
  --shadow:    0 4px 24px rgba(75,14,14,0.12);
  --shadow-lg: 0 8px 48px rgba(75,14,14,0.18);
  --radius:    10px;
  --radius-lg: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text-muted); }

a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--gold); }

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--cream-dark); }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(74,14,14,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196,149,42,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem; max-width: 1180px; margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white); font-weight: 800; font-size: 1.3rem;
  text-decoration: none;
}
.nav-brand .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--wine-dark) !important;
  padding: 0.5rem 1.2rem; border-radius: 6px; font-weight: 600;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--wine-dark) !important; }

/* ── Hero ── */
#hero {
  background: linear-gradient(155deg, var(--wine-dark) 0%, var(--wine) 45%, #5C1A1A 100%);
  padding: 8rem 0 6rem;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4952A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(196,149,42,0.2); border: 1px solid rgba(196,149,42,0.4);
  color: var(--gold-light); padding: 0.35rem 1rem; border-radius: 20px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}
#hero h1 { color: var(--white); margin-bottom: 1.25rem; }
#hero h1 span { color: var(--gold-light); }
#hero p.lead {
  color: rgba(255,255,255,0.82); font-size: 1.2rem;
  max-width: 600px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold); color: var(--wine-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--wine-dark); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-wine { background: var(--wine); color: var(--white); border-color: var(--wine); }
.btn-wine:hover { background: var(--wine-dark); border-color: var(--wine-dark); color: var(--white); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.stat { color: var(--white); }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold-light); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Pain Points Band ── */
#pain {
  background: var(--wine-dark); padding: 2.5rem 0;
}
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; align-items: center;
}
.pain-item {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.85); font-size: 0.92rem;
}
.pain-item .icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(196,149,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { color: var(--wine-dark); margin-bottom: 0.75rem; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-tag {
  display: inline-block; background: rgba(123,29,29,0.1);
  color: var(--wine); font-size: 0.8rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 20px; margin-bottom: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Features Grid ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(123,29,29,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(123,29,29,0.12), rgba(196,149,42,0.15));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.feature-card h3 { color: var(--wine-dark); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.92rem; line-height: 1.55; }
.feature-badge {
  display: inline-block; margin-top: 0.75rem;
  background: rgba(123,29,29,0.08); color: var(--wine);
  font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.7rem;
  border-radius: 10px;
}

/* ── How It Works ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.step::after {
  content: '→';
  position: absolute; right: -1.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold);
}
.steps-grid .step:last-child::after { display: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--wine-mid));
  color: var(--white); font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step h3 { color: var(--wine-dark); margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; }

/* ── Testimonial ── */
#testimonial { background: linear-gradient(135deg, var(--wine-dark), var(--wine)); padding: 5rem 0; }
.testimonial-box {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.testimonial-quote {
  font-size: 1.35rem; color: var(--white);
  font-style: italic; line-height: 1.7; margin-bottom: 2rem;
}
.testimonial-quote::before { content: '\201C'; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -0.6rem; margin-right: 0.2rem; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--wine-dark);
}
.author-info { text-align: left; }
.author-name { color: var(--white); font-weight: 700; }
.author-role { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.stars { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  border: 2px solid transparent; position: relative;
  transition: all 0.2s;
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-popular {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--wine-dark); font-size: 0.78rem;
  font-weight: 700; padding: 0.25rem 1rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
.pricing-tier { font-size: 0.85rem; font-weight: 700; color: var(--wine); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.pricing-card h3 { color: var(--wine-dark); font-size: 1.5rem; margin-bottom: 0.25rem; }
.pricing-price { margin: 1.25rem 0; }
.pricing-amount { font-size: 2.8rem; font-weight: 800; color: var(--wine-dark); }
.pricing-period { font-size: 0.9rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.9rem; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.5rem 0; font-size: 0.92rem; color: var(--text);
  border-bottom: 1px solid rgba(123,29,29,0.06);
  display: flex; align-items: center; gap: 0.6rem;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.pricing-features li.no::before { content: '–'; color: var(--text-muted); }
.pricing-features li.no { color: var(--text-muted); }

/* ── Demo / CTA Section ── */
#demo-cta {
  background: var(--cream-dark); padding: 5rem 0;
}
.cta-box {
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  border-radius: var(--radius-lg); padding: 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; box-shadow: var(--shadow-lg);
}
.cta-text h2 { color: var(--white); margin-bottom: 1rem; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.handbuch-note { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.handbuch-note span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.demo-form { background: rgba(255,255,255,0.07); border-radius: 12px; padding: 2rem; }
.demo-form h3 { color: var(--white); margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 0.35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.65rem 0.9rem; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: var(--white);
  font-size: 0.95rem; font-family: inherit;
}
.form-group input::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold-light); background: rgba(255,255,255,0.15);
}
.form-group select option { background: var(--wine-dark); }
.form-group textarea { min-height: 80px; resize: vertical; }

/* ── Footer ── */
footer {
  background: var(--wine-dark); color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand { color: var(--white); font-size: 1.3rem; font-weight: 800; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 { color: var(--gold-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.85rem; flex-wrap: wrap; gap: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .cta-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
}
