@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-dark: #0a0a0a;
  --color-light: #ffffff;
  --color-primary: #00d4aa;
  --color-secondary: #7c3aed;
  --color-accent: #ff6b35;
  --color-gray-50: #fafafa;
  --color-gray-100: #f4f4f5;
  --color-gray-200: #e4e4e7;
  --color-gray-300: #d4d4d8;
  --color-gray-700: #3f3f46;
  --color-gray-800: #27272a;
  --color-gray-900: #18181b;
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --glow-primary: 0 8px 32px rgba(0, 212, 170, 0.3);
  --glow-accent: 0 8px 32px rgba(255, 107, 53, 0.3);
  --glow-secondary: 0 8px 32px rgba(124, 58, 237, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-light);
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

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

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

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: inherit;
}

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

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

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

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-light);
}

.section-light {
  background: var(--color-light);
  color: var(--color-dark);
}

.section-accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-light);
}

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

.header-dark {
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  transition: var(--transition-base);
}

.header-dark .logo-link {
  color: var(--color-light);
}

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

.logo-link svg {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-menu li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-base);
}

.header-dark .nav-menu li a {
  color: var(--color-light);
}

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

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.header-dark .lang-switcher {
  border-left-color: rgba(255, 255, 255, 0.2);
}

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

.header-dark .lang-btn {
  color: var(--color-gray-300);
}

.lang-btn:hover {
  background: rgba(0, 212, 170, 0.1);
  color: var(--color-primary);
}

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

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

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

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

.header-dark .mobile-menu-toggle span {
  background: var(--color-light);
}

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

.btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
  box-shadow: var(--glow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 170, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-light);
  box-shadow: var(--glow-secondary);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-light);
  box-shadow: var(--glow-accent);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

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

.btn-outline:hover {
  background: var(--color-light);
  color: var(--color-dark);
  transform: translateY(-3px);
}

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

.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-light);
  transform: translateY(-3px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 4rem;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-content {
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 212, 170, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.section-dark .hero-eyebrow {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.3);
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.section-light .hero-stats {
  border-top-color: rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin: 0;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

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

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

.hero-floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  max-width: 280px;
  z-index: 3;
}

.section-dark .hero-floating-card {
  background: var(--color-gray-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-floating-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.section-dark .hero-floating-card h4 {
  color: var(--color-light);
}

.hero-floating-card p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.7;
  color: var(--color-dark);
}

.section-dark .hero-floating-card p {
  color: var(--color-light);
}

.hero-floating-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-light);
  font-size: 1.5rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

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

.section-eyebrow {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 212, 170, 0.1);
  color: var(--color-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.section-dark .section-eyebrow {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.3);
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.25rem;
  opacity: 0.8;
}

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

.benefit-card {
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--color-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-dark .benefit-card {
  background: var(--color-gray-900);
  border-color: rgba(255, 255, 255, 0.08);
}

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

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--color-light);
  box-shadow: var(--glow-primary);
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.section-dark .benefit-card h3 {
  color: var(--color-light);
}

.benefit-card p {
  margin: 0;
  opacity: 0.8;
  color: var(--color-dark);
}

.section-dark .benefit-card p {
  color: var(--color-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-light);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.section-dark .feature-card {
  background: var(--color-gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.feature-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.feature-content {
  padding: 2rem;
}

.feature-content h3 {
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.section-dark .feature-content h3 {
  color: var(--color-light);
}

.feature-content p {
  margin: 0;
  opacity: 0.8;
  color: var(--color-dark);
}

.section-dark .feature-content p {
  color: var(--color-light);
}

.cta-banner {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  opacity: 0.95;
  z-index: 1;
}

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

.cta-banner h2 {
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

.cta-banner p {
  font-size: 1.25rem;
  color: var(--color-light);
  opacity: 0.95;
  margin-bottom: 2.5rem;
}

.decorative-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
}

.decorative-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary);
  top: -200px;
  right: -200px;
}

.decorative-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  bottom: -150px;
  left: -150px;
}

.decorative-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.content-section {
  padding: 8rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

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

.content-text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.content-text ul {
  list-style: none;
  margin: 2rem 0;
}

.content-text ul li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.125rem;
}

.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.content-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.steps-section {
  padding: 8rem 0;
}

.steps-grid {
  display: grid;
  gap: 3rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-light);
  box-shadow: var(--glow-primary);
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.75rem;
}

.step-content p {
  margin: 0;
  opacity: 0.85;
}

.form-section {
  padding: 8rem 0;
}

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

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-item {
  padding: 2rem;
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
}

.section-dark .contact-item {
  background: var(--color-gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--color-light);
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.section-dark .contact-item h4 {
  color: var(--color-light);
}

.contact-item p {
  margin: 0;
  opacity: 0.8;
  color: var(--color-dark);
}

.section-dark .contact-item p {
  color: var(--color-light);
}

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

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

.form-wrapper {
  background: var(--color-light);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.section-dark .form-wrapper {
  background: var(--color-gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.section-dark .form-group label {
  color: var(--color-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 12px;
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  transition: var(--transition-base);
  background: var(--color-light);
  color: var(--color-dark);
}

.section-dark .form-group input,
.section-dark .form-group textarea {
  background: var(--color-gray-800);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

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

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

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

.form-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.125rem;
}

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

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding-top: 6rem;
}

.footer-cta {
  text-align: center;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4rem;
}

.footer-cta h2 {
  color: var(--color-light);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.footer-cta p {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-about h3 {
  color: var(--color-light);
  margin-bottom: 1rem;
}

.footer-about p {
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  color: var(--color-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

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

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

.footer-links ul li a {
  opacity: 0.7;
  transition: var(--transition-base);
  display: inline-block;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--color-primary);
  transform: translateX(4px);
}

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-content .last-updated {
  opacity: 0.6;
  margin-bottom: 3rem;
  font-size: 0.875rem;
}

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

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

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

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

.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--color-light);
  box-shadow: var(--glow-primary);
}

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

.thanks-content p {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 2rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.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;
  opacity: 0.9;
}

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

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

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

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

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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-visual {
    order: -1;
  }

  .hero-stats {
    gap: 2rem;
  }

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

  .content-grid.reverse {
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: var(--transition-smooth);
  }

  .header-dark .nav-menu {
    background: rgba(10, 10, 10, 0.98);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header-dark .nav-menu li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 1rem;
    justify-content: center;
  }

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

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

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

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

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-container {
    padding: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-floating-card {
    position: static;
    margin-top: 2rem;
    max-width: 100%;
  }

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

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

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

  .form-wrapper {
    padding: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

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

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

  .hero-cta .btn {
    width: 100%;
  }

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

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