:root {
  --bg: #0f0f1a;
  --surface: #1a1a2e;
  --accent: #667eea;
  --text: #ffffff;
  --muted: #a0a0b0;
  --border: #2a2a3e;
  --gradient1: linear-gradient(135deg, #667eea, #764ba2);
  --gradient2: linear-gradient(135deg, #f093fb, #f5576c);
  --gradient3: linear-gradient(135deg, #667eea, #43e97b);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.2);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

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

a:hover {
  color: #8b9cf7;
}

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

ul {
  list-style: none;
}

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

.container-narrow {
  max-width: 800px;
}

.text-center {
  text-align: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 9000;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-logo {
  color: var(--text);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo svg {
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.header-phone:hover {
  color: var(--text);
}

.header-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient1);
  border-radius: 50%;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}

.header-cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
  color: #fff;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 24px;
  padding: 12px 24px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,26,0.85) 0%, rgba(15,15,26,0.7) 50%, rgba(15,15,26,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  background: rgba(102, 126, 234, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
}

.hero-title {
  font-size: 52px;
  margin-bottom: 20px;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-accent {
  background: var(--gradient1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
  color: #fff;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

.btn-text-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.btn-text-link:hover {
  color: #8b9cf7;
}

.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 15px;
  color: var(--muted);
}

.trust-item strong {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.section {
  padding: 100px 0;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient1);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient1);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.timeline-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--muted);
  font-size: 15px;
}

.section-erfahrungen {
  background: var(--surface);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.testimonial-card--accent {
  background: var(--gradient1);
  border: none;
}

.testimonial-card--accent .testimonial-badge {
  color: rgba(255,255,255,0.8);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text);
  opacity: 0.9;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

.testimonial-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.section-mentor {
  background: var(--bg);
  position: relative;
}

.section-mentor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(102,126,234,0.08) 0%, transparent 70%);
}

.mentor-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.mentor-photo-wrapper {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 0 auto 28px;
  padding: 6px;
  background: var(--gradient1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg);
}

.mentor-name {
  font-size: 32px;
  margin-bottom: 4px;
}

.mentor-title {
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

.mentor-quote {
  font-size: 20px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 32px;
  padding: 0 20px;
  line-height: 1.6;
}

.mentor-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mentor-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 100px;
}

.section-stats {
  background: var(--surface);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.8;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

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

.benefit-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
}

.benefit-row--reverse {
  flex-direction: row-reverse;
}

.benefit-icon {
  flex-shrink: 0;
  color: var(--accent);
}

.benefit-text h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.benefit-text p {
  color: var(--muted);
  font-size: 16px;
}

.benefit-divider {
  height: 1px;
  background: var(--border);
}

.section-zielgruppe {
  background: var(--surface);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.persona-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.persona-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--accent);
}

.persona-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.persona-role {
  display: block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.persona-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.persona-helped {
  font-size: 14px;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.persona-cta-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  min-height: 360px;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-question {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  color: var(--text);
  border-color: var(--accent);
}

.faq-question.active {
  background: var(--gradient1);
  color: #fff;
  border-color: transparent;
}

.faq-answers {
  display: flex;
  align-items: flex-start;
}

.faq-answer {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-kontakt {
  background: var(--surface);
  position: relative;
}

.section-kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(102,126,234,0.1) 0%, transparent 60%);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.kontakt-info h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.kontakt-info > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.kontakt-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.kontakt-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  padding: 12px 16px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(102, 126, 234, 0.2);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23a0a0b0' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-group-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

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

.form-group-checkbox label {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.form-group-checkbox label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-error {
  font-size: 13px;
  color: #f5576c;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #f5576c;
}

.form-group.error .form-error,
.form-group-checkbox.error .form-error {
  display: block;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 24px;
  margin-bottom: 8px;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-success p {
  color: var(--muted);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

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

.footer-logo {
  color: var(--text);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all var(--transition);
}

.social-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(102, 126, 234, 0.1);
}

.footer-links-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-col li a {
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.cookie-settings-footer {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: color var(--transition);
  font-family: 'Inter', sans-serif;
}

.cookie-settings-footer:hover {
  color: var(--accent);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient1);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  flex: 1;
  font-size: 14px;
  color: var(--muted);
  min-width: 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-settings,
.btn-cookie-reject {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-height: 48px;
  min-width: 120px;
  transition: all var(--transition);
  border: none;
}

.btn-cookie-accept {
  background: var(--gradient1);
  color: #fff;
}

.btn-cookie-accept:hover {
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

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

.btn-cookie-settings:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.btn-cookie-reject:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: color var(--transition);
}

.cookie-modal-close:hover {
  color: var(--text);
}

.cookie-modal h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.cookie-modal > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.cookie-option:hover {
  border-color: var(--accent);
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.cookie-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-option-text strong {
  font-size: 15px;
}

.cookie-option-text small {
  font-size: 13px;
  color: var(--muted);
}

.cookie-reopen-section {
  margin: 24px 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cookie-reopen-section p {
  margin-bottom: 12px;
}

.legal-page {
  padding-top: 120px;
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 24px;
  background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text);
  -webkit-text-fill-color: var(--text);
}

.legal-page h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0;
}

.legal-page li {
  margin-bottom: 4px;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  .header-nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-cta-btn {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-content {
    padding: 60px 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .container {
    padding: 0 16px;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 12px;
  }

  .trust-divider {
    display: none;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-marker {
    left: -50px;
  }

  .timeline-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .timeline-content {
    padding: 20px;
  }

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

  .mentor-photo-wrapper {
    width: 180px;
    height: 180px;
  }

  .mentor-name {
    font-size: 26px;
  }

  .mentor-quote {
    font-size: 17px;
  }

  .mentor-badges {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-number {
    font-size: 44px;
  }

  .benefit-row,
  .benefit-row--reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

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

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 16px 28px;
    font-size: 16px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cookie-banner-inner {
    flex-direction: column;
    padding: 16px;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-settings,
  .btn-cookie-reject {
    width: 100%;
    min-height: 48px;
  }

  .cookie-modal {
    width: calc(100vw - 32px);
    max-width: 100%;
    max-height: 85vh;
    padding: 24px;
    margin: 16px;
  }

  .legal-page {
    padding-top: 100px;
  }

  .legal-page h1 {
    font-size: 28px;
  }

  .hero-pills {
    flex-direction: column;
    align-items: center;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

  .hero-title {
    font-size: 28px;
  }

  .hero-label {
    font-size: 10px;
    padding: 6px 14px;
  }

  .section {
    padding: 48px 0;
  }

  .timeline {
    padding-left: 44px;
  }

  .timeline::before {
    left: 14px;
  }

  .timeline-marker {
    left: -44px;
  }

  .timeline-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}