:root {
  --primary: #7B68EE;
  --primary-light: #9B88FF;
  --secondary: #FF9A8B;
  --accent: #FFD93D;
  --bg-light: #F8F6FF;
  --bg-card: #FFFFFF;
  --text-dark: #2D2A3E;
  --text-body: #5A5766;
  --text-light: #8B8794;
  --border: #E8E5F0;
  --success: #6BCF7F;
  --shadow-sm: 0 2px 8px rgba(123, 104, 238, 0.08);
  --shadow-md: 0 4px 16px rgba(123, 104, 238, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  --shadow-lg: 0 8px 32px rgba(123, 104, 238, 0.16), inset 0 2px 0 rgba(255, 255, 255, 0.6);
  --shadow-inner: inset 4px 4px 12px rgba(123, 104, 238, 0.1), inset -4px -4px 12px rgba(255, 255, 255, 0.9);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

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

p {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(248, 246, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.nav-links a {
  color: var(--text-body);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

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

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-inner);
}

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

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: var(--primary);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(135deg, #F8F6FF 0%, #FFF5F8 100%);
}

.blob-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobMove 20s ease-in-out infinite;
}

.blob-1 {
  background: var(--primary);
  top: -200px;
  right: -200px;
}

.blob-2 {
  background: var(--secondary);
  bottom: -200px;
  left: -200px;
  animation-delay: -10s;
}

@keyframes blobMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 .typed-text {
  color: var(--primary);
  position: relative;
}

.hero-text p {
  font-size: 1.1875rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(123, 104, 238, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% {
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(123, 104, 238, 0.4);
  }
  50% {
    box-shadow: var(--shadow-md), 0 0 0 12px rgba(123, 104, 238, 0);
  }
}

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

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

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-card img {
  border-radius: var(--radius-md);
  width: 100%;
}

.floating-badge {
  position: absolute;
  background: var(--bg-card);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.floating-badge.badge-1 {
  top: 2rem;
  right: -1rem;
}

.floating-badge.badge-2 {
  bottom: 2rem;
  left: -1rem;
  animation-delay: -1.5s;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  box-shadow: var(--shadow-inner);
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

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

.section-label {
  display: inline-block;
  background: var(--bg-card);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefits {
  background: white;
}

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

.benefit-card {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-inner);
  transition: all 0.4s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.05) 0%, rgba(255, 154, 139, 0.05) 100%);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: white;
}

.benefit-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--text-body);
  margin-bottom: 0;
  font-size: 1rem;
}

.services-accordion {
  background: linear-gradient(135deg, #F8F6FF 0%, #FFF5F8 100%);
}

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

.accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.4s ease;
}

.accordion-item.active {
  box-shadow: var(--shadow-lg);
}

.accordion-header {
  padding: 1.75rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.3s ease;
  background: var(--bg-card);
}

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

.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.accordion-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  box-shadow: var(--shadow-inner);
  transition: all 0.4s ease;
}

.accordion-item.active .accordion-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.accordion-title h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.accordion-toggle {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-inner);
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
  background: var(--primary);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body {
  padding: 0 2rem 2rem;
  color: var(--text-body);
  line-height: 1.8;
}

.split-section {
  background: white;
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

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

.split-text p {
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
}

.split-features {
  list-style: none;
  margin: 2rem 0;
}

.split-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-inner);
  transition: all 0.3s ease;
}

.split-features li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.split-features i {
  color: var(--success);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.split-image {
  position: relative;
}

.split-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.split-image-main img {
  width: 100%;
  display: block;
}

.overlap-card {
  position: absolute;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.overlap-card.card-1 {
  top: -2rem;
  left: -2rem;
}

.overlap-card.card-2 {
  bottom: -2rem;
  right: -2rem;
}

.overlap-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.overlap-card p {
  font-size: 0.9375rem;
  margin: 0;
  color: var(--text-body);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1875rem;
  margin-bottom: 2.5rem;
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.faq-section {
  background: white;
}

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

.faq-item {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-inner);
  overflow: hidden;
  transition: all 0.4s ease;
}

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

.faq-question {
  padding: 1.75rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(123, 104, 238, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

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

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

.faq-answer-content {
  padding: 0 2rem 2rem;
  color: var(--text-body);
  line-height: 1.8;
}

.contact-section {
  background: linear-gradient(135deg, #F8F6FF 0%, #FFF5F8 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.contact-details {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  box-shadow: var(--shadow-inner);
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.contact-item-content p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.9375rem;
}

.contact-item-content a {
  color: var(--primary);
  font-weight: 500;
}

.contact-item-content a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-inner);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.form-checkbox a {
  color: var(--primary);
  font-weight: 500;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
}

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

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

.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 96px;
  height: 96px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--success);
  font-size: 3rem;
  box-shadow: var(--shadow-lg);
}

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

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

.legal-page {
  padding: 8rem 0 6rem;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 4rem 3.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.legal-meta {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}

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

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

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

.legal-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

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

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

.footer-about p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

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

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

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

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

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  padding: 1.75rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  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: 2rem;
  flex-wrap: wrap;
}

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

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

.cookie-text a {
  color: var(--primary);
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

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

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

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

.cookie-decline {
  background: var(--bg-light);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

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

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

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

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 999;
    gap: 0;
  }

  nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
  }

  .lang-switcher {
    margin-top: 2rem;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .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 {
    padding: 6rem 0 4rem;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-badge {
    position: static;
    margin: 1rem 0;
  }

  section {
    padding: 4rem 0;
  }

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

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

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .legal-content {
    padding: 2.5rem 2rem;
  }

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

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

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

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

  .nav-container {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .benefit-card,
  .accordion-item,
  .faq-item {
    padding: 1.5rem;
  }

  .accordion-header,
  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}