/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  color: #374151;
  line-height: 1.5;
  background-color: #e5e7eb;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Animations */
@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Layout */
.app-container {
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.blob-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(3rem);
  opacity: 0.3;
}

.blob--purple {
  top: -10%;
  left: -20%;
  background-color: #e9d5ff;
}

.blob--amber {
  top: -10%;
  right: -20%;
  background-color: #fef3c7;
}

.blob--pink {
  bottom: -2rem;
  left: 5rem;
  background-color: #fbcfe8;
}

/* Main content */
.main-content {
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.page-scroll {
  flex: 1;
  overflow-y: auto;
  position: relative;
  background-color: #ffffff;
}

/* Language switcher */
.lang-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.375rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lang-switcher__link {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.2s;
  color: #6b7280;
}

.lang-switcher__link:hover {
  color: #1f2937;
  background-color: #f9fafb;
}

.lang-switcher__link--active {
  background-color: #fef3c7;
  color: #92400e;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.2s;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn--primary {
  background-color: #111827;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.btn--primary:hover {
  background-color: #1f2937;
}

.btn--primary .btn__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn--secondary {
  background-color: #f3f4f6;
  color: #111827;
}

.btn--secondary:hover {
  background-color: #e5e7eb;
}

.btn--amber {
  background-color: #f59e0b;
  color: #ffffff;
  width: 100%;
}

.btn--amber:hover {
  background-color: #d97706;
}

.btn--outline {
  background-color: #f9fafb;
  color: #111827;
  border: 1px solid #e5e7eb;
  width: 100%;
}

.btn--outline:hover {
  background-color: #f3f4f6;
}

/* CTA section */
.cta {
  padding: 5rem 1.5rem;
  background-color: #111827;
  border-top: 1px solid #1f2937;
  text-align: center;
}

.cta__container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta__text {
  color: #9ca3af;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.625;
}

.cta__card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.cta__card-icon {
  width: 4rem;
  height: 4rem;
  background-color: #fef3c7;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.cta__card-icon-text {
  font-size: 1.875rem;
}

.cta__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.cta__card-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.cta__card-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive */
@media (min-width: 640px) {
  .btn {
    width: auto;
  }

  .btn--amber,
  .btn--outline {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .cta {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
