:root {
  --primary: #0A4A6B;
  --secondary: #00B8D4;
  --accent: #FF6B6B;
  --bg: #F8F9FA;
  --surface: #FFFFFF;
  --text: #2C3E50;
  --text-light: #6C757D;
  --shadow-sm: 0 4px 12px rgba(10, 74, 107, 0.1);
  --shadow-md: 0 8px 24px rgba(10, 74, 107, 0.15);
  --shadow-lg: 0 16px 48px rgba(10, 74, 107, 0.2);
  --shadow-xl: 0 24px 64px rgba(10, 74, 107, 0.25);
  --shadow-colored: 12px 12px 0 rgba(0, 184, 212, 0.3);
  --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: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

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

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

p {
  margin-bottom: 1rem;
}

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

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

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

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-secondary {
  background: var(--secondary);
  color: white;
  box-shadow: var(--shadow-md);
}

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

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-md);
}

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

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

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

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

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

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

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

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

.lang-btn {
  font-weight: 600;
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--primary);
  background: rgba(10, 74, 107, 0.1);
}

.lang-btn.active {
  color: var(--primary);
  background: rgba(10, 74, 107, 0.15);
}

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

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

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

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--secondary);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
}

.hero-content {
  background: var(--primary);
  color: white;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
}

.hero-content h1 {
  color: white;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.floating-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
}

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

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

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

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

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

.benefit-card {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

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

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-colored);
}

.benefit-icon i {
  font-size: 28px;
  color: white;
}

.benefit-card h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.benefit-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.checkmark-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.checkmark-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.checkmark-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.checkmark-list i {
  color: var(--secondary);
  font-size: 24px;
  flex-shrink: 0;
}

.steps-zigzag {
  display: grid;
  gap: 80px;
  margin-top: 60px;
}

.step-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.step-item:nth-child(even) .step-content {
  order: 2;
}

.step-item:nth-child(even) .step-visual {
  order: 1;
}

.step-visual {
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.step-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-colored);
  position: relative;
}

.step-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.step-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.step-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
}

.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--primary);
  color: white;
  padding: 120px 0;
  overflow: hidden;
}

.full-width-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 100%);
}

.full-width-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.full-width-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.full-width-section h2 {
  color: white;
  margin-bottom: 24px;
}

.full-width-section p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

.card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

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

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

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

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

.card-content {
  padding: 32px;
}

.card-content h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-container {
  background: var(--surface);
  padding: 60px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  max-width: 700px;
  margin: 60px auto;
  position: relative;
}

.form-container::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.1);
}

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

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

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-colored);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text h3 {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.features-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.feature-item i {
  font-size: 24px;
  color: var(--secondary);
}

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

.location-card {
  background: var(--surface);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}

.location-card:hover::after {
  opacity: 1;
}

.location-card:hover {
  transform: translateY(-8px);
}

.location-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.location-icon i {
  font-size: 32px;
  color: white;
}

.location-card h3 {
  margin-bottom: 16px;
}

.location-card p {
  color: var(--text-light);
}

.legal-content {
  max-width: 900px;
  margin: 60px auto;
  background: var(--surface);
  padding: 60px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 32px;
  padding: 16px;
  background: var(--bg);
  border-radius: 8px;
  text-align: center;
}

.thanks-container {
  text-align: center;
  padding: 120px 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.thanks-icon i {
  font-size: 48px;
  color: white;
}

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

.thanks-container h1 {
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.thanks-container p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

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

footer {
  background: var(--primary);
  color: white;
  padding: 80px 0 32px;
  margin-top: 120px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--primary);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

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

.footer-about h3 {
  color: white;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--secondary);
  font-size: 18px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.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: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text p {
  margin: 0;
  color: var(--text);
}

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

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

.cookie-buttons .btn {
  padding: 12px 32px;
  white-space: nowrap;
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 24px;
  }

  .nav-links.active {
    transform: translateX(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(7px, -7px);
  }

  nav {
    gap: 16px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-image {
    height: 400px;
  }

  .step-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-item:nth-child(even) .step-content,
  .step-item:nth-child(even) .step-visual {
    order: initial;
  }

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

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

  .form-container {
    padding: 40px 24px;
  }

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

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

  .cookie-buttons .btn {
    width: 100%;
  }

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

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

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .floating-card {
    padding: 24px;
  }

  .benefit-card {
    padding: 32px 24px;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .step-image img {
    height: 300px;
  }
}