:root {
  --midnight: #0a0a12;
  --deep-navy: #12121f;
  --charcoal: #1a1a2e;
  --slate: #2a2a3e;
  --gold: #d4af37;
  --gold-light: #f0d785;
  --gold-dark: #b8941f;
  --copper: #b87333;
  --silver: #c0c0c0;
  --jewel-teal: #008b8b;
  --jewel-purple: #6a0dad;
  --text-primary: #e8e8f0;
  --text-secondary: #b8b8c8;
  --text-muted: #888896;
  --border-subtle: rgba(212, 175, 55, 0.15);
  --border-accent: rgba(212, 175, 55, 0.3);
  --glass-bg: rgba(26, 26, 46, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7), 0 8px 16px rgba(0, 0, 0, 0.5);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--deep-navy) 50%, var(--charcoal) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(10, 10, 18, 0.95);
  box-shadow: var(--shadow-md);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--copper) 100%);
  transition: width 0.3s ease;
}

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

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border-subtle);
}

.lang-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.lang-btn:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
}

.lang-btn.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
}

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

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

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

.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 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(106, 13, 173, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobFloat 25s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: var(--spacing-lg);
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  max-width: 700px;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--midnight);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  filter: brightness(1.1);
}

.cta-button-secondary {
  background: var(--glass-bg);
  color: var(--gold);
  border: 2px solid var(--border-accent);
  backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

.mini-cards-scroll {
  position: relative;
  z-index: 2;
  margin-top: var(--spacing-lg);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--charcoal);
}

.mini-cards-scroll::-webkit-scrollbar {
  height: 6px;
}

.mini-cards-scroll::-webkit-scrollbar-track {
  background: var(--charcoal);
  border-radius: 3px;
}

.mini-cards-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.mini-cards {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.mini-card {
  min-width: 280px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  cursor: pointer;
}

.mini-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-accent);
  background: rgba(26, 26, 46, 0.8);
}

.mini-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.mini-card-icon i {
  font-size: 1.5rem;
  color: var(--midnight);
}

.mini-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.mini-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.comparison-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.comparison-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.4s ease;
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comparison-card:hover::before {
  opacity: 1;
}

.comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-accent);
}

.comparison-card.featured {
  background: rgba(212, 175, 55, 0.08);
  border: 2px solid var(--border-accent);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 175, 55, 0.15);
}

.comparison-card.featured::before {
  opacity: 1;
}

.comparison-header {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-header h3 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.comparison-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.comparison-list li i {
  color: var(--gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: var(--spacing-md);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 115, 51, 0.2) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-accent);
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--gold);
}

.feature-content h4 {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.elevated-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.elevated-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  border: 1px solid var(--border-subtle);
}

.elevated-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(212, 175, 55, 0.2);
  border-color: var(--border-accent);
}

.elevated-card.priority-high {
  box-shadow: var(--shadow-xl), 0 0 30px rgba(212, 175, 55, 0.15);
  border: 2px solid var(--border-accent);
}

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

.elevated-card:hover .card-image img {
  transform: scale(1.08);
}

.card-content {
  padding: var(--spacing-md);
}

.card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
}

.card-content h3 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--gold-light);
  gap: 0.75rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.step {
  position: relative;
  text-align: center;
}

.step::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-accent) 0%, transparent 100%);
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--midnight);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md), 0 0 20px rgba(212, 175, 55, 0.3);
  font-family: 'Sora', sans-serif;
  position: relative;
  z-index: 2;
}

.step h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Sora', sans-serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 500;
}

.content-image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  margin-top: var(--spacing-lg);
}

.content-image-split.reverse {
  direction: rtl;
}

.content-image-split.reverse > * {
  direction: ltr;
}

.split-content h3 {
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.split-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.split-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.split-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.split-content ul li i {
  color: var(--gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
}

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

.contact-section {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-accent);
  margin-top: var(--spacing-lg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 115, 51, 0.2) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-accent);
}

.contact-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

.contact-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.contact-details p,
.contact-details a {
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--gold-light);
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--deep-navy);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

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

.checkbox-group label a:hover {
  color: var(--gold-light);
}

.map-container {
  margin-top: var(--spacing-lg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) brightness(0.8);
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

footer {
  background: var(--midnight);
  border-top: 1px solid var(--border-subtle);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
  display: inline-block;
}

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

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 18, 0.98);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--border-accent);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--midnight);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

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

.cookie-btn-customize {
  background: var(--glass-bg);
  color: var(--gold);
  border: 1px solid var(--border-accent);
}

.cookie-btn-customize:hover {
  background: rgba(212, 175, 55, 0.15);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--charcoal);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: var(--gold-light);
}

.cookie-modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.cookie-modal-close:hover {
  color: var(--gold);
}

.cookie-modal-body {
  padding: var(--spacing-md);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--glass-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category-header h4 {
  font-size: 1rem;
  color: var(--text-primary);
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--slate);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle input {
  display: none;
}

.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--text-secondary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked ~ .cookie-toggle-slider {
  transform: translateX(24px);
  background: var(--gold);
}

.cookie-toggle input:checked + .cookie-toggle {
  background: rgba(212, 175, 55, 0.3);
}

.cookie-category-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-modal-footer {
  padding: var(--spacing-md);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

.legal-content h1 {
  margin-bottom: var(--spacing-md);
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: var(--spacing-lg);
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

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

.legal-content a:hover {
  color: var(--gold-light);
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: var(--shadow-xl);
    border-left: 1px solid var(--border-accent);
  }

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

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

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
  }

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

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

  .elevated-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step::after {
    display: none;
  }

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

  .content-image-split {
    grid-template-columns: 1fr;
  }

  .content-image-split.reverse {
    direction: ltr;
  }

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

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

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

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

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-2xl: 5rem;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .mini-cards {
    gap: 1rem;
  }

  .mini-card {
    min-width: 240px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}