/* =============================================
   CHEMO CAPS - Modern Website Stylesheet
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* CSS Variables */
:root {
  --primary: #7C3AED;
  --primary-light: #A78BFA;
  --primary-dark: #5B21B6;
  --secondary: #DB2777;
  --secondary-light: #F9A8D4;
  --accent: #059669;
  --accent-light: #34D399;
  --bg-light: #FAFAFA;
  --bg-purple: #F5F3FF;
  --bg-pink: #FDF2F8;
  --text-dark: #1E1B4B;
  --text-medium: #4B5563;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 4px 6px -1px rgba(124,58,237,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 40px -10px rgba(124,58,237,0.2);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Typography */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.serif { font-family: 'Playfair Display', Georgia, serif; }

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

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER / NAVIGATION ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,0.1);
  box-shadow: 0 2px 20px rgba(124,58,237,0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nav-logo .logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: -4px;
  -webkit-text-fill-color: var(--text-light);
}

/* Main Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--bg-purple);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124,58,237,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  display: block;
  font-size: 1.1rem;
  padding: 14px 16px;
  border-radius: 12px;
}

.mobile-nav .btn-nav-cta {
  display: block;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  font-size: 1rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124,58,237,0.45);
}

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

.btn-secondary:hover {
  background: var(--bg-purple);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #0EA5E9);
  color: white;
  box-shadow: 0 4px 20px rgba(5,150,105,0.35);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5,150,105,0.45);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #EDE9FE 0%, #FCE7F3 50%, #FDF4FF 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(219,39,119,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(124,58,237,0.2);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.hero-badge span { font-size: 1rem; }

.hero-title {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-medium);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(219,39,119,0.1));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px dashed rgba(124,58,237,0.2);
}

.hero-image-placeholder .img-icon { font-size: 5rem; }
.hero-image-placeholder p { color: var(--text-medium); font-size: 0.9rem; text-align: center; }

.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 { top: 60px; left: -20px; animation-delay: 0s; }
.hero-floating-card.card-2 { bottom: 80px; right: -20px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-floating-card .card-icon { font-size: 2rem; }
.hero-floating-card .card-text strong { display: block; font-size: 0.9rem; font-weight: 600; }
.hero-floating-card .card-text span { font-size: 0.78rem; color: var(--text-medium); }

/* ============ LEAD CAPTURE SECTION ============ */
.lead-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.lead-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.lead-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lead-strip h2 { color: white; margin-bottom: 12px; }
.lead-strip p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.lead-form input::placeholder, .lead-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: white;
  background: rgba(255,255,255,0.25);
}

.lead-form select option { color: var(--text-dark); background: white; }

.lead-form .btn-submit {
  width: 100%;
  padding: 16px;
  background: white;
  color: var(--primary);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.lead-form .btn-submit:hover {
  background: #F5F3FF;
  transform: translateY(-2px);
}

.form-privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* ============ SECTION STYLES ============ */
.section {
  padding: 96px 0;
}

.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--bg-purple);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-medium); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ============ PRODUCT CARDS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,0.2);
}

.product-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.product-card-body p { color: var(--text-medium); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6; }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.product-price { font-size: 0.85rem; color: var(--text-medium); }
.product-price strong { color: var(--primary); font-size: 1.1rem; }

/* ============ USP / FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(124,58,237,0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-pink));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.feature-card h4 { margin-bottom: 10px; font-size: 1rem; }
.feature-card p { color: var(--text-medium); font-size: 0.88rem; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.testimonial-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 16px; }

.testimonial-text {
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.9rem; }
.author-info span { font-size: 0.78rem; color: var(--text-light); }

/* ============ BLOG CARDS ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-card-body { padding: 24px; }
.blog-card-tag {
  display: inline-block;
  background: var(--bg-purple);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { color: var(--text-medium); font-size: 0.88rem; margin-bottom: 16px; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-light); }
.blog-read-more { color: var(--primary); font-weight: 600; font-size: 0.88rem; }
.blog-read-more:hover { color: var(--primary-dark); }

/* ============ AD BANNERS ============ */
.ad-banner {
  border: 2px dashed rgba(124,58,237,0.4);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124,58,237,0.04), rgba(219,39,119,0.04));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ad-banner::before {
  content: 'WERBEPLATZ';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(124,58,237,0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.ad-banner:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(219,39,119,0.08));
}

.ad-banner .ad-icon { font-size: 2rem; opacity: 0.5; }
.ad-banner .ad-title { font-size: 0.85rem; font-weight: 700; color: var(--primary); }
.ad-banner .ad-size { font-size: 0.75rem; color: var(--text-light); }
.ad-banner .ad-desc { font-size: 0.78rem; color: var(--text-medium); max-width: 220px; }

.ad-pricing {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4px 0;
}

.ad-price-tag {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.ad-price-tag span { color: var(--secondary); }

.ad-banner .btn-ad {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 4px;
}

.ad-banner .btn-ad:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(124,58,237,0.4); }

/* Ad sizes */
.ad-leaderboard { min-height: 110px; } /* 728x90 approx */
.ad-rectangle { width: 300px; min-height: 260px; }
.ad-skyscraper { width: 200px; min-height: 620px; }
.ad-square { min-height: 260px; }

/* Sidebar layout with ad */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: start;
}

.sidebar-sticky { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }

/* Ad section wrapper */
.ad-section { padding: 40px 0; background: rgba(124,58,237,0.03); }
.ad-section-header { text-align: center; margin-bottom: 24px; }
.ad-section-header h3 { font-size: 1rem; color: var(--text-medium); font-weight: 500; }
.ad-section-header span { font-size: 0.75rem; color: var(--text-light); }

/* ============ INFO BOXES ============ */
.info-box {
  padding: 24px;
  border-radius: var(--radius);
  margin: 24px 0;
}

.info-box-purple { background: var(--bg-purple); border-left: 4px solid var(--primary); }
.info-box-pink { background: var(--bg-pink); border-left: 4px solid var(--secondary); }
.info-box-green { background: #F0FDF4; border-left: 4px solid var(--accent); }

.info-box h4 { margin-bottom: 8px; font-size: 1rem; }
.info-box p { font-size: 0.92rem; color: var(--text-medium); }

/* ============ ACCORDION / FAQ ============ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: var(--transition);
  cursor: pointer;
}

.faq-question:hover { background: var(--bg-purple); color: var(--primary); }
.faq-question.active { background: var(--bg-purple); color: var(--primary); }
.faq-question .faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-question.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner { padding: 0 24px 20px; color: var(--text-medium); font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info h3 { margin-bottom: 24px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.92rem; color: var(--text-medium); }
.contact-info-item a:hover { color: var(--primary); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--bg-purple) 0%, var(--bg-pink) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .breadcrumb {
  font-size: 0.82rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.page-hero .breadcrumb a { color: var(--primary); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-medium); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-pink));
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.about-content .section-tag { text-align: left; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-medium); margin-bottom: 16px; }

.about-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.about-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-pink));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  border: 1px solid rgba(124,58,237,0.1);
}

.newsletter h2 { margin-bottom: 12px; }
.newsletter p { color: var(--text-medium); margin-bottom: 32px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(124,58,237,0.2);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus { border-color: var(--primary); }

/* ============ MATERIAL TAGS ============ */
.material-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.material-tag {
  background: var(--bg-purple);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(124,58,237,0.15);
}

/* ============ SEASON TOGGLE ============ */
.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.season-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.season-card.summer { background: linear-gradient(135deg, #FFF7ED, #FEF9C3); border-color: #FCD34D; }
.season-card.winter { background: linear-gradient(135deg, #EFF6FF, #EDE9FE); border-color: #93C5FD; }
.season-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.season-card ul { display: flex; flex-direction: column; gap: 8px; }
.season-card ul li { font-size: 0.9rem; color: var(--text-medium); display: flex; gap: 8px; align-items: center; }

/* ============ STEPS / PROCESS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h4 { margin-bottom: 8px; }
.step-card p { color: var(--text-medium); font-size: 0.88rem; }

/* ============ PRICING TABLE (Werbung) ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.pricing-card.popular::before {
  content: 'BELIEBTESTE WAHL';
  position: absolute;
  top: 18px;
  right: -30px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 40px;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pricing-duration { font-size: 0.85rem; font-weight: 600; color: var(--text-medium); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-medium); }
.pricing-per { font-size: 0.82rem; color: var(--text-light); margin-bottom: 28px; }
.pricing-features { text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 0.88rem; display: flex; gap: 10px; align-items: center; color: var(--text-medium); }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; }

/* ============ BANNER FORMAT TABLE ============ */
.formats-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.formats-table th { background: var(--bg-purple); color: var(--primary); font-size: 0.85rem; padding: 14px 20px; text-align: left; font-weight: 600; }
.formats-table th:first-child { border-radius: 12px 0 0 0; }
.formats-table th:last-child { border-radius: 0 12px 0 0; }
.formats-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.formats-table tr:last-child td:first-child { border-radius: 0 0 0 12px; }
.formats-table tr:last-child td:last-child { border-radius: 0 0 12px 0; }
.formats-table tr:hover td { background: var(--bg-light); }
.format-badge { background: var(--bg-purple); color: var(--primary); font-size: 0.75rem; padding: 3px 10px; border-radius: 50px; font-weight: 500; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

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

.footer-brand .logo-text { color: white; -webkit-text-fill-color: white; font-size: 1.4rem; font-weight: 800; }
.footer-brand p { font-size: 0.88rem; margin: 16px 0 24px; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); }

.footer-col h5 { color: white; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-legal { display: flex; gap: 24px; }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 100;
  border: none;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px) scale(1.05); }

/* ============ BG VARIANTS ============ */
.bg-light { background: var(--bg-light); }
.bg-purple { background: var(--bg-purple); }
.bg-gradient { background: linear-gradient(135deg, var(--bg-purple) 0%, var(--bg-pink) 100%); }

/* ============ DIVIDER ============ */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 16px auto;
}

.divider-left { margin: 16px 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { gap: 40px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
  .ad-skyscraper { width: 100%; min-height: 120px; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta .btn-nav-cta, .nav-cta .nav-link { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }

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

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 250px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .newsletter { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }

  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }

  .ad-rectangle { width: 100%; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
