:root {
  --primary: #0A2540;
  --primary-light: #1A3A5F;
  --secondary: #00D4FF;
  --accent: #FF6B35;
  --bg-light: #F8FAFB;
  --bg-white: #FFFFFF;
  --text-dark: #0A2540;
  --text-medium: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --border-hover: #CBD5E0;
  
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04), 0 1px 4px rgba(10, 37, 64, 0.02);
  --shadow-md: 0 2px 4px rgba(10, 37, 64, 0.06), 0 4px 12px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 4px 8px rgba(10, 37, 64, 0.08), 0 8px 24px rgba(10, 37, 64, 0.06);
  --shadow-xl: 0 8px 16px rgba(10, 37, 64, 0.1), 0 16px 48px rgba(10, 37, 64, 0.08);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
}

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

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

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

.lang-btn:hover {
  color: var(--secondary);
}

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

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

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

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #0A2540 0%, #1A3A5F 50%, #0A2540 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-xl);
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

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

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

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

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

.btn-accent:hover {
  background: var(--accent);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

section {
  padding: 6rem 0;
  position: relative;
}

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

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--secondary);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition);
}

.section-label:hover {
  background: var(--secondary);
  color: var(--primary);
}

.timeline-section {
  background: var(--bg-light);
  position: relative;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.timeline-content:hover {
  background: var(--bg-white);
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--bg-white);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  z-index: 2;
  transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
  background: var(--secondary);
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.2);
}

.timeline-date {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.feature-item {
  display: flex;
  gap: 1.5rem;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--bg-white);
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-md);
  color: var(--secondary);
  font-size: 1.5rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--secondary);
  color: var(--bg-white);
  transform: scale(1.1);
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.highlight-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.highlight-box {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.highlight-box:hover {
  background: var(--bg-white);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 2rem;
  transition: var(--transition);
}

.highlight-box:hover .highlight-icon {
  background: var(--accent);
  color: var(--bg-white);
  transform: rotate(360deg);
}

.highlight-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.highlight-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.gradient-section {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.03) 0%, rgba(0, 212, 255, 0.05) 50%, rgba(255, 107, 53, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.gradient-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.process-card {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-card::after {
  content: '→';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--border);
  transition: var(--transition);
}

.process-card:last-child::after {
  display: none;
}

.process-card:hover {
  background: var(--bg-white);
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.process-card:hover::after {
  color: var(--secondary);
  transform: translateY(-50%) scale(1.3);
}

.process-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition);
}

.process-card:hover .process-number {
  background: var(--primary);
  color: var(--bg-white);
  transform: scale(1.2);
}

.process-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.image-wrapper:hover {
  border-color: var(--secondary);
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.text-content h2 {
  margin-bottom: 1.5rem;
}

.text-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-content ul {
  list-style: none;
  margin: 2rem 0;
}

.text-content ul li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-medium);
}

.text-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.25rem;
}

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

.card {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 220px;
  border-bottom: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover .card-image {
  border-color: var(--primary);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-content {
  padding: 2rem;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.cta-section {
  background: var(--primary);
  color: var(--bg-white);
  text-align: center;
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  margin: 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 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-section h2 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-section .btn {
  position: relative;
  z-index: 2;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.contact-info {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: var(--transition);
}

.contact-info:hover {
  background: var(--bg-white);
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-item:hover {
  background: var(--bg-light);
  border-color: var(--secondary);
  transform: translateX(8px);
}

.contact-item i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-sm);
  color: var(--secondary);
  font-size: 1.125rem;
  transition: var(--transition);
}

.contact-item:hover i {
  background: var(--secondary);
  color: var(--bg-white);
  transform: scale(1.1);
}

.contact-item-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

.contact-form {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: var(--transition);
}

.contact-form:hover {
  background: var(--bg-white);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: transparent;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

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

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

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

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

.form-checkbox a {
  color: var(--secondary);
  text-decoration: underline;
}

.form-checkbox a:hover {
  color: var(--primary);
}

.map-container {
  width: 100%;
  height: 400px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
  transition: var(--transition);
}

.map-container:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--primary);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: var(--bg-white);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 37, 64, 0.98);
  backdrop-filter: blur(10px);
  color: var(--bg-white);
  padding: 1.5rem;
  z-index: 10000;
  border-top: 2px solid var(--secondary);
  box-shadow: var(--shadow-xl);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.cookie-btn-accept:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
}

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

.cookie-btn-decline:hover {
  background: var(--bg-white);
  color: var(--primary);
  transform: translateY(-2px);
}

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

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

.legal-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.legal-content:hover {
  background: var(--bg-white);
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

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

.legal-date {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  background: var(--bg-light);
}

.thanks-content {
  text-align: center;
  max-width: 600px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  transition: var(--transition);
}

.thanks-content:hover {
  background: var(--bg-white);
  border-color: var(--secondary);
  box-shadow: var(--shadow-xl);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  color: var(--secondary);
  font-size: 3rem;
  transition: var(--transition);
  animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
  0% { transform: scale(0) rotate(-45deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.thanks-content:hover .thanks-icon {
  background: var(--secondary);
  color: var(--bg-white);
  transform: scale(1.1);
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }
  
  .features-grid,
  .highlight-boxes,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-card::after {
    display: none;
  }
  
  .image-text-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 2px solid var(--border);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links li {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    justify-content: center;
    padding-top: 1rem;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero-content {
    padding: 3rem 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.05rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    padding-left: 3rem;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .features-grid,
  .highlight-boxes,
  .cards-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-section {
    padding: 3rem 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.375rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .hero-content {
    padding: 2.5rem 1.5rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.splide {
  padding: 2rem 0;
}

.splide__slide {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.splide__slide:hover {
  background: var(--bg-white);
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.splide__arrow {
  background: transparent;
  border: 2px solid var(--border);
  width: 3rem;
  height: 3rem;
  transition: var(--transition);
}

.splide__arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.splide__arrow svg {
  fill: var(--primary);
  transition: var(--transition);
}

.splide__arrow:hover svg {
  fill: var(--bg-white);
}

.splide__pagination__page {
  background: var(--border);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.splide__pagination__page.is-active {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.3);
}