:root {
  --primary: #1E293B;
  --accent: #FF6B6B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #1E293B;
  --text-mid: #475569;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  
  --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.04), 0 1px 3px rgba(30, 41, 59, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 41, 59, 0.08), 0 2px 6px rgba(30, 41, 59, 0.12);
  --shadow-lg: 0 8px 32px rgba(30, 41, 59, 0.12), 0 4px 12px rgba(30, 41, 59, 0.16);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3), 0 2px 6px rgba(255, 107, 107, 0.2);
}

.btn-primary:hover {
  background: #FF5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 107, 0.4), 0 4px 8px rgba(255, 107, 107, 0.25);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

header {
  background: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

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

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

nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

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

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

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: var(--space-xs);
}

.hero {
  position: relative;
  padding: var(--space-3xl) 0;
  background: white;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero-content h1 {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: var(--text-mid);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-images {
  position: relative;
  height: 500px;
}

.hero-image {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

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

.hero-image:first-child {
  width: 65%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-2deg);
}

.hero-image:last-child {
  width: 55%;
  height: 65%;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(3deg);
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 3;
}

.bento-section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.bento-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.bento-item.span-2 {
  grid-column: span 2;
}

.bento-item.span-3 {
  grid-column: span 3;
}

.bento-item.span-4 {
  grid-column: span 4;
}

.bento-item.row-2 {
  grid-row: span 2;
}

.bento-item.accent-bg {
  background: var(--accent);
  color: white;
}

.bento-item.accent-bg h3,
.bento-item.accent-bg p {
  color: white;
}

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

.bento-item.dark-bg h3,
.bento-item.dark-bg p {
  color: white;
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
  flex-shrink: 0;
}

.bento-item.accent-bg .bento-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.bento-item.dark-bg .bento-icon {
  background: rgba(255, 107, 107, 0.2);
  color: var(--accent);
}

.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.bento-item p {
  margin-bottom: 0;
  line-height: 1.7;
}

.benefits-section {
  padding: var(--space-3xl) 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.benefit-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--primary);
}

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

.sidebar-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 100px;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sidebar-nav a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  font-weight: 500;
}

.sidebar-nav a:hover {
  background: var(--bg-light);
  color: var(--accent);
  transform: translateX(4px);
}

.sidebar-cta {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 2px solid var(--border);
}

.sidebar-cta p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.main-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.content-section {
  margin-bottom: var(--space-2xl);
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 3px solid var(--accent);
}

.content-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.content-section ul {
  list-style: none;
  margin: var(--space-md) 0;
}

.content-section li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
  color: var(--text-mid);
}

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

.form-section {
  padding: var(--space-3xl) 0;
  background: white;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.contact-intro {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.contact-intro h1 {
  margin-bottom: var(--space-md);
}

.contact-intro p {
  font-size: 1.125rem;
  color: var(--text-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.contact-info {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

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

.info-content p {
  margin-bottom: 0;
  color: var(--text-dark);
  font-weight: 500;
}

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

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

.iti {
  width: 100%;
}

.checkbox-group {
  display: flex;
  gap: var(--space-sm);
  align-items: start;
  margin-bottom: var(--space-lg);
}

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

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

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

.map-container {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

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

.thanks-section {
  padding: var(--space-3xl) 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto var(--space-xl);
}

.thanks-content h1 {
  margin-bottom: var(--space-md);
}

.thanks-content p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.legal-section {
  padding: var(--space-3xl) 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  margin-bottom: var(--space-md);
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: var(--space-2xl);
}

.legal-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.legal-content li {
  margin-bottom: var(--space-sm);
  color: var(--text-mid);
}

footer {
  background: var(--primary);
  color: white;
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-3xl);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
}

.footer-column h4 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.footer-legal {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(30, 41, 59, 0.15);
  padding: var(--space-lg);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  margin-bottom: var(--space-sm);
  color: var(--text-mid);
}

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

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background: #FF5252;
}

.cookie-reject {
  background: var(--bg-light);
  color: var(--text-dark);
}

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

.cookie-customize {
  background: var(--primary);
  color: white;
}

.cookie-customize:hover {
  background: #0F172A;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .hero-images {
    height: 400px;
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .bento-item.span-2,
  .bento-item.span-3,
  .bento-item.span-4 {
    grid-column: span 2;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }
  
  .header-content {
    padding: var(--space-md);
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 24px rgba(30, 41, 59, 0.15);
    padding: var(--space-2xl) var(--space-lg);
    transition: right 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1001;
  }
  
  nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
  }
  
  .nav-links a {
    font-size: 1.125rem;
    padding: var(--space-sm) 0;
  }
  
  .lang-switcher {
    margin-top: var(--space-lg);
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1002;
  }
  
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.5);
    z-index: 1000;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
  
  .hero {
    padding: var(--space-2xl) 0;
  }
  
  .hero-content p {
    font-size: 1.125rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-images {
    height: 350px;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-item.span-2,
  .bento-item.span-3,
  .bento-item.span-4 {
    grid-column: span 1;
  }
  
  .bento-item.row-2 {
    grid-row: span 1;
  }
  
  .bento-item {
    padding: var(--space-lg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .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%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .bento-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}