:root {
  --primary: #1a4d7a;
  --primary-dark: #0f3554;
  --secondary: #e8914f;
  --accent: #d4af37;
  --surface: #ffffff;
  --surface-dark: #f5f7fa;
  --text: #2c3e50;
  --text-light: #64748b;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  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;
}

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

.logo-wrapper:hover {
  transform: translateX(4px);
}

.logo-wrapper img {
  width: 48px;
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  font-size: 15px;
}

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

.nav-links a:hover {
  color: var(--primary);
}

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

.nav-links a.active {
  color: var(--primary);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 2px solid var(--surface-dark);
}

.lang-btn {
  padding: 6px 12px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: var(--surface-dark);
  color: var(--primary);
}

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

.lang-divider {
  color: var(--text-light);
  font-weight: 300;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero-video {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26,77,122,0.85) 0%, rgba(15,53,84,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 920px;
  padding: 0 24px;
  animation: fadeInUp 1s ease;
}

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

.hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-primary {
  display: inline-block;
  padding: 18px 48px;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-primary::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;
}

.cta-primary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: #d47d3a;
}

.diagonal-section {
  position: relative;
  padding: 120px 0;
  background: var(--surface);
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--surface);
  transform: skewY(-2deg);
  transform-origin: top left;
}

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

.diagonal-section.dark::before {
  background: var(--surface-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(26,77,122,0.1);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-header p {
  font-size: 20px;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
}

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

.depth-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 48px 36px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.depth-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.depth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.depth-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 32px;
  color: white;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.depth-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.depth-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.depth-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.overlap-section {
  position: relative;
  margin-top: -100px;
  padding: 140px 0 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.overlap-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overlap-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}

.overlap-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 20px;
}

.overlap-text ul {
  list-style: none;
  margin: 32px 0;
}

.overlap-text ul li {
  padding: 12px 0;
  padding-left: 36px;
  position: relative;
  font-size: 17px;
}

.overlap-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

.overlap-image {
  position: relative;
}

.overlap-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.overlap-image:hover img {
  transform: rotate(0deg) scale(1.03);
}

.comparison-section {
  padding: 120px 0;
  background: var(--surface-dark);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.comparison-card {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
}

.comparison-card.visible {
  opacity: 1;
  transform: scale(1);
}

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

.comparison-header {
  padding: 32px;
  text-align: center;
  position: relative;
}

.comparison-card.before .comparison-header {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.comparison-card.after .comparison-header {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
}

.comparison-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.comparison-header p {
  font-size: 16px;
  opacity: 0.95;
}

.comparison-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-body {
  padding: 36px;
}

.comparison-body ul {
  list-style: none;
}

.comparison-body li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--surface-dark);
}

.comparison-body li:last-child {
  border-bottom: none;
}

.comparison-card.before li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
  font-size: 18px;
}

.comparison-card.after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
  font-size: 18px;
}

.faq-section {
  padding: 120px 0;
  background: var(--surface);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 60px;
}

.faq-item {
  background: var(--surface);
  border: 2px solid var(--surface-dark);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.faq-question {
  width: 100%;
  padding: 28px 32px;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Sora', sans-serif;
}

.faq-question:hover {
  background: var(--surface-dark);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: var(--secondary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 28px;
}

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

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

.location-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.location-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.location-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
  transform: scale(1.1);
}

.location-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.location-content {
  padding: 32px;
}

.location-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.location-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.location-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-meta i {
  color: var(--secondary);
}

.contact-section {
  padding: 120px 0;
  background: var(--surface-dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-item-content p {
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

.contact-item-content a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-content a:hover {
  color: var(--secondary);
}

.contact-form {
  background: var(--surface);
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--surface-dark);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Sora', sans-serif;
  transition: all 0.3s ease;
  background: var(--surface);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,77,122,0.1);
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Sora', sans-serif;
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a2436 100%);
  color: white;
  padding: 80px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a2436 100%);
  transform: skewY(-2deg);
  transform-origin: top right;
}

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

.footer-brand h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 24px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--accent);
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  padding: 32px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  background: var(--surface-dark);
}

.thanks-content {
  text-align: center;
  max-width: 700px;
  background: var(--surface);
  padding: 80px 60px;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

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

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

.thanks-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

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

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-dark);
}

.legal-page {
  padding: 160px 0 80px;
  background: var(--surface);
}

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

.legal-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.legal-date {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 48px;
  font-weight: 600;
}

.legal-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 32px;
}

.legal-content li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  padding: 28px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
}

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

.cookie-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Sora', sans-serif;
}

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

.cookie-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.cookie-decline {
  background: var(--surface-dark);
  color: var(--text);
}

.cookie-decline:hover {
  background: #e0e4e9;
}

.mission-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://picsum.photos/seed/mission-bg/1920/1080') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.mission-hero-content {
  position: relative;
  z-index: 1;
}

.mission-hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.mission-hero p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

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

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
}

.stat-card.visible {
  opacity: 1;
  transform: scale(1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 600;
}

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

.value-card {
  padding: 40px 32px;
  background: var(--surface);
  border-radius: 20px;
  border-left: 6px solid var(--secondary);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.value-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.value-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-left-width: 12px;
}

.value-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-card h3 i {
  color: var(--secondary);
}

.value-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.image-text-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.split-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.split-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.split-image:hover img {
  transform: scale(1.05);
}

.split-text h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.3;
}

.split-text p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 88px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 88px);
    background: white;
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: left 0.4s ease;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }

  .nav-links.active {
    left: 0;
  }

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

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

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

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

  .lang-switcher {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    padding-top: 20px;
    border-top: 2px solid var(--surface-dark);
  }

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

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

  .section-header h2 {
    font-size: 40px;
  }

  .overlap-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .overlap-text h2 {
    font-size: 36px;
  }

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

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

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

  .image-text-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .hero-video {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

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

  .cta-primary {
    padding: 16px 36px;
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 17px;
  }

  .diagonal-section {
    padding: 80px 0;
  }

  .diagonal-section::before {
    top: -40px;
    height: 60px;
  }

  .depth-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .depth-card {
    padding: 36px 28px;
  }

  .overlap-section {
    margin-top: 0;
    padding: 80px 0;
  }

  .overlap-text h2 {
    font-size: 32px;
  }

  .overlap-text p {
    font-size: 16px;
  }

  .comparison-section {
    padding: 80px 0;
  }

  .faq-section {
    padding: 80px 0;
  }

  .faq-question {
    padding: 20px 24px;
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 24px;
  }

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

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

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

  .contact-form {
    padding: 32px 24px;
  }

  footer {
    padding: 60px 0 0;
  }

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

  .thanks-content {
    padding: 60px 32px;
  }

  .thanks-content h1 {
    font-size: 36px;
  }

  .thanks-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }

  .legal-page {
    padding: 140px 0 60px;
  }

  .legal-content h1 {
    font-size: 36px;
  }

  .legal-content h2 {
    font-size: 26px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .mission-hero {
    padding: 140px 0 80px;
  }

  .mission-hero h1 {
    font-size: 36px;
  }

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

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

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

  .split-text h3 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .logo-wrapper {
    font-size: 18px;
  }

  .logo-wrapper img {
    width: 40px;
    height: 40px;
  }

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

  .section-header h2 {
    font-size: 28px;
  }

  .depth-card h3 {
    font-size: 22px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .overlap-text h2 {
    font-size: 28px;
  }

  .comparison-header h3 {
    font-size: 24px;
  }

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

  .location-content h3 {
    font-size: 20px;
  }

  .contact-info h3 {
    font-size: 26px;
  }

  .thanks-content h1 {
    font-size: 28px;
  }

  .thanks-content p {
    font-size: 16px;
  }

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

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

  .split-text h3 {
    font-size: 26px;
  }
}