:root {
  --primary: #0A2540;
  --secondary: #1E5A8E;
  --accent: #FF6B35;
  --text-dark: #0F1419;
  --text-light: #5F6C7B;
  --bg-light: #F8FAFB;
  --bg-white: #FFFFFF;
  --border: #E1E8ED;
  --success: #00B67A;
  --grid-unit: 8px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s ease-out;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 calc(var(--grid-unit) * 3);
}

.container-narrow {
  max-width: 1200px;
}

.grid {
  display: grid;
  gap: calc(var(--grid-unit) * 4);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 2px solid var(--border);
  transition: all 0.3s ease-out;
}

header.scrolled {
  box-shadow: 0 4px 24px rgba(15, 20, 25, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 calc(var(--grid-unit) * 3);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: calc(var(--grid-unit) * 2);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s ease-out;
}

.logo-link:hover {
  transform: translateY(-2px);
}

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

nav {
  display: flex;
  align-items: center;
  gap: calc(var(--grid-unit) * 5);
}

.nav-links {
  display: flex;
  gap: calc(var(--grid-unit) * 4);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-dark);
  padding: calc(var(--grid-unit) * 1) calc(var(--grid-unit) * 2);
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease-out;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--accent);
  transition: transform 0.3s ease-out;
}

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

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
  color: var(--secondary);
  background: var(--bg-light);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: calc(var(--grid-unit) * 1);
  padding: calc(var(--grid-unit) * 1) calc(var(--grid-unit) * 2);
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--bg-light);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: calc(var(--grid-unit) * 0.5) calc(var(--grid-unit) * 1);
  border-radius: 4px;
  transition: all 0.3s ease-out;
}

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

.lang-btn.active {
  color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.12);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: calc(var(--grid-unit) * 1);
  background: var(--bg-light);
  border-radius: 8px;
  border: 2px solid var(--border);
  transition: all 0.3s ease-out;
}

.mobile-menu-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
}

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

.mobile-menu-toggle:hover span {
  background: var(--bg-white);
}

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

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

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

.hero {
  margin-top: 88px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  border-bottom: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--grid-unit) * 8);
  align-items: center;
  min-height: 600px;
  padding: calc(var(--grid-unit) * 12) calc(var(--grid-unit) * 3);
  position: relative;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 3);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: calc(var(--grid-unit) * 5);
  max-width: 540px;
}

.hero-images {
  position: relative;
  height: 500px;
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero-image {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.15);
  border: 3px solid var(--bg-white);
}

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

.hero-image-1 {
  width: 380px;
  height: 280px;
  top: 0;
  right: 100px;
  transform: rotate(-3deg);
  z-index: 2;
}

.hero-image-2 {
  width: 340px;
  height: 380px;
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
  z-index: 1;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--grid-unit) * 2);
  padding: calc(var(--grid-unit) * 2.5) calc(var(--grid-unit) * 5);
  background: var(--accent);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease-out;
}

.cta-primary:hover {
  background: #E85A2A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.cta-primary:active {
  transform: translateY(0);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--grid-unit) * 2);
  padding: calc(var(--grid-unit) * 2.5) calc(var(--grid-unit) * 5);
  background: var(--bg-white);
  color: var(--primary);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: 8px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease-out;
}

.cta-secondary:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.2);
}

section {
  padding: calc(var(--grid-unit) * 12) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: calc(var(--grid-unit) * 8);
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 2);
  letter-spacing: -0.02em;
}

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

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--grid-unit) * 4);
  margin-top: calc(var(--grid-unit) * -12));
  position: relative;
  z-index: 10;
}

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: calc(var(--grid-unit) * 5);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.08);
  transition: all 0.4s ease-out;
  animation: fadeInUp 0.8s ease-out;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.12);
  border-color: var(--secondary);
}

.feature-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: calc(var(--grid-unit) * 3);
  box-shadow: 0 4px 16px rgba(30, 90, 142, 0.2);
}

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

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 2);
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

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

.bg-dark {
  background: var(--primary);
  color: var(--bg-white);
}

.bg-dark .section-title {
  color: var(--bg-white);
}

.bg-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--grid-unit) * 8);
  align-items: center;
}

.content-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.15);
  border: 3px solid var(--bg-white);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 3);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.content-text p {
  color: var(--text-light);
  margin-bottom: calc(var(--grid-unit) * 2.5);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.content-text ul {
  list-style: none;
  margin: calc(var(--grid-unit) * 3) 0;
}

.content-text li {
  padding-left: calc(var(--grid-unit) * 4);
  margin-bottom: calc(var(--grid-unit) * 2);
  position: relative;
  color: var(--text-light);
  line-height: 1.7;
}

.content-text li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: calc(var(--grid-unit) * 4);
  margin: calc(var(--grid-unit) * 6) 0;
}

.stat-card {
  text-align: center;
  padding: calc(var(--grid-unit) * 4);
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease-out;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
  border-color: var(--secondary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: calc(var(--grid-unit) * 1);
}

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

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

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

.faq-item {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 12px;
  margin-bottom: calc(var(--grid-unit) * 3);
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.faq-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.08);
}

.faq-question {
  width: 100%;
  padding: calc(var(--grid-unit) * 4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(var(--grid-unit) * 3);
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s ease-out;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 calc(var(--grid-unit) * 4) calc(var(--grid-unit) * 4);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

.about-preview {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg-white);
  padding: calc(var(--grid-unit) * 10) calc(var(--grid-unit) * 3);
  border-radius: 16px;
  margin: calc(var(--grid-unit) * 8) auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.about-preview-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-preview h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: calc(var(--grid-unit) * 3);
  color: var(--bg-white);
  line-height: 1.2;
}

.about-preview p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: calc(var(--grid-unit) * 4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: calc(var(--grid-unit) * 4);
}

.service-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: calc(var(--grid-unit) * 5);
  transition: all 0.4s ease-out;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease-out;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.12);
  border-color: var(--secondary);
}

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 2);
  line-height: 1.3;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: calc(var(--grid-unit) * 3);
}

.service-card ul {
  list-style: none;
}

.service-card li {
  padding-left: calc(var(--grid-unit) * 3);
  margin-bottom: calc(var(--grid-unit) * 1.5);
  position: relative;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.service-card li::before {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.875rem;
}

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

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: calc(var(--grid-unit) * 6);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.08);
}

.form-group {
  margin-bottom: calc(var(--grid-unit) * 3);
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 1);
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: calc(var(--grid-unit) * 2);
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease-out;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(30, 90, 142, 0.1);
}

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

.iti,
#phone {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: calc(var(--grid-unit) * 2);
  margin: calc(var(--grid-unit) * 3) 0;
}

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

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

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

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

.form-submit {
  width: 100%;
  padding: calc(var(--grid-unit) * 2.5);
  background: var(--accent);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: 8px;
  transition: all 0.3s ease-out;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.form-submit:hover {
  background: #E85A2A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

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

.map-container {
  margin-top: calc(var(--grid-unit) * 6);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--grid-unit) * 4);
  margin-bottom: calc(var(--grid-unit) * 6);
}

.contact-info-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: calc(var(--grid-unit) * 4);
  text-align: center;
  transition: all 0.3s ease-out;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
  border-color: var(--secondary);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto calc(var(--grid-unit) * 2);
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: var(--bg-white);
}

.contact-info-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 1);
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--accent);
}

.thanks-container {
  text-align: center;
  max-width: 600px;
  margin: calc(var(--grid-unit) * 12) auto;
  padding: calc(var(--grid-unit) * 8) calc(var(--grid-unit) * 3);
}

.thanks-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--success), #00A868);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto calc(var(--grid-unit) * 4);
  box-shadow: 0 8px 32px rgba(0, 182, 122, 0.3);
}

.thanks-icon i {
  font-size: 3rem;
  color: var(--bg-white);
}

.thanks-container h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 2);
}

.thanks-container p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: calc(var(--grid-unit) * 5);
}

footer {
  background: var(--primary);
  color: var(--bg-white);
  padding: calc(var(--grid-unit) * 8) 0 calc(var(--grid-unit) * 4);
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: calc(var(--grid-unit) * 6);
  margin-bottom: calc(var(--grid-unit) * 6);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: calc(var(--grid-unit) * 2);
  color: var(--bg-white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: calc(var(--grid-unit) * 3);
  font-size: 0.9375rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: calc(var(--grid-unit) * 2.5);
  color: var(--bg-white);
}

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

.footer-links li {
  margin-bottom: calc(var(--grid-unit) * 1.5);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: all 0.3s ease-out;
  display: inline-block;
}

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

.footer-bottom {
  padding-top: calc(var(--grid-unit) * 4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: calc(var(--grid-unit) * 3);
  margin-top: calc(var(--grid-unit) * 2);
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease-out;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 3px solid var(--accent);
  box-shadow: 0 -4px 24px rgba(10, 37, 64, 0.15);
  padding: calc(var(--grid-unit) * 3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--grid-unit) * 4);
  flex-wrap: wrap;
}

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

.cookie-text p {
  color: var(--text-dark);
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.cookie-text a:hover {
  color: var(--accent);
}

.cookie-buttons {
  display: flex;
  gap: calc(var(--grid-unit) * 2);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: calc(var(--grid-unit) * 1.5) calc(var(--grid-unit) * 3);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease-out;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--accent);
  color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.cookie-accept:hover {
  background: #E85A2A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cookie-decline {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.cookie-decline:hover {
  background: var(--border);
}

.legal-content {
  max-width: 900px;
  margin: calc(var(--grid-unit) * 12) auto;
  padding: 0 calc(var(--grid-unit) * 3);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: calc(var(--grid-unit) * 2);
  line-height: 1.2;
}

.legal-date {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: calc(var(--grid-unit) * 5);
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: calc(var(--grid-unit) * 6);
  margin-bottom: calc(var(--grid-unit) * 2);
  line-height: 1.3;
}

.legal-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: calc(var(--grid-unit) * 4);
  margin-bottom: calc(var(--grid-unit) * 2);
}

.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: calc(var(--grid-unit) * 2.5);
  font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: calc(var(--grid-unit) * 4);
  margin-bottom: calc(var(--grid-unit) * 3);
  color: var(--text-light);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: calc(var(--grid-unit) * 1.5);
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: calc(var(--grid-unit) * 6);
  }
  
  .hero-images {
    height: 400px;
  }
  
  .hero-image-1 {
    width: 320px;
    height: 240px;
    right: 80px;
  }
  
  .hero-image-2 {
    width: 280px;
    height: 320px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--grid-unit) * 6);
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 72px;
  }
  
  nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 2px solid var(--border);
    padding: calc(var(--grid-unit) * 3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  
  .nav-links a {
    padding: calc(var(--grid-unit) * 2);
    border-bottom: 1px solid var(--border);
  }
  
  .lang-switcher {
    margin-top: calc(var(--grid-unit) * 2);
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    margin-top: 72px;
  }
  
  .hero-container {
    padding: calc(var(--grid-unit) * 8) calc(var(--grid-unit) * 3);
    min-height: auto;
  }
  
  .hero-images {
    height: 350px;
  }
  
  .hero-image-1 {
    width: 240px;
    height: 180px;
    right: 20px;
  }
  
  .hero-image-2 {
    width: 220px;
    height: 260px;
    right: 0;
  }
  
  .feature-cards {
    grid-template-columns: 1fr;
    margin-top: calc(var(--grid-unit) * 6);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--grid-unit) * 4);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  section {
    padding: calc(var(--grid-unit) * 8) 0;
  }
  
  .section-header {
    margin-bottom: calc(var(--grid-unit) * 6);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-images {
    height: 280px;
  }
  
  .hero-image-1 {
    width: 180px;
    height: 140px;
    right: 10px;
  }
  
  .hero-image-2 {
    width: 160px;
    height: 200px;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .contact-form {
    padding: calc(var(--grid-unit) * 4);
  }
}