:root {
  --primary: #2D3FE8;
  --primary-dark: #1E2BA8;
  --secondary: #0F172A;
  --accent: #F59E0B;
  --accent-light: #FCD34D;
  --text-dark: #0F172A;
  --text-medium: #475569;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-primary: 0 10px 30px -5px rgba(45, 63, 232, 0.3);
  --shadow-accent: 0 10px 30px -5px rgba(245, 158, 11, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Albert Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: translateY(-2px);
}

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

.nav-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
  font-variation-settings: 'wght' 500;
  transition: font-variation-settings 0.3s ease, color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
  font-variation-settings: 'wght' 700;
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: 20px;
}

.lang-btn {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-medium);
  padding: 4px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--primary);
  background: var(--bg-white);
}

.lang-btn.active {
  color: var(--primary);
  background: var(--bg-white);
  font-variation-settings: 'wght' 700;
}

.lang-divider {
  color: var(--border);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://picsum.photos/seed/corporate-training/1920/1080');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg-white);
  max-width: 1000px;
  padding: 40px 20px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  font-variation-settings: 'wght' 700;
  animation: fadeInUp 1s ease;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: inline-block;
  transition: font-variation-settings 0.3s ease, transform 0.3s ease;
}

.hero h1 span:hover {
  font-variation-settings: 'wght' 900;
  transform: scale(1.05);
  color: var(--accent-light);
}

.hero p {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 40px;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s backwards;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-variation-settings: 'wght' 600;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.4);
  font-variation-settings: 'wght' 700;
}

.btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
  background: var(--bg-white);
  color: var(--primary);
  transform: translateY(-3px);
  font-variation-settings: 'wght' 700;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

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

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 15px;
  font-variation-settings: 'wght' 600;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-variation-settings: 'wght' 700;
  letter-spacing: -0.02em;
}

.section-title span {
  display: inline-block;
  transition: font-variation-settings 0.3s ease, color 0.3s ease;
}

.section-title span:hover {
  font-variation-settings: 'wght' 900;
  color: var(--primary);
}

.section-description {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
}

.split-reveal-section {
  background: var(--bg-light);
  padding: 120px 0;
}

.split-reveal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.reveal-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s ease;
  position: relative;
}

.reveal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.reveal-card:hover::before {
  left: 100%;
}

.reveal-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.reveal-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.reveal-card-content {
  padding: 30px;
}

.reveal-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-variation-settings: 'wght' 700;
  transition: font-variation-settings 0.3s ease;
}

.reveal-card:hover .reveal-card-title {
  font-variation-settings: 'wght' 900;
  color: var(--primary);
}

.reveal-card-text {
  color: var(--text-medium);
  line-height: 1.7;
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 700;
  margin: 0 auto 25px;
  box-shadow: var(--shadow-primary);
  font-variation-settings: 'wght' 700;
  transition: all 0.4s ease;
  position: relative;
}

.process-number::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  transition: transform 0.4s ease;
}

.process-step:hover .process-number {
  transform: scale(1.1) rotate(5deg);
  font-variation-settings: 'wght' 900;
}

.process-step:hover .process-number::after {
  transform: scale(1.2);
  opacity: 0.3;
}

.process-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-variation-settings: 'wght' 700;
  transition: font-variation-settings 0.3s ease;
}

.process-step:hover h3 {
  font-variation-settings: 'wght' 900;
  color: var(--primary);
}

.process-step p {
  color: var(--text-medium);
  line-height: 1.7;
}

.benefits-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.benefits-section .section-subtitle {
  color: var(--accent-light);
}

.benefits-section .section-title,
.benefits-section .section-description {
  color: var(--bg-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--text-dark);
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-accent);
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  font-variation-settings: 'wght' 700;
  transition: font-variation-settings 0.3s ease;
}

.benefit-card:hover h3 {
  font-variation-settings: 'wght' 900;
}

.benefit-card p {
  line-height: 1.7;
  opacity: 0.95;
}

.testimonials-section {
  background: var(--bg-light);
  padding: 120px 0;
}

.testimonial-slider {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.testimonial-quote {
  font-size: 24px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  padding-left: 40px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.2;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-variation-settings: 'wght' 700;
}

.testimonial-info p {
  color: var(--text-medium);
  font-size: 14px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.testimonial-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #D97706 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-variation-settings: 'wght' 700;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-content .btn-primary {
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-primary);
}

.cta-content .btn-primary:hover {
  background: var(--primary-dark);
}

footer {
  background: var(--secondary);
  color: var(--bg-white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  font-variation-settings: 'wght' 700;
  transition: font-variation-settings 0.3s ease;
}

.footer-section h3:hover {
  font-variation-settings: 'wght' 900;
  color: var(--accent);
}

.footer-section p {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 20px;
}

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

.footer-links a {
  opacity: 0.9;
  transition: all 0.3s ease;
  font-variation-settings: 'wght' 400;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 5px;
  font-variation-settings: 'wght' 600;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
}

.contact-item i {
  color: var(--accent);
  font-size: 18px;
  width: 24px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  opacity: 0.8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--accent);
}

.tilt-card {
  transform-style: preserve-3d;
}

.form-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-variation-settings: 'wght' 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Albert Sans', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 63, 232, 0.1);
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

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

.checkbox-group label {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
  cursor: pointer;
}

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

.checkbox-group label a:hover {
  color: var(--primary-dark);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--bg-white);
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-variation-settings: 'wght' 600;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
  font-variation-settings: 'wght' 700;
}

.form-submit:active {
  transform: translateY(0);
}

.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 50px;
  color: var(--bg-white);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thanks-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-variation-settings: 'wght' 700;
}

.thanks-content p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 40px;
  line-height: 1.7;
}

.legal-page {
  padding: 120px 0 80px;
  background: var(--bg-white);
}

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

.legal-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-variation-settings: 'wght' 700;
}

.legal-updated {
  color: var(--text-medium);
  margin-bottom: 40px;
  font-size: 14px;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-variation-settings: 'wght' 700;
}

.legal-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-variation-settings: 'wght' 600;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-medium);
}

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

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text-medium);
  list-style: disc;
}

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

.legal-content a:hover {
  color: var(--primary-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: var(--bg-white);
  padding: 25px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin-bottom: 10px;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-variation-settings: 'wght' 600;
}

.cookie-btn:hover {
  font-variation-settings: 'wght' 700;
  transform: translateY(-2px);
}

.cookie-accept {
  background: var(--accent);
  color: var(--text-dark);
}

.cookie-accept:hover {
  background: var(--accent-light);
}

.cookie-decline {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.cookie-decline:hover {
  background: var(--bg-white);
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-content.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-links a {
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .lang-switcher {
    margin-top: 20px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 48px;
  }

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

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

  .btn {
    width: 100%;
  }

  section {
    padding: 60px 0;
  }

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

  .split-reveal-grid,
  .process-steps,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-steps::before {
    display: none;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-quote {
    font-size: 18px;
    padding-left: 30px;
  }

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

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

  .form-container {
    padding: 30px 20px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

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

  .process-number {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .testimonial-quote::before {
    font-size: 60px;
  }
}