:root {
  --bg: #faf6f1;
  --surface: #f0e8dc;
  --accent: #8b6f47;
  --accent-hover: #7a5f3a;
  --text: #2d2017;
  --muted: #7a6b5d;
  --border: #d4c4b0;
  --white: #ffffff;
  --dark: #1e1710;
  --green: #3a7d44;
  --red: #b5403a;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(45,32,23,0.06);
  --shadow-md: 0 4px 20px rgba(45,32,23,0.1);
  --shadow-lg: 0 8px 40px rgba(45,32,23,0.14);
  --transition: 0.3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
}

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

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

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

body.no-scroll {
  overflow: hidden;
}

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

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

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

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

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

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  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: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  min-height: 48px;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

@keyframes pulse-subtle-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,111,71,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(139,111,71,0); }
}

.pulse-subtle {
  animation: pulse-subtle-anim 2.5s infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250,246,241,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(250,246,241,0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

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

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

.logo-svg {
  height: 36px;
  width: auto;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  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: 0.88rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: none;
  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);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

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

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  text-align: center;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.mobile-nav-phone {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 12px;
}

.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 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: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}

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

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

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

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 6/5;
}

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

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

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

.trust-stat svg {
  opacity: 0.7;
}

.trust-number,
.trust-number-text {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.trust-plus,
.trust-percent {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.trust-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

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

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

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

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

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

.fit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}

.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.fit-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.fit-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

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

.steps-timeline {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

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

.step-connector {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin-bottom: 16px;
}

.step-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  transition: all var(--transition);
}

.step-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

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

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--muted);
}

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

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

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

.mentor-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.mentor-text h2 {
  font-size: 2.4rem;
  margin-bottom: 4px;
}

.mentor-title {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}

.mentor-text blockquote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 28px;
}

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

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

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

.mentor-office-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 400px;
}

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

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

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

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

.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: 0.92rem;
  font-weight: 600;
}

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

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

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

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

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

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

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.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: 0.95rem;
  line-height: 1.6;
}

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

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

.faq-cta p {
  margin-bottom: 16px;
  color: var(--muted);
}

.kontakt-section {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
}

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

.kontakt-info h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

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

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

.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
}

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

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

.kontakt-detail a:hover {
  color: var(--white);
}

.kontakt-trust {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

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

.kontakt-trust-item svg {
  color: var(--accent);
  opacity: 0.7;
}

.kontakt-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0.85;
  max-width: 100%;
}

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

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

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

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

.form-group label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

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

.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: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  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 rgba(139,111,71,0.15);
}

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

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

.form-error {
  font-size: 0.8rem;
  color: var(--red);
  min-height: 18px;
}

.form-checkbox-group {
  gap: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  cursor: pointer;
  line-height: 1.5;
  color: var(--text);
}

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

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

.btn-submit {
  width: 100%;
  font-size: 1.05rem;
  padding: 16px 28px;
}

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

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

.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text);
}

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

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  color: rgba(255,255,255,0.9);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact address p {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact address svg {
  flex-shrink: 0;
  opacity: 0.6;
}

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

.footer-contact a:hover {
  color: var(--white);
}

.footer-legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
}

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

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 84px;
  z-index: 899;
}

.btn-sticky {
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  padding: 12px 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px 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;
  flex-wrap: wrap;
}

.cookie-banner-text p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  min-height: 44px;
  min-width: 100px;
  border: 2px solid var(--accent);
  transition: all var(--transition);
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
}

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

.btn-cookie-settings {
  background: transparent;
  color: var(--accent);
}

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

.btn-cookie-reject {
  background: transparent;
  color: var(--accent);
}

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

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

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

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

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

.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: all var(--transition);
}

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

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

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

.cookie-option-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

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

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

.cookie-option-info strong {
  font-size: 0.95rem;
}

.cookie-option-info span {
  font-size: 0.82rem;
  color: var(--muted);}

.btn-cookie-save {
  width: 100%;
}

.legal-section {
  padding: 140px 0 80px;
}

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

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

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

.legal-content ul {
  margin-bottom: 12px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.6;
}

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

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  overflow-x: auto;
  display: block;
}

.legal-content th,
.legal-content td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.legal-content th {
  background: var(--surface);
  font-weight: 600;
  color: var(--text);
}

.legal-content td {
  color: var(--muted);
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

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

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

  .steps-timeline {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  .header-nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-cta {
    font-size: 0.82rem;
    padding: 8px 16px;
  }

  .burger-btn {
    display: flex;
  }

  .hero {
    padding: 110px 0 60px;
  }

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

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

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

  .trust-number,
  .trust-number-text {
    font-size: 2rem;
  }

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

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

  .steps-timeline {
    flex-direction: column;
    gap: 24px;
  }

  .step-number {
    font-size: 2.2rem;
  }

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

  .mentor-image {
    max-width: 360px;
    margin: 0 auto;
  }

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

  .kontakt-section {
    padding: 64px 0;
  }

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

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

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

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

  .legal-section {
    padding: 110px 0 60px;
  }

  .sticky-cta {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
  }

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

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn-cookie {
    width: 100%;
  }

  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-text p {
    font-size: 0.85rem;
  }

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

@media (max-width: 420px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding: 100px 0 48px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .trust-strip {
    padding: 36px 0;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 24px;
  }

  .fit-card {
    padding: 24px;
  }

  .kontakt-form-wrap {
    padding: 20px;
  }

  .faq-question {
    padding: 16px;
    font-size: 1rem;
  }

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

  .section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }
}