:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --accent: #c0392b;
  --accent-dark: #a93226;
  --accent-light: rgba(192,57,43,0.08);
  --text: #1a1a1a;
  --muted: #666666;
  --border: #e0e0e0;
  --green: #1a7a5c;
  --green-light: rgba(26,122,92,0.08);
  --red: #c0392b;
  --red-light: rgba(192,57,43,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --font-heading: "Libre Baskerville", Georgia, serif;
  --font-body: "Source Serif Pro", Georgia, serif;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

a:hover {
  color: var(--accent-dark);
}

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

h1 { font-size: clamp(30px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }

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

.section {
  padding: 100px 0;
}

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

.section-heading {
  margin-bottom: 48px;
  max-width: 700px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
  line-height: 1.3;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
}

.btn-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@keyframes pulse-subtle {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}

.pulse-subtle {
  animation: pulse-subtle 2.5s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: rgba(250,250,250,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(250,250,250,0.95);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

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

.brand-logo {
  width: 180px;
  height: 40px;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  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: 16px;
  width: 100%;
  padding: 0 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  transition: color 0.3s ease;
}

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

.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav-cta {
  width: 100%;
  max-width: 300px;
  margin-top: 8px;
}

.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f0eb 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
}

.trust-strip {
  background: var(--text);
  padding: 48px 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-stat {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-stat svg {
  opacity: 0.7;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.trust-plus,
.trust-percent {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.trust-label {
  font-size: 14px;
  opacity: 0.75;
  font-weight: 400;
}

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

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.zielgruppe {
  background: #f5f0eb;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.audience-col {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border);
}

.audience-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  margin-bottom: 24px;
}

.audience-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.audience-col li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.audience-yes {
  border-left: 4px solid var(--green);
}

.audience-no {
  border-left: 4px solid var(--red);
}

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

.steps-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 50%;
  color: var(--accent);
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  flex-shrink: 0;
}

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

.mentor-section {
  background: #f5f0eb;
}

.mentor-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
}

.mentor-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 580px;
}

.mentor-text .section-label {
  margin-bottom: 8px;
}

.mentor-text h2 {
  margin-bottom: 4px;
}

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

.mentor-text blockquote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 32px;
}

.mentor-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.mentor-office-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.erfahrungen {
  background: var(--bg);
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 32px;
}

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

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

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

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

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

.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

.faq-section {
  background: #f5f0eb;
}

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  min-height: 48px;
  transition: color 0.3s ease;
}

.faq-toggle:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}

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

.faq-cta p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.kontakt-section {
  background: var(--text);
  color: #fff;
  padding: 100px 0;
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
}

.kontakt-info h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
}

.kontakt-info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 16px;
}

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

.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.kontakt-detail a,
.kontakt-detail span {
  color: rgba(255,255,255,0.85);
}

.kontakt-detail a:hover {
  color: #fff;
}

.kontakt-detail svg {
  flex-shrink: 0;
  color: var(--accent);
}

.kontakt-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.kontakt-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.kontakt-trust-item svg {
  color: rgba(255,255,255,0.5);
}

.kontakt-image {
  border-radius: var(--radius-md);
  opacity: 0.7;
}

.kontakt-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

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

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

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

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 48px;
  width: 100%;
}

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

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

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

.form-checkbox label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

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

.form-error {
  font-size: 12px;
  color: var(--accent);
  min-height: 0;
  transition: min-height 0.3s ease;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--accent);
}

.form-group.error .form-error {
  min-height: 16px;
}

.btn-submit {
  width: 100%;
  font-size: 17px;
  padding: 16px;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

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

.form-success h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--green);
}

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

.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

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

.footer-brand .brand-logo {
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col address {
  font-style: normal;
}

.footer-col address p {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-col address a {
  color: rgba(255,255,255,0.7);
}

.footer-col address a:hover {
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 8000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.3);
}

.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 -4px 24px rgba(0,0,0,0.1);
  padding: 20px;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 44px;
  min-width: 100px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: all 0.3s ease;
}

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

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

.btn-cookie-accept:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-cookie-reject {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

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

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

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

.cookie-modal-close:hover {
  background: var(--accent-light);
  color: var(--accent);
}

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

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

.cookie-option {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 6px;
}

.cookie-option label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.cookie-option p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  padding-left: 28px;
}

.btn-cookie-save {
  width: 100%;
  margin-top: 20px;
}

.legal-section {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 80px;
}

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

.legal-container h1 {
  margin-bottom: 8px;
}

.legal-container h1 + p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-container h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-container p {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-container ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-container ul li {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-container a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-form-template {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 16px 0 24px;
}

.legal-form-template p {
  font-size: 14px;
  margin-bottom: 8px;
}

.table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-wrap th,
.table-wrap td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

.table-wrap th {
  background: var(--bg);
  font-weight: 700;
  color: var(--text);
}

.table-wrap td {
  color: var(--muted);
}

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

.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.anim-fade-up.animated {
  animation: fadeUp 0.6s ease forwards;
}

@media (max-width: 1024px) {
  .header-nav {
    gap: 20px;
  }

  .header-phone span {
    display: none;
  }

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

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

  .kontakt-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 16px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 48px;
  }

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

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

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

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-number {
    font-size: 32px;
  }

  .trust-plus,
  .trust-percent {
    font-size: 22px;
  }

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

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

  .steps-timeline {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .step {
    max-width: 100%;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
    margin: 8px 0;
  }

  .mentor-inner {
    grid-template-columns: 1fr;
  }

  .mentor-image {
    order: 1;
  }

  .mentor-text {
    order: 2;
  }

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

  .faq-toggle {
    font-size: 15px;
    padding: 16px 16px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
  }

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

  .kontakt-form-wrap {
    padding: 24px 16px;
  }

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

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

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .btn-cookie {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

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

  .floating-cta span {
    display: none;
  }

  .floating-cta {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .legal-section {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-number {
    font-size: 28px;
  }

  .trust-label {
    font-size: 12px;
  }

  .benefit-card {
    padding: 24px;
  }

  .step-number {
    font-size: 36px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .hero-trust {
    gap: 16px;
  }
}