:root {
  --bg: #fef9ff;
  --surface: #f3e8ff;
  --accent: #9b59b6;
  --accent-dark: #7d3c98;
  --accent-light: #d2b4de;
  --text: #2d1b4e;
  --muted: #8e7aaa;
  --border: #e8d5f5;
  --pink: #fce4ec;
  --blue: #e0f7fa;
  --green: #2ecc71;
  --red: #e74c3c;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(45, 27, 78, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 27, 78, 0.1);
  --shadow-lg: 0 8px 40px rgba(45, 27, 78, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(254, 249, 255, 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(254, 249, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

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

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

.nav-link {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

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

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(155, 89, 182, 0.3);
}

.pulse-btn {
  animation: pulse-shadow 2.5s infinite;
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(155, 89, 182, 0); }
}

.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 {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

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

.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-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-nav-link {
  font-family: 'Poppins', 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 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent);
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 89, 182, 0.3);
}

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

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

.btn-full {
  width: 100%;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.hero-section {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 50%, var(--pink) 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-label {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-text h1 {
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 17px;
  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;
}

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

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

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

.trust-strip {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
}

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

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

.stat-item svg {
  opacity: 0.8;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

.audience-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.audience-yes h3 {
  border-bottom-color: var(--green);
}

.audience-no h3 {
  border-bottom-color: var(--red);
}

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

.audience-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 213, 245, 0.5);
}

.audience-col li:last-child {
  border-bottom: none;
}

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

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

.process-section .section-heading {
  text-align: center;
  max-width: 100%;
}

.process-section .section-label {
  display: block;
  text-align: center;
}

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

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  padding: 0 20px;
}

.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
}

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

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

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

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

.process-cta {
  text-align: center;
  margin-top: 48px;
}

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

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

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

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

.mentor-text h2 {
  font-size: 36px;
  margin-bottom: 8px;
}

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

.mentor-text blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  padding: 24px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 32px;
}

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

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

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

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

.reviews-section .section-label,
.reviews-section .section-heading {
  text-align: center;
  max-width: 100%;
}

.reviews-section .section-label {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

.faq-section .section-label,
.faq-section .section-heading {
  text-align: center;
  max-width: 100%;
}

.faq-section .section-label {
  display: block;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--accent-light);
}

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

.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.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

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

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

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

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

.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--text) 0%, #3d2466 100%);
  color: var(--white);
}

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

.contact-info h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-info > p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

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

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

.contact-detail a,
.contact-detail span {
  color: rgba(255,255,255,0.9);
}

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

.contact-trust {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

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

.contact-trust-item svg {
  color: var(--accent-light);
}

.contact-image {
  border-radius: var(--radius-sm);
  opacity: 0.85;
}

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

.contact-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-size: 14px;
  font-weight: 700;
  color: var(--text);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.15);
}

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

.form-error {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  min-height: 0;
}

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

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

.form-checkbox label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox .form-error {
  width: 100%;
}

.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(--accent);
}

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

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

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

.footer-brand .logo-svg {
  color: var(--white);
  margin-bottom: 16px;
}

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

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

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

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

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

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

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

.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(155, 89, 182, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
}

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

.floating-cta:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--white);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 30px rgba(45, 27, 78, 0.15);
  padding: 24px;
}

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

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

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

.btn-cookie-accept,
.btn-cookie-settings,
.btn-cookie-reject {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 48px;
  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-dark);
  border-color: var(--accent-dark);
}

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

.btn-cookie-settings:hover {
  background: var(--surface);
}

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

.btn-cookie-reject:hover {
  background: var(--surface);
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  z-index: 100000;
  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;
  border-radius: 50%;
  transition: all var(--transition);
  z-index: 1;
  min-width: 44px;
  min-height: 44px;
}

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

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

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

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

.cookie-option {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

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

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

.cookie-option-header label {
  cursor: pointer;
  font-size: 15px;
}

.cookie-option > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  padding-left: 30px;
}

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

.legal-section h1 {
  font-size: 36px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--accent);
}

.legal-section h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

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

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

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

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

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

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

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

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

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

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

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

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

  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 16px;
  }

  .header-nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .hero-section {
    padding: 100px 0 64px;
  }

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

  .hero-text h1 {
    font-size: 28px;
  }

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

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

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number,
  .stat-suffix {
    font-size: 32px;
  }

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

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

  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .process-step {
    max-width: 100%;
  }

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

  .mentor-image {
    order: -1;
  }

  .mentor-image img {
    max-height: 350px;
    object-fit: cover;
  }

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

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

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

  .contact-form-wrapper {
    padding: 24px;
    border-radius: var(--radius-md);
  }

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

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

  .cookie-banner {
    padding: 16px;
  }

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

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

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

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

  .floating-cta span {
    display: none;
  }

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

  .legal-section {
    padding: 100px 0 64px;
  }

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

  .contact-image {
    display: none;
  }
}

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

  .header-container {
    padding: 0 12px;
  }

  .logo-svg {
    width: 140px;
    height: 32px;
  }

  .container {
    padding: 0 12px;
  }

  .benefit-card {
    padding: 24px;
  }

  .audience-col {
    padding: 24px;
  }

  .stat-number,
  .stat-suffix {
    font-size: 28px;
  }

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