:root {
  --midnight: #0a0a0f;
  --midnight-tint: #14141f;
  --midnight-lighter: #1e1e2e;
  --gold-accent: #d4af37;
  --gold-light: #e8d4a0;
  --gold-dark: #b8941f;
  --copper: #b87333;
  --text-primary: #e8e8f0;
  --text-secondary: #b8b8cc;
  --text-muted: #8888a0;
  --border-subtle: rgba(212, 175, 55, 0.15);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(212, 175, 55, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(212, 175, 55, 0.15);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7), 0 8px 24px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(212, 175, 55, 0.2);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --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: 'Albert Sans', sans-serif;
  background: var(--midnight);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  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 cubic-bezier(0.4, 0, 0.2, 1);
}

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, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

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

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-accent), var(--copper));
  transform-origin: left;
  transition: transform 0.1s linear;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

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

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

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-accent);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.8) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(184, 115, 51, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-number {
  position: absolute;
  top: -80px;
  right: -100px;
  font-size: clamp(12rem, 25vw, 28rem);
  font-weight: 800;
  color: rgba(212, 175, 55, 0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

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

.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-description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  max-width: 700px;
}

.cta-group {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--copper) 100%);
  color: var(--midnight);
  box-shadow: var(--shadow-md), 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: var(--midnight-lighter);
  color: var(--gold-accent);
  border: 2px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--midnight-tint);
  border-color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  color: var(--gold-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.section-title {
  margin-bottom: var(--spacing-sm);
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
}

.timeline-section {
  background: var(--midnight-tint);
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, var(--midnight) 0%, transparent 10%, transparent 90%, var(--midnight) 100%);
  pointer-events: none;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, 
    transparent 0%,
    var(--gold-accent) 10%,
    var(--gold-accent) 90%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-image {
  grid-column: 2;
  grid-row: 1;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--gold-accent);
  border: 4px solid var(--midnight-tint);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1), var(--shadow-md);
  z-index: 10;
}

.timeline-content {
  background: var(--midnight-lighter);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-accent);
}

.timeline-year {
  display: inline-block;
  color: var(--gold-accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-xs);
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
}

.timeline-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

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

.timeline-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.card {
  background: var(--midnight-lighter);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-accent), var(--copper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  color: var(--gold-accent);
  font-size: 1.75rem;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.journey-section {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-tint) 50%, var(--midnight) 100%);
  position: relative;
}

.journey-path {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  position: relative;
  margin-top: var(--spacing-lg);
}

.journey-step {
  text-align: center;
  position: relative;
  padding: var(--spacing-md);
}

.journey-number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-sm);
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--midnight);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.journey-step:hover .journey-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 175, 55, 0.5);
}

.journey-step h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

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

.cta-banner {
  background: linear-gradient(135deg, var(--midnight-lighter) 0%, var(--midnight-tint) 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  margin: var(--spacing-xl) 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: var(--spacing-sm);
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.shape {
  position: absolute;
  border: 1px solid var(--gold-accent);
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.content-grid.reverse {
  direction: rtl;
}

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

.content-text h2 {
  margin-bottom: var(--spacing-sm);
}

.content-text h3 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--gold-accent);
}

.content-text p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

.content-text ul {
  list-style: none;
  margin: var(--spacing-sm) 0;
}

.content-text li {
  color: var(--text-secondary);
  padding-left: 2rem;
  position: relative;
  margin-bottom: var(--spacing-xs);
  line-height: 1.7;
}

.content-text li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: 700;
}

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

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

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

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.glossary-term {
  background: var(--midnight-lighter);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.glossary-term h3 {
  color: var(--gold-accent);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.glossary-term p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-section {
  padding: var(--spacing-xl) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: var(--midnight-lighter);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.contact-info h2 {
  margin-bottom: var(--spacing-sm);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.contact-details {
  margin-top: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(8px);
}

.contact-item i {
  color: var(--gold-accent);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  color: var(--text-primary);
  margin: 0;
}

.contact-item-content a {
  color: var(--text-primary);
}

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

.contact-form-wrapper {
  background: var(--midnight-lighter);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

label {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem;
  background: var(--midnight-tint);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background: var(--midnight);
}

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

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

.checkbox-group {
  display: flex;
  align-items: start;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

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

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(90%);
  opacity: 0.8;
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--midnight);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 175, 55, 0.4);
}

.thanks-content h1 {
  margin-bottom: var(--spacing-sm);
}

.thanks-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

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

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

.legal-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-lg);
  display: block;
}

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

.legal-content h3 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  font-size: 1.25rem;
}

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

.legal-content ul,
.legal-content ol {
  margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-md);
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: var(--spacing-xs);
  line-height: 1.7;
}

footer {
  background: var(--midnight-tint);
  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-brand h3 {
  color: var(--gold-accent);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 0.5rem;
}

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

.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
  flex-wrap: wrap;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--midnight-lighter);
  border-top: 2px solid var(--gold-accent);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

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

.cookie-text p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

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

.cookie-buttons {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.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;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold-accent) 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 {
  color: var(--text-primary);
  border-color: var(--gold-accent);
}

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

.cookie-btn-customize:hover {
  background: var(--midnight);
  border-color: var(--gold-accent);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

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

.cookie-modal-content {
  background: var(--midnight-lighter);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

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

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

.cookie-modal-close:hover {
  color: var(--gold-accent);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: var(--midnight-tint);
  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: var(--spacing-xs);
}

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

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--midnight);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid var(--border-subtle);
}

.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-muted);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 26px;
  background: var(--gold-accent);
}

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

.cookie-modal-actions {
  display: flex;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
}

@media (max-width: 1024px) {
  .content-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .content-grid.reverse {
    direction: ltr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 80px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
  }
  
  .timeline-item:nth-child(even) .timeline-image {
    grid-column: 1;
    grid-row: 2;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-2xl: 5rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--midnight-lighter);
    flex-direction: column;
    padding: var(--spacing-xl) var(--spacing-md);
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 1001;
    align-items: flex-start;
    border-left: 1px solid var(--border-subtle);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1002;
  }
  
  .hero {
    min-height: 80vh;
    padding: var(--spacing-xl) 0;
  }
  
  .hero-number {
    font-size: clamp(8rem, 20vw, 12rem);
    right: -50px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .journey-path {
    grid-template-columns: 1fr;
  }
  
  .glossary-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cookie-modal-content {
    max-height: 90vh;
  }
}

@media (max-width: 480px) {
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    left: 20px;
    width: 16px;
    height: 16px;
  }
  
  .section-header {
    text-align: left;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--copper) 100%);
  color: var(--midnight);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

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

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}