@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
a:focus-visible,
button:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.organic-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.organic-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}
.organic-header.scrolled #nav-container {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.organic-header.scrolled .organic-logo-wrap,
.organic-header.scrolled .custom-logo {
  max-height: 40px;
}

.wave-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.wave-background .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: wave-flow 15s ease-in-out infinite;
}
.wave-background .wave.wave-1 {
  animation-duration: 18s;
  opacity: 0.6;
}
.wave-background .wave.wave-2 {
  animation-duration: 22s;
  animation-delay: -5s;
  opacity: 0.4;
}

@keyframes wave-flow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) scaleY(1.1);
  }
}
#nav-container {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container {
  position: relative;
  z-index: 10;
}

.organic-logo-wrap {
  position: relative;
  display: inline-block;
}
.organic-logo-wrap .custom-logo {
  max-height: 50px;
  width: auto;
  height: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.15));
}
.organic-logo-wrap .logo-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  animation: blob-morph 8s ease-in-out infinite;
  z-index: 1;
}

.organic-title {
  position: relative;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
}
.organic-title .title-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.organic-title .title-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  animation: blob-morph 8s ease-in-out infinite;
  z-index: 1;
}
.organic-title:hover .title-text {
  transform: scale(1.05);
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    border-radius: 50% 60% 70% 40%/60% 50% 50% 40%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  50% {
    border-radius: 70% 50% 40% 60%/40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  75% {
    border-radius: 40% 70% 60% 50%/50% 40% 50% 60%;
    transform: translate(-50%, -50%) rotate(270deg);
  }
}
.organic-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.organic-menu .menu-item-organic,
.organic-menu li {
  position: relative;
  margin: 0 0.25rem;
}
.organic-menu .menu-link,
.organic-menu a {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #374151;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.organic-menu .menu-link .menu-link-text,
.organic-menu a .menu-link-text {
  position: relative;
  z-index: 2;
}
.organic-menu .menu-link .menu-blob,
.organic-menu a .menu-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 50% 60% 70% 40%/60% 50% 50% 40%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.organic-menu .menu-link:hover,
.organic-menu a:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}
.organic-menu .menu-link:hover .menu-blob,
.organic-menu a:hover .menu-blob {
  transform: translate(-50%, -50%) scale(1.2);
  animation: blob-pulse 2s ease-in-out infinite;
}

@keyframes blob-pulse {
  0%, 100% {
    border-radius: 50% 60% 70% 40%/60% 50% 50% 40%;
  }
  50% {
    border-radius: 60% 50% 40% 70%/50% 60% 40% 60%;
  }
}
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  overflow: hidden;
  border-radius: 60px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.cta-btn .cta-text {
  position: relative;
  z-index: 3;
}
.cta-btn .cta-blob {
  position: absolute;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-btn .cta-blob-1 {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.3;
  animation: blob-float 4s ease-in-out infinite;
}
.cta-btn .cta-blob-2 {
  bottom: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  opacity: 0.2;
  animation: blob-float 5s ease-in-out infinite reverse;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cta-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}
.cta-primary .cta-blob-1 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}
.cta-primary .cta-blob-2 {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
}
.cta-primary:hover {
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4);
}

.cta-secondary {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}
.cta-secondary .cta-blob-1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}
.cta-secondary .cta-blob-2 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}
.cta-secondary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35);
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  }
  33% {
    transform: translate(10px, -10px) rotate(120deg);
    border-radius: 50% 60% 70% 40%/60% 50% 50% 40%;
  }
  66% {
    transform: translate(-10px, 10px) rotate(240deg);
    border-radius: 70% 50% 40% 60%/40% 50% 60% 50%;
  }
}
.mobile-menu-btn {
  position: relative;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  transition: all 0.4s ease;
}
.mobile-menu-btn:focus {
  outline: none;
}
.mobile-menu-btn .hamburger-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 50% 60% 70% 40%/60% 50% 50% 40%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: blob-morph 6s ease-in-out infinite;
}
.mobile-menu-btn .hamburger-lines {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
}
.mobile-menu-btn .line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-btn:hover .hamburger-blob {
  transform: translate(-50%, -50%) scale(1.1);
}
.mobile-menu-btn.active .line-1 {
  transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-btn.active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.active .line-3 {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu-organic {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-organic.active {
  max-height: 600px;
  opacity: 1;
  padding: 1.5rem 0;
}
.mobile-menu-organic .mobile-menu-content {
  position: relative;
}
.mobile-menu-organic .mobile-menu-blob {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 30px;
  animation: blob-morph 10s ease-in-out infinite;
}
.mobile-menu-organic .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
.mobile-menu-organic .mobile-nav-list li {
  margin: 0.5rem 0;
  transform: translateY(20px);
  opacity: 0;
  animation: slide-in-mobile 0.5s ease forwards;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(5) {
  animation-delay: 0.5s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(6) {
  animation-delay: 0.6s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(7) {
  animation-delay: 0.7s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(8) {
  animation-delay: 0.8s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(9) {
  animation-delay: 0.9s;
}
.mobile-menu-organic .mobile-nav-list li:nth-child(10) {
  animation-delay: 1s;
}
.mobile-menu-organic .mobile-nav-list li a {
  position: relative;
  display: block;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  color: #374151;
  transition: all 0.4s ease;
}
.mobile-menu-organic .mobile-nav-list li a .mobile-link-text {
  position: relative;
  z-index: 2;
}
.mobile-menu-organic .mobile-nav-list li a .mobile-link-blob {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: left;
  z-index: 1;
}
.mobile-menu-organic .mobile-nav-list li a:hover {
  color: #3b82f6;
}
.mobile-menu-organic .mobile-nav-list li a:hover .mobile-link-blob {
  transform: translateY(-50%) scaleX(1);
}
.mobile-menu-organic .mobile-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.mobile-menu-organic .mobile-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-organic .mobile-cta span {
  position: relative;
  z-index: 2;
}
.mobile-menu-organic .mobile-cta .mobile-cta-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 150%;
  height: 150%;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.mobile-menu-organic .mobile-cta:active {
  transform: scale(0.97);
}
.mobile-menu-organic .mobile-cta-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}
.mobile-menu-organic .mobile-cta-primary .mobile-cta-blob {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}
.mobile-menu-organic .mobile-cta-primary:hover .mobile-cta-blob {
  transform: translate(-50%, -50%) scale(1);
}
.mobile-menu-organic .mobile-cta-secondary {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}
.mobile-menu-organic .mobile-cta-secondary .mobile-cta-blob {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}
.mobile-menu-organic .mobile-cta-secondary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-color: transparent;
}
.mobile-menu-organic .mobile-cta-secondary:hover .mobile-cta-blob {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes slide-in-mobile {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header-spacer {
  height: 80px;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .header-spacer {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .organic-logo-wrap .custom-logo {
    max-height: 40px;
  }
  .organic-title {
    font-size: 1.5rem;
  }
}
#main-header {
  will-change: transform, background-color;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

#nav-container {
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
  contain: layout style;
}

#header-spacer {
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
  contain: layout style;
}

.custom-logo-wrapper {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}
.custom-logo-wrapper img {
  transition: all 0.3s ease;
  max-height: 48px;
  width: auto;
}

#site-title {
  transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  #main-header.bg-white\/95 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  #main-header.bg-white\/95 {
    background-color: rgba(255, 255, 255, 0.98);
  }
}
#mobile-menu-button svg {
  transition: transform 0.3s ease;
}
#mobile-menu-button:hover svg {
  transform: scale(1.1);
}
#mobile-menu-button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.bg-blue-600:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.border-blue-600:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

body.admin-bar #main-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar #main-header {
    top: 46px;
  }
}
.header-scrolled {
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

@media (max-width: 1024px) {
  .custom-logo-wrapper img {
    max-height: 40px;
  }
}
@media (max-width: 768px) {
  #nav-container {
    height: 70px !important;
  }
  #header-spacer {
    height: 70px !important;
  }
  .custom-logo-wrapper img {
    max-height: 36px;
  }
  #site-title {
    font-size: 1.5rem !important;
  }
}
#mobile-menu {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu.show {
  max-height: 400px;
  opacity: 1;
}

#mobile-menu {
  transition: all 0.3s ease-in-out;
}
#mobile-menu.hidden {
  max-height: 0;
  opacity: 0;
}
#mobile-menu:not(.hidden) {
  max-height: 500px;
  opacity: 1;
}

#mobile-menu-button .menu-icon,
#mobile-menu-button .close-icon {
  transition: opacity 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  #main-header,
  #nav-container,
  #header-spacer,
  .custom-logo-wrapper,
  #site-title {
    transition: none;
  }
}
.organic-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}

.footer-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.footer-wave-bg .footer-wave {
  position: absolute;
  width: 100%;
  height: 100%;
}
.footer-wave-bg .footer-wave.footer-wave-1 {
  top: -20%;
  animation: footer-wave-flow 20s ease-in-out infinite;
  opacity: 0.3;
}
.footer-wave-bg .footer-wave.footer-wave-2 {
  top: -10%;
  animation: footer-wave-flow 25s ease-in-out infinite reverse;
  animation-delay: -5s;
  opacity: 0.2;
}
.footer-wave-bg .footer-wave.footer-wave-3 {
  top: 0;
  animation: footer-wave-flow 30s ease-in-out infinite;
  animation-delay: -10s;
  opacity: 0.15;
}

@keyframes footer-wave-flow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-20%) scaleY(1.2);
  }
}
.footer-grid-organic {
  position: relative;
  z-index: 10;
}

.footer-column-organic {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-column-organic .column-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
  border-radius: 24px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.footer-column-organic:hover {
  transform: translateY(-5px);
}
.footer-column-organic:hover .column-blob {
  opacity: 1;
}
.footer-column-organic > * {
  position: relative;
  z-index: 2;
}

.footer-about .organic-logo-footer {
  position: relative;
  display: inline-block;
}
.footer-about .organic-logo-footer .custom-logo {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .footer-about .organic-logo-footer .custom-logo {
    max-height: 50px;
  }
}
.footer-about .organic-logo-footer .logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
  animation: glow-pulse 3s ease-in-out infinite;
}
.footer-about .organic-logo-footer:hover .logo-glow {
  opacity: 1;
}

@keyframes glow-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}
.footer-title-organic {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-title-organic .title-text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.footer-title-organic .title-underline-blob {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-title-organic:hover .title-underline-blob {
  width: 100%;
}

.footer-description-organic {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  transition: all 0.3s ease;
}
.footer-description-organic:hover {
  color: #e2e8f0;
}

.footer-nav-organic {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav-organic li {
  margin-bottom: 0.75rem;
}
.footer-nav-organic li a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-nav-organic li a .footer-link-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.footer-nav-organic li a .footer-link-blob {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-nav-organic li a:hover {
  color: #ffffff;
  transform: translateX(8px);
}
.footer-nav-organic li a:hover .footer-link-blob {
  width: 100%;
}

.social-icons-organic {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-icon-organic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.social-icon-organic svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.social-icon-organic .icon-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border-radius: 50% 60% 70% 40%/60% 50% 50% 40%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: blob-morph 6s ease-in-out infinite;
  z-index: 1;
}
.social-icon-organic:hover {
  color: #ffffff;
  transform: translateY(-5px) scale(1.1);
}
.social-icon-organic:hover .icon-blob {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}
.social-icon-organic:hover svg {
  transform: rotate(360deg) scale(1.1);
}

.app-download-organic .download-label {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.app-download-organic .download-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.download-btn-organic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.download-btn-organic svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.download-btn-organic span {
  position: relative;
  z-index: 2;
}
.download-btn-organic .download-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.download-btn-organic:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}
.download-btn-organic:hover .download-blob {
  transform: translate(-50%, -50%) scale(1);
}
.download-btn-organic:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.footer-bottom-organic {
  margin-top: 3rem;
  padding-top: 2rem;
  position: relative;
}
.footer-bottom-organic .bottom-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.5) 50%, transparent 100%);
}
.footer-bottom-organic .bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-organic .bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright-organic {
  color: #94a3b8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.copyright-organic .copyright-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.credits-organic {
  color: #64748b;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.credits-organic .heart-pulse {
  display: inline-block;
  animation: heart-beat 1.5s ease-in-out infinite;
  font-size: 1rem;
}

@keyframes heart-beat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
}
.whatsapp-organic-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-organic-float .whatsapp-blob {
  position: absolute;
  border-radius: 50%;
  animation: whatsapp-blob-float 4s ease-in-out infinite;
}
.whatsapp-organic-float .whatsapp-blob.whatsapp-blob-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  z-index: 1;
}
.whatsapp-organic-float .whatsapp-blob.whatsapp-blob-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: rgba(37, 211, 102, 0.3);
  animation-delay: -1s;
  z-index: 0;
}
.whatsapp-organic-float .whatsapp-blob.whatsapp-blob-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: rgba(37, 211, 102, 0.2);
  animation-delay: -2s;
  z-index: -1;
}
.whatsapp-organic-float .whatsapp-icon-organic {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transition: all 0.4s ease;
}
.whatsapp-organic-float:hover {
  transform: scale(1.1) translateY(-4px);
}
.whatsapp-organic-float:hover .whatsapp-blob-1 {
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.6);
  animation: whatsapp-blob-hover 3s ease-in-out infinite;
}
.whatsapp-organic-float:hover .whatsapp-icon-organic {
  transform: rotate(15deg) scale(1.1);
}
.whatsapp-organic-float:active {
  transform: scale(1.05);
}

@keyframes whatsapp-blob-float {
  0%, 100% {
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    border-radius: 50% 60% 70% 40%/60% 50% 50% 40%;
    transform: translate(-50%, -50%) rotate(90deg) scale(1.05);
  }
  50% {
    border-radius: 70% 50% 40% 60%/40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  75% {
    border-radius: 40% 70% 60% 50%/50% 40% 50% 60%;
    transform: translate(-50%, -50%) rotate(270deg) scale(1.05);
  }
}
@keyframes whatsapp-blob-hover {
  0%, 100% {
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  }
  50% {
    border-radius: 50% 60% 70% 40%/60% 50% 50% 40%;
  }
}
@media (max-width: 768px) {
  .whatsapp-organic-float {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
  .whatsapp-organic-float .whatsapp-icon-organic {
    width: 32px;
    height: 32px;
  }
  .footer-column-organic {
    padding: 1rem;
  }
  .social-icon-organic {
    width: 44px;
    height: 44px;
  }
  .social-icon-organic svg {
    width: 20px;
    height: 20px;
  }
}
.hero-organic {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-organic {
    padding: 6rem 0 4rem;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .hero-organic {
    padding: 5rem 0 3rem;
  }
}

.hero-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-wave-bg .hero-wave {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-wave-bg .hero-wave.hero-wave-1 {
  bottom: -10%;
  animation: hero-wave-flow 18s ease-in-out infinite;
  opacity: 0.4;
}
.hero-wave-bg .hero-wave.hero-wave-2 {
  bottom: -5%;
  animation: hero-wave-flow 22s ease-in-out infinite reverse;
  animation-delay: -5s;
  opacity: 0.3;
}
.hero-wave-bg .hero-wave.hero-wave-3 {
  bottom: 0;
  animation: hero-wave-flow 26s ease-in-out infinite;
  animation-delay: -10s;
  opacity: 0.25;
}

@keyframes hero-wave-flow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-20%) scaleY(1.15);
  }
}
.hero-container {
  position: relative;
  z-index: 10;
}

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

.hero-badge-wrapper {
  display: inline-flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-badge-wrapper {
    justify-content: flex-start;
  }
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
  font-weight: 600;
  font-size: 0.9rem;
  color: #3b82f6;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
}
.hero-badge:hover .hero-badge-blob {
  transform: scale(1.5);
  opacity: 1;
}
.hero-badge .hero-badge-icon {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  animation: sparkle-hero 2s ease-in-out infinite;
}
.hero-badge .hero-badge-text {
  position: relative;
  z-index: 2;
}
.hero-badge .hero-badge-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@keyframes sparkle-hero {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
}
.hero-title .hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.hero-title .hero-title-normal {
  display: block;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.hero-title .hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .hero-title-blob {
  position: absolute;
  top: -20%;
  left: -5%;
  width: 110%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  animation: blob-morph 12s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 2rem;
}
@media (min-width: 1024px) {
  .hero-description {
    margin: 0 0 2rem 0;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .hero-cta-group {
    justify-content: flex-start;
  }
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  border-radius: 60px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  min-width: 200px;
}
.hero-cta .hero-cta-icon {
  font-size: 1.25rem;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}
.hero-cta .hero-cta-text {
  position: relative;
  z-index: 3;
}
.hero-cta .hero-cta-blob {
  position: absolute;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-cta .hero-cta-blob-1 {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.3;
  animation: blob-float 5s ease-in-out infinite;
}
.hero-cta .hero-cta-blob-2 {
  bottom: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  opacity: 0.2;
  animation: blob-float 6s ease-in-out infinite reverse;
}
.hero-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.hero-cta:hover .hero-cta-icon {
  transform: scale(1.15) rotate(5deg);
}
.hero-cta:active {
  transform: translateY(-2px) scale(1);
}

.hero-cta-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}
.hero-cta-primary .hero-cta-blob-1 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}
.hero-cta-primary .hero-cta-blob-2 {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
}
.hero-cta-primary:hover {
  box-shadow: 0 20px 56px rgba(59, 130, 246, 0.45);
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #3b82f6;
  border: 2px solid #3b82f6;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}
.hero-cta-secondary .hero-cta-blob-1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}
.hero-cta-secondary .hero-cta-blob-2 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}
.hero-cta-secondary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  .hero-stats {
    gap: 1rem;
  }
}

.hero-stat-item {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .hero-stat-item {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .hero-stat-item {
    padding: 1rem 0.5rem;
  }
}
.hero-stat-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}
.hero-stat-item:hover .hero-stat-blob {
  transform: scale(1.2);
  opacity: 1;
}
.hero-stat-item:hover .hero-stat-icon {
  transform: scale(1.15) rotate(10deg);
}
.hero-stat-item .hero-stat-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.hero-stat-item .hero-stat-icon {
  font-size: 1.75rem;
  color: #3b82f6;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
@media (max-width: 640px) {
  .hero-stat-item .hero-stat-icon {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.hero-stat-item .hero-stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 2;
}
.hero-stat-item .hero-stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: #64748b;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.hero-mockup {
  position: relative;
  z-index: 2;
}

.hero-mockup-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-mockup-container {
    max-width: 450px;
  }
}

.hero-phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9/19;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-phone-frame:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 30px 80px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.hero-phone-frame:hover .hero-phone-glow {
  opacity: 1;
  transform: scale(1.1);
}
.hero-phone-frame .hero-phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #0f172a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}
.hero-phone-frame .hero-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 32px;
  overflow: hidden;
}
.hero-phone-frame .hero-phone-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}
.hero-phone-frame .hero-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  pointer-events: none;
}

.hero-phone-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-phone-placeholder .placeholder-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-phone-placeholder .placeholder-icon {
  font-size: 5rem;
  color: #3b82f6;
  margin-bottom: 1rem;
  animation: float-phone 3s ease-in-out infinite;
}
.hero-phone-placeholder .placeholder-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-phone-placeholder .placeholder-blob {
  position: absolute;
  border-radius: 50%;
  animation: blob-float 4s ease-in-out infinite;
}
.hero-phone-placeholder .placeholder-blob.placeholder-blob-1 {
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}
.hero-phone-placeholder .placeholder-blob.placeholder-blob-2 {
  top: 50%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  animation-delay: -2s;
}
.hero-phone-placeholder .placeholder-blob.placeholder-blob-3 {
  bottom: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  animation-delay: -4s;
}

@keyframes float-phone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  animation: float-element 3s ease-in-out infinite;
}
.floating-element i {
  position: relative;
  z-index: 2;
}
.floating-element .floating-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: blob-pulse 2s ease-in-out infinite;
  z-index: 1;
}
.floating-element.floating-element-1 {
  top: 15%;
  right: -5%;
  animation-delay: 0s;
}
.floating-element.floating-element-2 {
  top: 45%;
  left: -8%;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  animation-delay: -1s;
}
.floating-element.floating-element-3 {
  bottom: 20%;
  right: -3%;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  animation-delay: -2s;
}
@media (max-width: 768px) {
  .floating-element {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@keyframes float-element {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
.hero-decorative-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.decorative-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: blob-float 8s ease-in-out infinite;
}
.decorative-blob.decorative-blob-1 {
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
}
.decorative-blob.decorative-blob-2 {
  bottom: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  animation-delay: -3s;
}
.decorative-blob.decorative-blob-3 {
  top: 50%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  animation-delay: -6s;
}
@media (max-width: 768px) {
  .decorative-blob {
    filter: blur(40px);
  }
  .decorative-blob.decorative-blob-1 {
    width: 200px;
    height: 200px;
  }
  .decorative-blob.decorative-blob-2 {
    width: 180px;
    height: 180px;
  }
  .decorative-blob.decorative-blob-3 {
    width: 150px;
    height: 150px;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
@media (max-width: 768px) {
  .hero-scroll-indicator {
    bottom: 1rem;
  }
}

.scroll-indicator-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: bounce-scroll 2s ease-in-out infinite;
}
.scroll-indicator-link:hover {
  transform: translateY(-5px);
}
.scroll-indicator-link:hover .scroll-indicator-blob {
  transform: scale(1.3);
  opacity: 1;
}
.scroll-indicator-link:hover .scroll-indicator-icon {
  transform: translateY(3px);
}
.scroll-indicator-link .scroll-indicator-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: blob-pulse 2s ease-in-out infinite;
}
.scroll-indicator-link .scroll-indicator-icon {
  font-size: 1.5rem;
  color: #3b82f6;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

@keyframes bounce-scroll {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 1024px) {
  .hero-stats {
    margin-top: 2rem;
  }
  .hero-cta-group {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-title .hero-title-gradient,
  .hero-title .hero-title-normal,
  .hero-title .hero-title-highlight {
    display: inline;
    margin-bottom: 0;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
    margin: 2rem auto 0;
  }
}
@media (max-width: 768px) and (min-width: 1024px) {
  .hero-stats {
    margin: 2rem 0 0;
  }
}
.benefits-organic {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .benefits-organic {
    padding: 8rem 0;
  }
}
@media (max-width: 768px) {
  .benefits-organic {
    padding: 4rem 0;
  }
}

.benefits-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}
.benefits-wave-bg .benefits-wave {
  position: absolute;
  width: 100%;
  height: 100%;
}
.benefits-wave-bg .benefits-wave.benefits-wave-1 {
  top: 0;
  animation: benefits-wave-flow 20s ease-in-out infinite;
  opacity: 0.5;
}
.benefits-wave-bg .benefits-wave.benefits-wave-2 {
  top: 20px;
  animation: benefits-wave-flow 25s ease-in-out infinite reverse;
  animation-delay: -5s;
  opacity: 0.4;
}

@keyframes benefits-wave-flow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-15%) scaleY(1.1);
  }
}
.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 640px) {
  .benefits-container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .benefits-container {
    padding: 0 4rem;
  }
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .benefits-header {
    margin-bottom: 5rem;
  }
}

.benefits-badge-wrapper {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefits-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
  font-weight: 600;
  font-size: 0.9rem;
  color: #8b5cf6;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefits-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25);
}
.benefits-badge:hover .benefits-badge-blob {
  transform: scale(1.5);
  opacity: 1;
}
.benefits-badge:hover .benefits-badge-icon {
  transform: scale(1.15) rotate(10deg);
}
.benefits-badge .benefits-badge-icon {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.benefits-badge .benefits-badge-text {
  position: relative;
  z-index: 2;
}
.benefits-badge .benefits-badge-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.benefits-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
}
.benefits-title .benefits-title-gradient {
  display: block;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.benefits-title .benefits-title-highlight {
  display: block;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.benefits-title .benefits-title-blob {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  animation: blob-morph 12s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.benefits-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.benefit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}
.benefit-card:hover .benefit-card-blob {
  transform: scale(1.2);
  opacity: 1;
}
.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1);
}
.benefit-card:hover .benefit-icon-blob-1 {
  transform: scale(1.3);
}
.benefit-card:hover .benefit-icon-blob-2 {
  transform: scale(1.4);
}
.benefit-card:hover .benefit-hover-blob {
  opacity: 1;
  transform: scale(1);
}
.benefit-card .benefit-card-blob {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}
.benefit-card .benefit-hover-blob {
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.benefits-card-blue .benefit-card-blob {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}
.benefits-card-blue .benefit-icon {
  color: #3b82f6;
}
.benefits-card-blue .benefit-icon-blob-1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}
.benefits-card-blue .benefit-icon-blob-2 {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.benefits-card-green .benefit-card-blob {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}
.benefits-card-green .benefit-icon {
  color: #10b981;
}
.benefits-card-green .benefit-icon-blob-1 {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
}
.benefits-card-green .benefit-icon-blob-2 {
  background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
}

.benefits-card-purple .benefit-card-blob {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}
.benefits-card-purple .benefit-icon {
  color: #8b5cf6;
}
.benefits-card-purple .benefit-icon-blob-1 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}
.benefits-card-purple .benefit-icon-blob-2 {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
}

.benefit-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.benefit-icon-wrapper .benefit-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}
.benefit-icon-wrapper .benefit-icon-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.benefit-icon-wrapper .benefit-icon-blob-1 {
  width: 100%;
  height: 100%;
}
.benefit-icon-wrapper .benefit-icon-blob-2 {
  width: 120%;
  height: 120%;
  opacity: 0.5;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .benefit-title {
    font-size: 1.25rem;
  }
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

.benefit-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  position: relative;
  z-index: 2;
}
.benefit-content p {
  margin-bottom: 0.75rem;
}
.benefit-content p:last-child {
  margin-bottom: 0;
}
.benefit-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.benefit-content ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 0.8rem;
}

.benefits-empty {
  grid-column: 1/-1;
  padding: 4rem 2rem;
  text-align: center;
}

.benefits-empty-content {
  max-width: 500px;
  margin: 0 auto;
}

.benefits-empty-icon {
  font-size: 4rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.benefits-empty-text {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
}

.benefits-empty-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}
.benefits-empty-link:hover {
  color: #2563eb;
  gap: 0.75rem;
}
.benefits-empty-link i {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.benefits-cta-wrapper {
  text-align: center;
}

.benefits-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.benefits-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 56px rgba(59, 130, 246, 0.45);
}
.benefits-cta:hover .benefits-cta-icon {
  transform: translateX(5px);
}
.benefits-cta:hover .benefits-cta-blob-1 {
  transform: scale(1.5);
}
.benefits-cta:hover .benefits-cta-blob-2 {
  transform: scale(1.3);
}
.benefits-cta:active {
  transform: translateY(-2px) scale(1);
}
.benefits-cta .benefits-cta-text {
  position: relative;
  z-index: 3;
}
.benefits-cta .benefits-cta-icon {
  font-size: 1.125rem;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}
.benefits-cta .benefits-cta-blob {
  position: absolute;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefits-cta .benefits-cta-blob-1 {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0.3;
  animation: blob-float 5s ease-in-out infinite;
}
.benefits-cta .benefits-cta-blob-2 {
  bottom: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
  opacity: 0.2;
  animation: blob-float 6s ease-in-out infinite reverse;
}
@media (max-width: 640px) {
  .benefits-cta {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
  .benefits-cta .benefits-cta-text {
    display: block;
    max-width: 250px;
  }
}

.benefits-decorative-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.decorative-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: blob-float 10s ease-in-out infinite;
}
.decorative-blob.decorative-blob-1 {
  top: 20%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}
.decorative-blob.decorative-blob-2 {
  bottom: 30%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  animation-delay: -3s;
}
.decorative-blob.decorative-blob-3 {
  top: 60%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  animation-delay: -6s;
}
@media (max-width: 768px) {
  .decorative-blob {
    filter: blur(40px);
  }
  .decorative-blob.decorative-blob-1 {
    width: 250px;
    height: 250px;
  }
  .decorative-blob.decorative-blob-2 {
    width: 220px;
    height: 220px;
  }
  .decorative-blob.decorative-blob-3 {
    width: 180px;
    height: 180px;
  }
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  50% {
    border-radius: 40% 60% 70% 30%/60% 30% 70% 40%;
    transform: translateX(-50%) rotate(5deg);
  }
}
@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(10px, -10px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 10px) scale(0.95);
  }
}
@media (max-width: 768px) {
  .benefits-header {
    margin-bottom: 3rem;
  }
  .benefits-grid {
    margin-bottom: 3rem;
  }
  .benefit-card {
    padding: 2rem 1.5rem;
  }
  .benefit-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  .benefit-icon-wrapper .benefit-icon {
    font-size: 2rem;
  }
}
.companies-organic {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .companies-organic {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .companies-organic {
    padding: 4rem 0;
  }
}

.companies-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.companies-wave-bg .companies-wave {
  position: absolute;
  width: 100%;
  height: 100%;
}
.companies-wave-bg .companies-wave.companies-wave-1 {
  bottom: 0;
  animation: companies-wave-flow 20s ease-in-out infinite;
  opacity: 0.5;
}
.companies-wave-bg .companies-wave.companies-wave-2 {
  bottom: -5%;
  animation: companies-wave-flow 25s ease-in-out infinite reverse;
  animation-delay: -7s;
  opacity: 0.3;
}

@keyframes companies-wave-flow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-15%) scaleY(1.1);
  }
}
.companies-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .companies-container {
    padding: 0 2rem;
  }
}

.companies-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .companies-header {
    margin-bottom: 3rem;
  }
}

.companies-badge-wrapper {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.companies-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
  font-weight: 600;
  font-size: 0.9rem;
  color: #8b5cf6;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.companies-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25);
}
.companies-badge:hover .companies-badge-blob {
  transform: scale(1.5);
  opacity: 1;
}
.companies-badge:hover .companies-badge-icon {
  transform: scale(1.15) rotate(10deg);
}
.companies-badge .companies-badge-icon {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.companies-badge .companies-badge-text {
  position: relative;
  z-index: 2;
}
.companies-badge .companies-badge-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.companies-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
}
.companies-title .companies-title-gradient {
  display: block;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.companies-title .companies-title-normal {
  display: block;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.companies-title .companies-title-highlight {
  display: block;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.companies-title .companies-title-blob {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  animation: blob-morph 12s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .companies-title .companies-title-gradient,
  .companies-title .companies-title-normal,
  .companies-title .companies-title-highlight {
    display: inline;
    margin-bottom: 0;
  }
}

.companies-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

.companies-carousel-wrapper {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .companies-carousel-wrapper {
    padding: 1.5rem 0;
  }
}

.companies-swiper {
  overflow: visible;
  padding: 1rem 0;
}

.company-logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  height: 140px;
  border: 2px solid rgba(226, 232, 240, 0.5);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 768px) {
  .company-logo-card {
    height: 120px;
    padding: 1.5rem;
  }
}
.company-logo-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}
.company-logo-card:hover .company-card-blob {
  transform: scale(1.3);
  opacity: 1;
}
.company-logo-card:hover .company-card-glow {
  opacity: 1;
  transform: scale(1.1);
}
.company-logo-card:hover .company-logo-img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.company-logo-card:hover .company-placeholder-icon {
  transform: scale(1.15) rotate(5deg);
}
.company-logo-card .company-card-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.company-logo-card .company-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  pointer-events: none;
}

.company-logo-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo-img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(0.5);
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .company-logo-img {
    max-height: 60px;
  }
}

.company-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #94a3b8;
  text-align: center;
}
.company-logo-placeholder .company-placeholder-icon {
  font-size: 2.5rem;
  color: #cbd5e1;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .company-logo-placeholder .company-placeholder-icon {
    font-size: 2rem;
  }
}
.company-logo-placeholder .company-placeholder-text {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .company-logo-placeholder .company-placeholder-text {
    font-size: 0.8rem;
  }
}

.companies-swiper-button-next,
.companies-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
@media (max-width: 768px) {
  .companies-swiper-button-next,
  .companies-swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
.companies-swiper-button-next:hover,
.companies-swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.1);
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}
.companies-swiper-button-next:hover .nav-blob,
.companies-swiper-button-prev:hover .nav-blob {
  transform: scale(1.5);
  opacity: 1;
}
.companies-swiper-button-next i,
.companies-swiper-button-prev i {
  position: relative;
  z-index: 2;
}
.companies-swiper-button-next .nav-blob,
.companies-swiper-button-prev .nav-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.companies-swiper-button-next {
  right: -24px;
}
@media (max-width: 768px) {
  .companies-swiper-button-next {
    right: -20px;
  }
}

.companies-swiper-button-prev {
  left: -24px;
}
@media (max-width: 768px) {
  .companies-swiper-button-prev {
    left: -20px;
  }
}

.companies-swiper-pagination {
  position: relative;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.companies-swiper-pagination :global(.swiper-pagination-bullet) {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.companies-swiper-pagination :global(.swiper-pagination-bullet):hover {
  background: #94a3b8;
  transform: scale(1.2);
}
.companies-swiper-pagination :global(.swiper-pagination-bullet-active) {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  width: 32px;
  border-radius: 6px;
}

.companies-empty {
  padding: 3rem;
  text-align: center;
}
.companies-empty .companies-empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.companies-empty .companies-empty-icon {
  font-size: 3rem;
  color: #cbd5e1;
}
.companies-empty .companies-empty-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}
.companies-empty .companies-empty-link {
  color: #8b5cf6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.companies-empty .companies-empty-link:hover {
  color: #7c3aed;
  transform: translateX(3px);
}
.companies-empty .companies-empty-link i {
  font-size: 0.875rem;
}

.companies-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.companies-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  background: transparent;
  color: #8b5cf6;
  border: 2px solid #8b5cf6;
  border-radius: 60px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
@media (max-width: 768px) {
  .companies-cta {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
}
.companies-cta .companies-cta-text {
  position: relative;
  z-index: 3;
}
.companies-cta .companies-cta-icon {
  font-size: 1.125rem;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}
.companies-cta .companies-cta-blob {
  position: absolute;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.companies-cta .companies-cta-blob-1 {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  opacity: 0.3;
  animation: blob-float 5s ease-in-out infinite;
}
.companies-cta .companies-cta-blob-2 {
  bottom: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  opacity: 0.2;
  animation: blob-float 6s ease-in-out infinite reverse;
}
.companies-cta:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.35);
}
.companies-cta:hover .companies-cta-icon {
  transform: translateX(5px);
}
.companies-cta:active {
  transform: translateY(-2px) scale(1);
}

.companies-decorative-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.decorative-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: blob-float 8s ease-in-out infinite;
}
.decorative-blob.decorative-blob-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}
.decorative-blob.decorative-blob-2 {
  top: 50%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
  animation-delay: -3s;
}
.decorative-blob.decorative-blob-3 {
  bottom: 10%;
  left: 50%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  animation-delay: -6s;
}
@media (max-width: 768px) {
  .decorative-blob {
    filter: blur(40px);
  }
  .decorative-blob.decorative-blob-1 {
    width: 200px;
    height: 200px;
  }
  .decorative-blob.decorative-blob-2 {
    width: 180px;
    height: 180px;
  }
  .decorative-blob.decorative-blob-3 {
    width: 200px;
    height: 200px;
  }
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  }
  25% {
    border-radius: 50% 60% 70% 40%/60% 40% 60% 50%;
  }
  50% {
    border-radius: 70% 50% 40% 60%/40% 70% 50% 60%;
  }
  75% {
    border-radius: 40% 70% 60% 50%/70% 50% 40% 60%;
  }
}
@keyframes blob-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-10px);
  }
}
.how-it-works-organic {
  background: linear-gradient(135deg, #faf5ff 0%, #f8fafc 50%, #faf5ff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .how-it-works-organic {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .how-it-works-organic {
    padding: 4rem 0;
  }
}

.how-it-works-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.how-it-works-wave-bg .how-it-works-wave {
  position: absolute;
  width: 100%;
  height: 100%;
}
.how-it-works-wave-bg .how-it-works-wave.how-it-works-wave-1 {
  top: 0;
  animation: how-it-works-wave-flow 22s ease-in-out infinite;
  opacity: 0.3;
}
.how-it-works-wave-bg .how-it-works-wave.how-it-works-wave-2 {
  top: -5%;
  animation: how-it-works-wave-flow 28s ease-in-out infinite reverse;
  animation-delay: -8s;
  opacity: 0.2;
}

@keyframes how-it-works-wave-flow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-18%) scaleY(1.12);
  }
}
.how-it-works-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .how-it-works-container {
    padding: 0 2rem;
  }
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .how-it-works-header {
    margin-bottom: 3rem;
  }
}

.how-it-works-badge-wrapper {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.how-it-works-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
  font-weight: 600;
  font-size: 0.9rem;
  color: #f59e0b;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-it-works-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.25);
}
.how-it-works-badge:hover .how-it-works-badge-blob {
  transform: scale(1.5);
  opacity: 1;
}
.how-it-works-badge:hover .how-it-works-badge-icon {
  transform: scale(1.15) rotate(-10deg);
}
.how-it-works-badge .how-it-works-badge-icon {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.how-it-works-badge .how-it-works-badge-text {
  position: relative;
  z-index: 2;
}
.how-it-works-badge .how-it-works-badge-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.how-it-works-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
}
.how-it-works-title .how-it-works-title-gradient {
  display: block;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.how-it-works-title .how-it-works-title-normal {
  display: block;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.how-it-works-title .how-it-works-title-highlight {
  display: block;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how-it-works-title .how-it-works-title-blob {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  animation: blob-morph 12s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .how-it-works-title .how-it-works-title-gradient,
  .how-it-works-title .how-it-works-title-normal,
  .how-it-works-title .how-it-works-title-highlight {
    display: inline;
    margin-bottom: 0;
  }
}

.how-it-works-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

.how-it-works-steps-wrapper {
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .how-it-works-steps-wrapper {
    margin-bottom: 3rem;
  }
}

.steps-connector {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 4px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .steps-connector {
    display: none;
  }
}
.steps-connector .connector-line {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #10b981 50%, #8b5cf6 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.steps-connector .connector-blob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: connector-pulse 2s ease-in-out infinite;
}
.steps-connector .connector-blob.connector-blob-1 {
  left: 33%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, transparent 70%);
}
.steps-connector .connector-blob.connector-blob-2 {
  left: 66%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, transparent 70%);
  animation-delay: -1s;
}

@keyframes connector-pulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.5);
    opacity: 0.5;
  }
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.step-card {
  position: relative;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-card:hover {
  transform: translateY(-10px);
}
.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
}
.step-card:hover .step-number-glow {
  opacity: 1;
  transform: scale(1.2);
}
.step-card:hover .step-icon {
  transform: scale(1.15) rotate(-5deg);
}
.step-card:hover .step-content {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.step-card .step-card-blob {
  display: none;
}

.step-card-blue .step-card-blob {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}
.step-card-blue .step-number {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.step-card-blue .step-icon {
  color: #3b82f6;
}

.step-card-green .step-card-blob {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}
.step-card-green .step-number {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.step-card-green .step-icon {
  color: #10b981;
}

.step-card-purple .step-card-blob {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}
.step-card-purple .step-number {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.step-card-purple .step-icon {
  color: #8b5cf6;
}

.step-card-pink .step-card-blob {
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
}
.step-card-pink .step-number {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}
.step-card-pink .step-icon {
  color: #ec4899;
}

.step-card-orange .step-card-blob {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}
.step-card-orange .step-number {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.step-card-orange .step-icon {
  color: #f59e0b;
}

.step-card-teal .step-card-blob {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
}
.step-card-teal .step-number {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}
.step-card-teal .step-icon {
  color: #14b8a6;
}

.step-number-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.step-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
@media (max-width: 768px) {
  .step-number {
    width: 80px;
    height: 80px;
  }
}
.step-number .step-number-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .step-number .step-number-text {
    font-size: 2rem;
  }
}
.step-number .step-number-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.step-card-blue .step-number-glow {
  background: rgba(59, 130, 246, 0.6);
}

.step-card-green .step-number-glow {
  background: rgba(16, 185, 129, 0.6);
}

.step-card-purple .step-number-glow {
  background: rgba(139, 92, 246, 0.6);
}

.step-card-pink .step-number-glow {
  background: rgba(236, 72, 153, 0.6);
}

.step-card-orange .step-number-glow {
  background: rgba(245, 158, 11, 0.6);
}

.step-card-teal .step-number-glow {
  background: rgba(20, 184, 166, 0.6);
}

.step-content {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .step-content {
    padding: 1.5rem;
  }
}

.step-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}
@media (max-width: 768px) {
  .step-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }
}

.step-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .step-icon {
    font-size: 2rem;
  }
}

.step-icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.step-icon-blob {
  display: none;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .step-title {
    font-size: 1.25rem;
  }
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}
@media (max-width: 768px) {
  .step-description {
    font-size: 0.95rem;
  }
}

.steps-empty {
  grid-column: 1/-1;
  padding: 3rem;
  text-align: center;
}
.steps-empty .steps-empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.steps-empty .steps-empty-icon {
  font-size: 3rem;
  color: #cbd5e1;
}
.steps-empty .steps-empty-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}
.steps-empty .steps-empty-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.steps-empty .steps-empty-link:hover {
  color: #2563eb;
  transform: translateX(3px);
}
.steps-empty .steps-empty-link i {
  font-size: 0.875rem;
}

.app-mockups-wrapper {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .app-mockups-wrapper {
    margin-top: 3rem;
  }
}

.mockups-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .mockups-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.mockup-item {
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mockup-item:hover {
  transform: translateY(-10px);
}
.mockup-item:hover .mockup-frame {
  transform: scale(1.05);
}
.mockup-item:hover .mockup-frame-glow {
  opacity: 1;
  transform: scale(1.15);
}
.mockup-item:hover .mockup-glow {
  opacity: 1;
  transform: scale(1.2);
}

.mockup-frame {
  position: relative;
  max-width: 280px;
  margin: 0 auto 1rem;
  padding: 2rem;
  border-radius: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .mockup-frame {
    max-width: 240px;
    padding: 1.5rem;
  }
}
.mockup-frame .mockup-frame-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 110%;
  height: 110%;
  border-radius: 32px;
  opacity: 0;
  filter: blur(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  pointer-events: none;
}

.mockup-item-blue .mockup-frame {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.mockup-item-blue .mockup-frame .mockup-frame-glow {
  background: rgba(59, 130, 246, 0.6);
}

.mockup-item-green .mockup-frame {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.mockup-item-green .mockup-frame .mockup-frame-glow {
  background: rgba(16, 185, 129, 0.6);
}

.mockup-item-purple .mockup-frame {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.mockup-item-purple .mockup-frame .mockup-frame-glow {
  background: rgba(139, 92, 246, 0.6);
}

.mockup-screen {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .mockup-screen {
    height: 320px;
  }
}

.mockup-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.mockup-placeholder .mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.mockup-item-blue .mockup-glow {
  background: rgba(59, 130, 246, 0.4);
}

.mockup-item-green .mockup-glow {
  background: rgba(16, 185, 129, 0.4);
}

.mockup-item-purple .mockup-glow {
  background: rgba(139, 92, 246, 0.4);
}

.mockup-icon {
  font-size: 5rem;
  color: #e2e8f0;
  position: relative;
  z-index: 2;
  animation: float-mockup 3s ease-in-out infinite;
}
@media (max-width: 768px) {
  .mockup-icon {
    font-size: 4rem;
  }
}

@keyframes float-mockup {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.mockup-label {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .mockup-label {
    font-size: 0.9rem;
  }
}
.mockup-label .mockup-label-icon {
  font-size: 1rem;
  color: #94a3b8;
}

.how-it-works-decorative-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.decorative-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: blob-float 8s ease-in-out infinite;
}
.decorative-blob.decorative-blob-1 {
  top: 15%;
  right: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
}
.decorative-blob.decorative-blob-2 {
  bottom: 20%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  animation-delay: -3s;
}
.decorative-blob.decorative-blob-3 {
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  animation-delay: -6s;
}
@media (max-width: 768px) {
  .decorative-blob {
    filter: blur(40px);
  }
  .decorative-blob.decorative-blob-1 {
    width: 220px;
    height: 220px;
  }
  .decorative-blob.decorative-blob-2 {
    width: 200px;
    height: 200px;
  }
  .decorative-blob.decorative-blob-3 {
    width: 210px;
    height: 210px;
  }
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  }
  25% {
    border-radius: 50% 60% 70% 40%/60% 40% 60% 50%;
  }
  50% {
    border-radius: 70% 50% 40% 60%/40% 70% 50% 60%;
  }
  75% {
    border-radius: 40% 70% 60% 50%/70% 50% 40% 60%;
  }
}
@keyframes blob-float {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) translateX(10px) rotate(5deg);
  }
  66% {
    transform: translateY(8px) translateX(-8px) rotate(-5deg);
  }
}
.testimonials-organic {
  background: linear-gradient(135deg, #fffbeb 0%, #f0f9ff 50%, #fef3c7 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .testimonials-organic {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .testimonials-organic {
    padding: 4rem 0;
  }
}

.testimonials-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.testimonials-wave-bg .testimonials-wave {
  position: absolute;
  width: 100%;
  height: 100%;
}
.testimonials-wave-bg .testimonials-wave.testimonials-wave-1 {
  top: 0;
  animation: testimonials-wave-flow 24s ease-in-out infinite;
  opacity: 0.3;
}
.testimonials-wave-bg .testimonials-wave.testimonials-wave-2 {
  top: -5%;
  animation: testimonials-wave-flow 30s ease-in-out infinite reverse;
  animation-delay: -10s;
  opacity: 0.2;
}

@keyframes testimonials-wave-flow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(-20%) scaleY(1.15);
  }
}
.testimonials-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .testimonials-container {
    padding: 0 2rem;
  }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .testimonials-header {
    margin-bottom: 3rem;
  }
}

.testimonials-badge-wrapper {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.testimonials-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  color: #f59e0b;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
}
.testimonials-badge:hover .testimonials-badge-blob {
  transform: scale(1.5);
  opacity: 1;
}
.testimonials-badge:hover .testimonials-badge-icon {
  transform: scale(1.15) rotate(-15deg);
}
.testimonials-badge .testimonials-badge-icon {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.testimonials-badge .testimonials-badge-text {
  position: relative;
  z-index: 2;
}
.testimonials-badge .testimonials-badge-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
}
.testimonials-title .testimonials-title-gradient {
  display: block;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.testimonials-title .testimonials-title-highlight {
  display: block;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonials-title .testimonials-title-blob {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  animation: blob-morph 14s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .testimonials-title .testimonials-title-gradient,
  .testimonials-title .testimonials-title-highlight {
    display: inline;
    margin-bottom: 0;
  }
}

.testimonials-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .testimonials-grid {
    margin-bottom: 3rem;
  }
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #f59e0b 50%, #06b6d4 100%);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.testimonial-card:hover .testimonial-quote-icon {
  transform: scale(1.1) rotate(-5deg);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.testimonial-quote-wrapper {
  margin-bottom: 1.5rem;
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: #fbbf24;
  opacity: 0.3;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .testimonial-quote-icon {
    font-size: 2rem;
  }
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}
.testimonial-text::before, .testimonial-text::after {
  color: #fbbf24;
  font-weight: 700;
  font-size: 1.2rem;
  opacity: 0.5;
}
.testimonial-text::before {
  content: '"';
  margin-right: 0.25rem;
}
.testimonial-text::after {
  content: '"';
  margin-left: 0.25rem;
}
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 0.95rem;
  }
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.testimonial-rating i {
  font-size: 1rem;
}
.testimonial-rating .testimonial-star-filled {
  color: #fbbf24;
}
.testimonial-rating .testimonial-star-empty {
  color: #e5e7eb;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.testimonial-avatar:hover {
  transform: scale(1.08);
}
.testimonial-avatar.testimonial-avatar-image {
  overflow: hidden;
}
.testimonial-avatar.testimonial-avatar-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .testimonial-avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
}

.testimonial-avatar-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.testimonial-avatar-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.testimonial-avatar-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.testimonial-avatar-pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.testimonial-avatar-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.testimonial-avatar-teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.testimonial-author-info {
  flex: 1;
  min-width: 0;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .testimonial-author-name {
    font-size: 0.95rem;
  }
}

.testimonial-author-role {
  font-size: 0.875rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .testimonial-author-role {
    font-size: 0.8125rem;
  }
}

.testimonials-empty {
  grid-column: 1/-1;
  padding: 4rem 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .testimonials-empty {
    padding: 3rem 1.5rem;
  }
}

.testimonials-empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .testimonials-empty-content {
    padding: 2rem;
  }
}

.testimonials-empty-icon {
  font-size: 4rem;
  color: #cbd5e1;
}
@media (max-width: 768px) {
  .testimonials-empty-icon {
    font-size: 3rem;
  }
}

.testimonials-empty-text {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonials-empty-text {
    font-size: 1rem;
  }
}

.testimonials-empty-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}
.testimonials-empty-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}
.testimonials-empty-link:active {
  transform: translateY(0);
}
.testimonials-empty-link i {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .testimonials-empty-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

.testimonials-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(-5deg);
}
@media (max-width: 768px) {
  .stat-item {
    padding: 1.5rem;
  }
}

.stat-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}
@media (max-width: 768px) {
  .stat-icon-wrapper {
    width: 56px;
    height: 56px;
  }
}

.stat-icon {
  font-size: 1.75rem;
  color: white;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .stat-icon {
    font-size: 1.5rem;
  }
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .stat-value {
    font-size: 2rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .stat-label {
    font-size: 0.8125rem;
  }
}

.testimonials-decorative-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.testimonials-decorative-blobs .decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: blob-float 20s ease-in-out infinite;
}
.testimonials-decorative-blobs .decorative-blob.decorative-blob-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  animation-delay: 0s;
}
.testimonials-decorative-blobs .decorative-blob.decorative-blob-2 {
  top: 60%;
  right: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
  animation-delay: -7s;
}
.testimonials-decorative-blobs .decorative-blob.decorative-blob-3 {
  bottom: 15%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
  animation-delay: -14s;
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg) scale(0.9);
  }
}
@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  }
  25% {
    border-radius: 50% 60% 70% 40%/60% 40% 50% 70%;
  }
  50% {
    border-radius: 70% 50% 40% 60%/40% 70% 60% 50%;
  }
  75% {
    border-radius: 40% 70% 60% 50%/70% 50% 40% 60%;
  }
}
.download-app-organic {
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .download-app-organic {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .download-app-organic {
    padding: 4rem 0;
  }
}

.download-app-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.download-app-wave-bg .download-app-wave {
  position: absolute;
  width: 100%;
  height: 100%;
}
.download-app-wave-bg .download-app-wave.download-app-wave-1 {
  bottom: 0;
  animation: download-wave-flow 20s ease-in-out infinite;
  opacity: 0.5;
}
.download-app-wave-bg .download-app-wave.download-app-wave-2 {
  bottom: -5%;
  animation: download-wave-flow 26s ease-in-out infinite reverse;
  animation-delay: -8s;
  opacity: 0.4;
}

@keyframes download-wave-flow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(15%) scaleY(1.1);
  }
}
.download-app-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .download-app-container {
    padding: 0 2rem;
  }
}

.download-app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .download-app-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
@media (max-width: 768px) {
  .download-app-grid {
    gap: 3rem;
  }
}

.download-app-content {
  color: white;
  text-align: center;
}
@media (min-width: 1024px) {
  .download-app-content {
    text-align: left;
  }
}

.download-app-badge-wrapper {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .download-app-badge-wrapper {
    justify-content: flex-start;
  }
}

.download-app-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.download-app-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.download-app-badge:hover .download-app-badge-blob {
  transform: scale(1.5);
  opacity: 1;
}
.download-app-badge:hover .download-app-badge-icon {
  transform: scale(1.15) rotate(-10deg);
}
.download-app-badge .download-app-badge-icon {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.download-app-badge .download-app-badge-text {
  position: relative;
  z-index: 2;
}
.download-app-badge .download-app-badge-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.download-app-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
}
.download-app-title .download-app-title-gradient {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.download-app-title .download-app-title-highlight {
  display: block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.download-app-title .download-app-title-blob {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  animation: blob-morph 15s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .download-app-title .download-app-title-blob {
    left: 0;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .download-app-title .download-app-title-gradient,
  .download-app-title .download-app-title-highlight {
    display: inline;
    margin-bottom: 0;
  }
}

.download-app-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
@media (min-width: 1024px) {
  .download-app-description {
    margin-left: 0;
    margin-right: auto;
  }
}
@media (max-width: 1024px) {
  .download-app-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.download-app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: white;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .feature-item {
    justify-content: flex-start;
  }
}
@media (max-width: 1024px) {
  .feature-item {
    justify-content: center;
  }
}
.feature-item:hover {
  transform: translateX(5px);
}
.feature-item:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}
@media (max-width: 768px) {
  .feature-item {
    font-size: 1rem;
  }
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .feature-icon-wrapper {
    width: 40px;
    height: 40px;
  }
}

.feature-icon {
  font-size: 1.25rem;
  color: #fbbf24;
}
@media (max-width: 768px) {
  .feature-icon {
    font-size: 1.125rem;
  }
}

.download-app-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .download-app-buttons {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .download-app-buttons {
    justify-content: flex-start;
  }
}
@media (max-width: 1024px) {
  .download-app-buttons {
    justify-content: center;
  }
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.75rem;
  background: #000000;
  color: white;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.download-btn:hover::before {
  opacity: 1;
}
.download-btn:hover .download-btn-icon {
  transform: scale(1.1) rotate(-5deg);
}
.download-btn:active {
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .download-btn {
    padding: 0.875rem 1.5rem;
  }
}

.download-btn-icon {
  font-size: 2rem;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .download-btn-icon {
    font-size: 1.75rem;
  }
}

.download-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
}

.download-btn-label {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
}

.download-btn-store {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 640px) {
  .download-btn-store {
    font-size: 1rem;
  }
}

.download-app-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .download-app-mockup {
    justify-content: flex-end;
  }
}

.mockup-wrapper {
  position: relative;
  max-width: 320px;
  width: 100%;
  z-index: 10;
}
@media (max-width: 768px) {
  .mockup-wrapper {
    max-width: 280px;
  }
}

.mockup-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  border-radius: 3rem;
  filter: blur(40px);
  opacity: 0.6;
  transform: scale(0.95);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
}
.mockup-frame {
  position: relative;
  background: #1f2937;
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}
.mockup-frame:hover {
  transform: scale(1.05) rotateY(5deg);
}
.mockup-frame:hover .mockup-icon {
  transform: scale(1.1) rotate(-5deg);
}
@media (max-width: 768px) {
  .mockup-frame {
    padding: 0.625rem;
    border-radius: 2.5rem;
  }
}

.mockup-screen {
  background: white;
  border-radius: 2.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mockup-screen {
    border-radius: 2rem;
  }
}

.mockup-content {
  aspect-ratio: 9/19;
  background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media (max-width: 768px) {
  .mockup-content {
    padding: 1.5rem;
  }
}

.mockup-icon {
  font-size: 6rem;
  color: #3b82f6;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .mockup-icon {
    font-size: 4.5rem;
  }
}

.mockup-text {
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
}
@media (max-width: 768px) {
  .mockup-text {
    font-size: 0.875rem;
  }
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: float-icon 6s ease-in-out infinite;
}
.floating-icon i {
  font-size: 1.75rem;
  color: #fbbf24;
}
.floating-icon.floating-icon-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.floating-icon.floating-icon-2 {
  top: 50%;
  right: 0%;
  animation-delay: -2s;
}
.floating-icon.floating-icon-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: -4s;
}
@media (max-width: 768px) {
  .floating-icon {
    width: 48px;
    height: 48px;
  }
  .floating-icon i {
    font-size: 1.25rem;
  }
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
  }
  25% {
    border-radius: 50% 60% 70% 40%/60% 40% 50% 70%;
  }
  50% {
    border-radius: 70% 50% 40% 60%/40% 70% 60% 50%;
  }
  75% {
    border-radius: 40% 70% 60% 50%/70% 50% 40% 60%;
  }
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Inter, system-ui, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit{
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.prose-lg{
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-inline-start: 1em;
}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-inline-end: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8666667em;
}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.875em;
}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-inline-end: 1.5em;
  padding-bottom: 1em;
  padding-inline-start: 1.5em;
}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.5;
}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.75em;
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.aspect-h-9{
  --tw-aspect-h: 9;
}
.aspect-w-16{
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  --tw-aspect-w: 16;
}
.aspect-w-16 > *{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: transparent;
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.btn:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.btn:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
  --tw-ring-offset-width: 2px;
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible{
  visibility: visible;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.-bottom-4{
  bottom: -1rem;
}
.-left-4{
  left: -1rem;
}
.-right-4{
  right: -1rem;
}
.-top-4{
  top: -1rem;
}
.z-10{
  z-index: 10;
}
.z-50{
  z-index: 50;
}
.order-1{
  order: 1;
}
.order-2{
  order: 2;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-auto{
  margin-left: auto;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-4{
  margin-right: 1rem;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-10{
  height: 2.5rem;
}
.h-12{
  height: 3rem;
}
.h-16{
  height: 4rem;
}
.h-20{
  height: 5rem;
}
.h-4{
  height: 1rem;
}
.h-48{
  height: 12rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.w-10{
  width: 2.5rem;
}
.w-12{
  width: 3rem;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.max-w-3xl{
  max-width: 48rem;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-6xl{
  max-width: 72rem;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-none{
  max-width: none;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.border-collapse{
  border-collapse: collapse;
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
.animate-spin{
  animation: spin 1s linear infinite;
}
.cursor-pointer{
  cursor: pointer;
}
.resize-none{
  resize: none;
}
.resize{
  resize: both;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-center{
  align-items: center;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-12{
  gap: 3rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.overflow-hidden{
  overflow: hidden;
}
.break-all{
  word-break: break-all;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-l-lg{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-r-lg{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.border{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-blue-400{
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-green-400{
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.border-green-600{
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.border-red-400{
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-white\/20{
  border-color: rgb(255 255 255 / 0.2);
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-blue-700{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/95{
  background-color: rgb(255 255 255 / 0.95);
}
.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-blue-100{
  --tw-gradient-from: #dbeafe var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 234 254 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600{
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600{
  --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue-800{
  --tw-gradient-to: #1e40af var(--tw-gradient-to-position);
}
.to-pink-500{
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-purple-100{
  --tw-gradient-to: #f3e8ff var(--tw-gradient-to-position);
}
.to-purple-600{
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.to-purple-700{
  --tw-gradient-to: #7e22ce var(--tw-gradient-to-position);
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-12{
  padding: 3rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pr-8{
  padding-right: 2rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-9xl{
  font-size: 8rem;
  line-height: 1;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-semibold{
  font-weight: 600;
}
.leading-relaxed{
  line-height: 1.625;
}
.text-blue-100{
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-purple-600{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-25{
  opacity: 0.25;
}
.opacity-75{
  opacity: 0.75;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-md{
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-500{
  transition-duration: 500ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.screen-reader-text{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.aligncenter{
  margin-left: auto;
  margin-right: auto;
}

.alignleft{
  float: left;
  margin-right: 1rem;
}

.alignright{
  float: right;
  margin-left: 1rem;
}

.wp-block-gallery{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px){
  .wp-block-gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .wp-block-gallery{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.comment-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.comment{
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  padding-left: 1rem;
}

.hover\:-translate-y-1:hover{
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.02\]:hover{
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white\/30:hover{
  background-color: rgb(255 255 255 / 0.3);
}

.hover\:from-blue-700:hover{
  --tw-gradient-from: #1d4ed8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(29 78 216 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:to-purple-700:hover{
  --tw-gradient-to: #7e22ce var(--tw-gradient-to-position);
}

.hover\:text-blue-600:hover{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.hover\:text-blue-800:hover{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.hover\:text-green-800:hover{
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.hover\:text-purple-800:hover{
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover{
  text-decoration-line: underline;
}

.hover\:opacity-90:hover{
  opacity: 0.9;
}

.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-transparent:focus{
  border-color: transparent;
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-blue-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}

.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}

@media (min-width: 640px){
  .sm\:flex-row{
    flex-direction: row;
  }
}

@media (min-width: 768px){
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:p-10{
    padding: 2.5rem;
  }
  .md\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px){
  .lg\:order-1{
    order: 1;
  }
  .lg\:order-2{
    order: 2;
  }
  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .lg\:col-span-3{
    grid-column: span 3 / span 3;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:gap-16{
    gap: 4rem;
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .lg\:text-left{
    text-align: left;
  }
  .lg\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }
}