:root {
  --color-primary: #0A2540;
  --color-secondary: #2E5BFF;
  --color-accent: #00D9FF;
  --color-dark: #0F1419;
  --color-light: #F7F9FC;
  --color-white: #FFFFFF;
  --color-gray-100: #EDF2F7;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E0;
  --color-gray-600: #4A5568;
  --color-gray-800: #1A202C;
  
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.08), 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 4px 6px rgba(10, 37, 64, 0.07), 0 2px 4px rgba(10, 37, 64, 0.05), 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 10px 15px rgba(10, 37, 64, 0.1), 0 4px 6px rgba(10, 37, 64, 0.08), 0 2px 4px rgba(10, 37, 64, 0.06);
  --shadow-xl: 0 20px 25px rgba(10, 37, 64, 0.12), 0 10px 10px rgba(10, 37, 64, 0.08), 0 4px 6px rgba(10, 37, 64, 0.06);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-gray-800);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

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

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-gray-600);
}

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

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 !important;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Playfair Display', serif;
}

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

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray-800);
  position: relative;
  padding: 8px 0;
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid var(--color-gray-300);
}

.lang-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-600);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

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

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

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

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

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: var(--transition-base);
}

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

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

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

main {
  margin-top: 82px;
}

.hero {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 32px;
  line-height: 1.1;
}

.hero-text .char {
  display: inline-block;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

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

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--color-gray-600);
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.hero-cta:hover {
  background: var(--color-primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

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

.hero-image:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.hero-image:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-top: 40px;
}

.hero-image:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

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

.isometric-shape {
  position: absolute;
  z-index: -1;
}

.iso-cube {
  width: 120px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(30deg) rotateY(45deg);
}

.iso-cube-face {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.15;
}

.iso-cube-top {
  background: var(--color-accent);
  transform: rotateX(90deg) translateZ(60px);
}

.iso-cube-front {
  background: var(--color-secondary);
  transform: translateZ(60px);
}

.iso-cube-right {
  background: var(--color-primary);
  transform: rotateY(90deg) translateZ(60px);
}

.iso-diamond {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  transform: rotate(45deg) skewX(20deg) skewY(20deg);
  opacity: 0.12;
}

.iso-hex {
  width: 80px;
  height: 140px;
  background: var(--color-secondary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.1;
}

.hero .iso-cube {
  top: 10%;
  right: 5%;
}

.hero .iso-diamond {
  bottom: 15%;
  left: 8%;
}

.hero .iso-hex {
  top: 50%;
  left: -40px;
}

section {
  padding: 100px 0;
}

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

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

.section-header p {
  font-size: 1.2rem;
  color: var(--color-gray-600);
}

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

.feature-card {
  padding: 48px 36px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

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

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

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 2rem;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.feature-card p {
  line-height: 1.8;
}

.process-section {
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.process-section .iso-diamond {
  position: absolute;
  top: 10%;
  right: 5%;
}

.process-section .iso-hex {
  position: absolute;
  bottom: 10%;
  left: 3%;
}

.process-steps {
  display: grid;
  gap: 48px;
  margin-top: 60px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  font-family: 'Playfair Display', serif;
}

.step-content h3 {
  margin-bottom: 16px;
}

.step-content p {
  line-height: 1.8;
}

.inspection-areas {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
}

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

.area-item {
  padding: 32px 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
  display: flex;
  align-items: start;
  gap: 20px;
  transition: var(--transition-smooth);
}

.area-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.area-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.area-item:hover .area-icon {
  background: var(--color-secondary);
  color: var(--color-white);
}

.area-content h4 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.area-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefits-section {
  padding: 120px 0;
}

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

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

.benefits-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 91, 255, 0.1), rgba(0, 217, 255, 0.1));
  pointer-events: none;
}

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

.benefits-list {
  display: grid;
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.benefit-text h4 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.benefit-text p {
  line-height: 1.7;
}

.faq-section {
  padding: 120px 0;
  background: var(--color-light);
}

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

.faq-list {
  display: grid;
  gap: 20px;
  margin-top: 60px;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 28px 32px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Playfair Display', serif;
  transition: var(--transition-base);
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--color-gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-secondary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 32px 32px;
  color: var(--color-gray-600);
  line-height: 1.8;
}

.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  position: relative;
  overflow: hidden;
}

.cta-section .iso-cube {
  position: absolute;
  top: 20%;
  right: 10%;
  opacity: 0.1;
}

.cta-section .iso-diamond {
  position: absolute;
  bottom: 20%;
  left: 8%;
  opacity: 0.1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
}

.cta-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 24px 32px rgba(0, 0, 0, 0.2);
}

.contact-section {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-info h3 {
  margin-bottom: 32px;
}

.contact-details {
  display: grid;
  gap: 28px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.contact-text h4 {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
}

.contact-text p,
.contact-text a {
  color: var(--color-gray-600);
  font-size: 1rem;
}

.contact-text a:hover {
  color: var(--color-secondary);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 300px;
}

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

.contact-form {
  background: var(--color-light);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-gray-800);
  background: var(--color-white);
  transition: var(--transition-base);
}

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

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.privacy-checkbox {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 28px;
}

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

.privacy-checkbox label {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  cursor: pointer;
}

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

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

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.thanks-section {
  padding: 160px 0;
  text-align: center;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-white);
  margin: 0 auto 40px;
  box-shadow: var(--shadow-xl);
}

.thanks-section h1 {
  margin-bottom: 24px;
}

.thanks-section p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

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

.legal-section {
  padding: 120px 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.last-updated {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-gray-200);
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 20px 0 20px 32px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 12px;
  color: var(--color-gray-600);
}

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

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

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

footer .iso-hex {
  position: absolute;
  top: 20%;
  right: 5%;
  opacity: 0.05;
}

footer .iso-diamond {
  position: absolute;
  bottom: 30%;
  left: 8%;
  opacity: 0.05;
}

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

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

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

.footer-column h4 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 14px;
}

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

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

.footer-contact {
  display: grid;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 28px 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

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

.cookie-text p {
  color: var(--color-gray-600);
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 0.95rem;
}

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

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

.cookie-btn-reject {
  background: var(--color-gray-200);
  color: var(--color-gray-800);
}

.cookie-btn-reject:hover {
  background: var(--color-gray-300);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.cookie-btn-customize:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 32px;
}

.cookie-modal-header h3 {
  font-size: 1.75rem;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-gray-600);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-base);
}

.cookie-close:hover {
  background: var(--color-gray-100);
  color: var(--color-gray-800);
}

.cookie-category {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-gray-200);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

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

.cookie-category h4 {
  font-size: 1.125rem;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-gray-300);
  border-radius: 28px;
  transition: var(--transition-base);
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: var(--color-white);
  border-radius: 50%;
  transition: var(--transition-base);
}

.cookie-toggle input:checked + .cookie-slider {
  background: var(--color-secondary);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

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

.cookie-category p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-gray-200);
}

.cookie-save {
  flex: 1;
  padding: 14px 28px;
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.cookie-save:hover {
  background: var(--color-primary);
}

@media (max-width: 1024px) {
  .hero-content,
  .contact-grid,
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-images {
    order: -1;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--color-gray-300);
    padding-top: 24px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0 100px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .features-grid,
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 32px 24px;
  }

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

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

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

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

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 32px 24px;
  }

  .cookie-modal-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 1.05rem;
  }

  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-image:nth-child(2) {
    margin-top: 0;
  }

  .feature-card,
  .contact-form {
    padding: 28px 20px;
  }
}