/* CSS Variables */
:root {
  --electric-border-color: #bf3ff4;
  --electric-light-color: oklch(from var(--electric-border-color) l c h);
  --gradient-color: oklch(
    from var(--electric-border-color) 0.3 calc(c / 2) h / 0.4
  );
  --color-neutral-900: oklch(0.185 0 0);
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}

/* ===========================
   MICRO-ANIMATIONS
   =========================== */

/* Keyframe animations for fading effects */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Animation classes for scroll-triggered animations */
[data-animate] {
  opacity: 0;
}

[data-animate].animate-in {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="fade-in"].animate-in {
  animation-name: fadeIn;
}

[data-animate="fade-up"].animate-in {
  animation-name: fadeUp;
}

[data-animate="slide-left"].animate-in {
  animation-name: slideInLeft;
}

[data-animate="slide-right"].animate-in {
  animation-name: slideInRight;
}

[data-animate="scale-in"].animate-in {
  animation-name: scaleIn;
}

/* Staggered animations for grid items */
/* Cards are visible by default, animation adds enhancement */
.features-grid .feature-card,
.steps-grid .step-card,
.pricing-grid .pricing-card {
  opacity: 1;
}

/* Apply animation only when JavaScript adds the animated class */
.features-grid .feature-card.js-animate,
.steps-grid .step-card.js-animate,
.pricing-grid .pricing-card.js-animate {
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: var(--animation-delay, 0s);
}

/* Fallback for browsers without animation support or with reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1 !important;
  }

  /* Ensure cards are visible for reduced motion users */
  .features-grid .feature-card,
  .steps-grid .step-card,
  .pricing-grid .pricing-card {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* Mobile-specific animation adjustments */
@media (max-width: 768px) {
  /* Reduce animation complexity on mobile for better performance */
  .hero-content > * {
    animation-duration: 0.5s !important;
  }

  .feature-card:hover,
  .step-card:hover,
  .pricing-card:hover {
    animation: none; /* Disable float animation on mobile */
    transform: translateY(-4px);
  }

  .carousel-nav:hover {
    transform: translateY(-50%) scale(1.05); /* Reduce scale on mobile */
  }
}

/* Hover animations with fading */
.feature-card,
.step-card,
.pricing-card,
.benefit-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover,
.step-card:hover,
.pricing-card:hover {
  animation: float 2s ease-in-out infinite;
}

/* Enhanced button hover effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

/* Badge pulse animation */
.badge {
  animation: pulse 2s ease-in-out infinite;
}

/* Popular badge shimmer */
.popular-badge {
  position: relative;
  overflow: hidden;
}

.popular-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 3s infinite;
}

/* Nav links fade on hover */
.nav-links a {
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #a228ff 0%, #e5533b 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero content slide-in */
.hero-content {
  animation: fadeUp 1s ease-out;
}

/* Progressive enhancement: Only animate children when JavaScript is enabled */
body.js-enabled .hero-content > * {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

body.js-enabled .hero-content .badge {
  animation-delay: 0.1s;
}

body.js-enabled .hero-content h1 {
  animation-delay: 0.2s;
}

body.js-enabled .hero-content p {
  animation-delay: 0.3s;
}

body.js-enabled .hero-buttons {
  animation-delay: 0.4s;
}

body.js-enabled .hero-features {
  animation-delay: 0.5s;
}

/* Section header animations */
.section-header {
  animation: fadeUp 0.8s ease-out;
}

/* Table row slide-in on hover */
.dashboard-table tbody tr {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.comparison-table tbody tr {
  transition: all 0.3s ease;
  position: relative;
}

.comparison-table tbody tr:hover::before {
  transform: scaleY(1);
}

/* FAQ items slide animation */
.faq-item {
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.faq-item::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #a228ff;
  font-weight: bold;
}

.faq-item:hover {
  padding-left: 20px;
}

.faq-item:hover::before {
  opacity: 1;
  left: 0;
}

/* Footer social links animation */
.social-link {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover {
  transform: translateY(-4px) rotate(5deg);
}

/* App screenshot animation */
.app-screenshot {
  transition: all 0.4s ease;
}

/* Electric border animation enhancement */
.main-card {
  animation: pulse 3s ease-in-out infinite;
}

/* CTA section animation */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

/* ===========================
   END MICRO-ANIMATIONS
   =========================== */

/* Lottie Animation Container */
.lottie-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
  display: none; /* Hidden by default, shown only if animation loads successfully */
}

@media (max-width: 768px) {
  .lottie-container {
    width: 200px;
    height: 200px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #fdfdfd;
  background: #090021;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
nav {
  border: 1px solid #dad8e536;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(218, 216, 229, 0.21);
  position: sticky;
  top: 20px;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 40px;
  backdrop-filter: blur(16px) saturate(180%);
  margin: 0 auto;
  width: 1100px;
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: #0900219e;
  padding: 0 15px;
  border-top: 1px solid #dad8e554;
}

.nav-links .btn-primary {
  color: white !important;
}

.nav-toggle {
  display: none;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

/* Mobilná navigácia */
@media (max-width: 768px) {
  nav {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0 1rem;
    background-color: #090021;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #dad8e554;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.3s ease;
  }

  .nav-toggle span {
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-toggle span::before {
    top: -8px;
  }

  .nav-toggle span::after {
    top: 8px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #090021;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1rem;
    border-bottom: 1px solid #dad8e554;
    z-index: 999;
    backdrop-filter: blur(16px);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 1.125rem;
    padding: 0.75rem 0;
  }

  .nav-links .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  /* Mobile dropdown styles */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-toggle::after {
    margin-left: auto;
  }

  .nav-dropdown-menu a {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
  }

  .nav-dropdown-menu a:hover {
    padding-left: 1rem;
  }
}

/* Desktop navigation styles */
.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fdfdfd;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: #b635c4;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* Mobile navigation styles - moved inside media query */

@media (max-width: 768px) {
  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;

  a {
    color: inherit;
    text-decoration: none;
  }
}

.logo-icon {
  width: 36px;
  height: 36px;

  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-right: 0.625rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
  font-weight: normal;
}

.nav-links a:hover {
  color: #c15df0;
  text-decoration: none;
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-toggle::after {
  content: "▼";
  font-size: 0.625rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.active .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 0, 33, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(218, 216, 229, 0.2);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #fdfdfd;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9375rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(182, 53, 196, 0.15);
  color: #c15df0;
  padding-left: 1.5rem;
}

.nav-dropdown-menu a::after {
  display: none;
}

.btn {
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #a228ff 0%, #e5533b 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgb(114 63 244 / 30%), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6e12d7 0%, #6c29f0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(157, 63, 244, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: white;
  color: #1a1a1a;
  border: 1px solid #e5e5d8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  background: #fafaf8;
  border-color: #d0d0c0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.btn-large {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Hero Section - With Electric Border Effect */
.hero {
  text-align: center;
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0 6rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 9rem 0 2rem;
    margin: 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    margin: 1.5rem 0;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.75rem !important;
    font-size: 0.875rem;
  }

  .hero-features span {
    display: block;
  }
}

.hero-screen {
  text-align: center;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-screen {
    padding: 2rem 0 3rem;
    margin: 0;
    min-height: auto;
  }

  .main-container {
    padding: 0 1rem;
  }
}
.inner-container {
  background-size: cover;
  background-attachment: fixed;
}

.inner-container:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 19px;
  top: 429px;
  bottom: -15px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #4c227d 100%);
  opacity: 0.5;
  border-radius: 12px;
  z-index: 9999;
}

.hero .container,
.hero-screen .container {
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.hero-content {
  margin-bottom: 3rem;
}

/* SVG positioning */
.svg-container {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 768px) {
  .svg-container {
    position: relative;
  }
}

/* Card container with electric border */
.card-container {
  padding: 1px;
  border-radius: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: linear-gradient(
      190deg,
      var(--gradient-color),
      #6c29f000,
      var(--gradient-color)
    ),
    linear-gradient(to bottom, #6c29f00a, #09002121);
}

/* Inner container */
.inner-container {
  position: relative;
}

/* Border layers */
.border-outer {
  /*border: 2px solid rgba(244, 208, 63, 0.5);*/
  border-radius: 24px;
  padding-right: 4px;
  padding-bottom: 4px;
}

.main-card {
  max-width: 1020px;
  width: 1020px;
  max-height: 650px;
  height: 650px;
  border-radius: 22px;
  border: 3px solid var(--electric-border-color);
  margin-top: -4px;
  opacity: 0.8;
  margin-left: 0px;
  filter: url(#turbulent-displace);
}

@media (max-width: 768px) {
  .card-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 95%;
    padding: 0;
  }

  .main-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }

  .content-container {
    padding: 1rem;
    overflow: hidden;
  }

  .content-container h1 {
    font-size: 1.25rem;
  }

  .content-container .description {
    font-size: 0.875rem;
  }

  .app-screenshot {
    max-width: 100% !important;
    height: auto;
    border-radius: 8px;
  }

  .content-top {
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 4rem 0;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    margin-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
  }

  .btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-table {
    font-size: 0.75rem;
  }

  .dashboard-table th,
  .dashboard-table td {
    padding: 0.5rem 0.5rem;
  }
}

/* Glow effects */
.glow-layer-1 {
  border: 2px solid rgba(244, 208, 63, 0.6);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(1px);
}

.glow-layer-2 {
  border: 2px solid var(--electric-light-color);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(4px);
}

/* Overlay effects */
.overlay-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 1;
  mix-blend-mode: overlay;
  transform: scale(1.1);
  filter: blur(16px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
}

.overlay-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  transform: scale(1.1);
  filter: blur(16px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
}

/* Background glow */
.background-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  filter: blur(32px);
  transform: scale(1.1);
  opacity: 0.1;
  z-index: -1;
  background: linear-gradient(
    -30deg,
    var(--electric-light-color),
    transparent,
    var(--electric-border-color)
  );
}

/* Content container */
.content-container {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 9px;
}

/* Content sections */
.content-top {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-bottom {
  display: flex;
  flex-direction: column;
}

/* Scrollbar glass component */
.scrollbar-glass {
  background: radial-gradient(
      47.2% 50% at 50.39% 88.37%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.04);
  position: relative;
  transition: background 0.3s ease;
  border-radius: 14px;
  width: fit-content;
  height: fit-content;
  padding: 8px 16px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.scrollbar-glass:hover {
  background: radial-gradient(
      47.2% 50% at 50.39% 88.37%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.08);
}

.scrollbar-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.48) 16.73%,
    rgba(255, 255, 255, 0.08) 30.2%,
    rgba(255, 255, 255, 0.08) 68.2%,
    rgba(255, 255, 255, 0.6) 81.89%
  );
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* Divider */
.electric-divider {
  margin-top: auto;
  margin-bottom: 1rem;
  border: none;
  height: 1px;
  background-color: currentColor;
  opacity: 0.1;
  mask-image: linear-gradient(to right, transparent, white, transparent);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    white,
    transparent
  );
}

/* Update hero typography for card content */
.content-container h1 {
  color: oklch(0.985 0 0);
  font-size: 2.5rem;
  margin-top: auto;
  margin-bottom: 0;
}

.content-container .description {
  opacity: 0.5;
  color: oklch(0.985 0 0);
  font-size: 1rem;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  font-size: 10px;
  padding-bottom: 3px;
  padding-right: 8px;
  padding-left: 8px;
  /* background: linear-gradient(135deg, #853ff4 0%, #2938f0 100%); */
  color: #fff;
  border-color: #2936f0;
  border: 2px solid;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgb(76 63 244 / 25%);
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: #fff;
  font-family: Helvetica serif;
}

.hero p {
  font-size: 1.125rem;
  color: #bbbbbb;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  color: #bbbbbb;
  font-weight: 500;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-features span::before {
  content: "✓ ";
  color: #4caf50;
  font-weight: 600;
}

/* App Screenshot Mock - Enhanced Dashboard Table */
.app-screenshot {
  max-width: 990px;
  height: 100%;
  margin: 0 auto;
  border: 2px solid #9940ff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
  background: white;
}

.app-screenshot-header {
  background: linear-gradient(to bottom, #ffffff, #fafaf8);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e8e6dc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-screenshot-dots {
  display: flex;
  gap: 0.5rem;
}

.app-screenshot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e5d8;
}

.app-screenshot-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-screenshot-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.app-action-btn {
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  background: #f5f3e8;
  border: 1px solid #e5e5d8;
  border-radius: 6px;
  cursor: pointer;
}

.app-screenshot-content {
  padding: 0;
  background: #fafaf8;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-table thead {
  background: linear-gradient(to bottom, #ffffff, #fafaf8);
  border-bottom: 1px solid #e8e6dc;
}

.dashboard-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #1a1a1a;
  border-bottom: 1px solid #f0efe6;
}

.dashboard-table tbody tr {
  background: white;
  transition: all 0.15s;
}

.dashboard-table tbody tr:hover {
  background: #fafaf8;
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.table-title {
  font-weight: 600;
  color: #1a1a1a;
  max-width: 220px;
}

.table-metric {
  font-weight: 500;
  color: #4a4a4a;
  font-variant-numeric: tabular-nums;
}

.table-score {
  font-weight: 600;
  color: #1a1a1a;
  font-variant-numeric: tabular-nums;
}

.table-score.high {
  color: #2e7d32;
}

.table-score.medium {
  color: #f57c00;
}

.table-score.low {
  color: #c62828;
}

/* Section Styles */
section {
  padding: 10rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(244, 208, 63, 0.25);
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

p {
  color: #bbbbbb;
}

.section-header p {
  font-size: 1.0625rem;
  color: #bbbbbb;
  line-height: 1.6;
}

.text-dark {
  color: var(--color-neutral-900) !important;
}
.text-darkest {
  color: oklch(0.15 0 0) !important;
}
.text-blue {
  color: #3933f0 !important;
}
.text-white {
  color: #fff !important;
}
.text-pink {
  color: #dc4d57 !important;
}
/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Features Carousel */
.features-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.features-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feature-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
  padding: 3rem;
  min-height: 400px;
}

.feature-slide.active {
  position: relative;
  visibility: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out, visibility 0s 0s;
  animation: fadeIn 0.5s ease-in-out;
}

.feature-content {
  padding-right: 2rem;
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(195deg, #8c29f0 0%, #090021 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(108, 41, 240, 0.3);
  color: white;
}

.feature-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.feature-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a4a4a;
}

.feature-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
}

.feature-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 2px solid #9940ff;
  transition: transform 0.3s ease;
}

.feature-screenshot:hover {
  transform: scale(1.02);
}

/* Carousel Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(108, 41, 240, 0.3);
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: linear-gradient(135deg, #8c29f0 0%, #4956f0 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(108, 41, 240, 0.5);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

@media (min-width: 1280px) {
  /* On larger screens, position buttons outside */
  .carousel-nav.prev {
    left: -24px;
  }

  .carousel-nav.next {
    right: -24px;
  }
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #6c29f0;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicators .indicator:hover {
  background: rgba(108, 41, 240, 0.3);
  transform: scale(1.2);
}

.carousel-indicators .indicator.active {
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  width: 30px;
  border-radius: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .feature-slide.active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .feature-content {
    padding-right: 0;
    text-align: center;
  }

  .feature-icon-large {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin: 0 auto 1rem;
  }

  .feature-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }

  .feature-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-nav.prev {
    left: 5px;
  }

  .carousel-nav.next {
    right: 5px;
  }

  .feature-slide {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .feature-preview {
    order: -1; /* Show image first on mobile */
  }

  .feature-screenshot {
    border-width: 1px;
  }

  .carousel-indicators {
    flex-wrap: wrap;
    gap: 0.375rem;
    padding: 0 1rem;
  }

  .carousel-indicators .indicator {
    width: 8px;
    height: 8px;
  }

  .carousel-indicators .indicator.active {
    width: 24px;
  }
}

.feature-card {
  background: white;
  border: 1px solid #e5e5d8;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: #6c29f0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(195deg, #8c29f0 0%, #090021 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.25);
  color: white;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.625rem;
}

.feature-card p {
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: white;
  border: 1px solid #e5e5d8;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  font-weight: 700;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(244, 208, 63, 0.25);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 1px solid #e5e5d8;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  border: 2px solid #6c29f0;
  box-shadow: 0 8px 24px rgba(193, 63, 244, 0.3);
}

.pricing-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(193, 63, 244, 0.4), 0 6px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .pricing-header {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: white;
  padding: 0.3rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5d8;
}

.tier-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.price span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #666;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #1a1a1a;
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: "✓ ";
  margin-right: 0.5rem;
  color: #4caf50;
  font-weight: 700;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  color: #1a1a1a;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(244, 208, 63, 0.2);
}

.cta h2 {
  color: #1a1a1a;
}

.cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.btn-white {
  background: white;
  color: #1a1a1a;
}

.btn-white:hover {
  background: #f9f9f9;
  transform: translateY(-1px);
}

.btn-outline-white {
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  background: transparent;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
  background: white;
  border-top: 1px solid #e5e5d8;
  color: #1a1a1a;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

footer h4 {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.625rem;
}

footer a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9375rem;
}

footer a:hover {
  color: #1a1a1a;
}

.footer-bottom {
  border-top: 1px solid #e5e5d8;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #666;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(244, 208, 63, 0.25);
}

.social-link:hover {
  background: linear-gradient(135deg, #2936f0 0%, #e8c22e 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .features-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 10rem 0;
  }

  .dashboard-table {
    font-size: 0.75rem;
  }

  .dashboard-table th,
  .dashboard-table td {
    padding: 0.75rem 1rem;
  }

  .app-screenshot-actions {
    display: none;
  }

  /* Electric border adjustments for mobile */
  .main-card {
    width: 320px;
    height: 500px;
  }

  .content-container {
    padding: 32px;
  }

  .content-container h1 {
    font-size: 1.75rem;
  }

  .content-container .description {
    font-size: 0.875rem;
  }
}

/* Comparison Section */
.comparison {
  padding: 10rem 0;
  text-align: center;
  background: #090021;
}

.comparison h2 {
  color: #fff;
}

/* make .comparison-table responsive and scrollable on small screens */
@media (max-width: 768px) {
  .comparison-table {
    overflow-x: auto;
    display: block;
    width: 100%;
  }
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
}

.comparison-table th {
  padding: 1.5rem 4rem;
  color: white;
  font-weight: 600;
  text-align: left;
  font-size: 1rem;
}

.comparison-table td {
  padding: 1.5rem 4rem;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9375rem;
  color: #1a1a1a;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: #fafaf8;
}

/* FAQ Section */
.faq {
  padding: 10rem 0;
  background: white;
  text-align: center;
}

.faq h2 {
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: left;
  padding: 1.75rem;
  background: #fafaf8;
  border-radius: 12px;
  border: 1px solid #e5e5d8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.faq-item p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* Tool-specific styles */
.tool-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tool-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.tool-input-section {
  margin-bottom: 1.5rem;
}

.tool-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  transition: border-color 0.3s ease;
}

.tool-input:focus {
  outline: none;
  border-color: #b635c4;
}

.tool-textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.tool-textarea:focus {
  outline: none;
  border-color: #b635c4;
}

.tool-select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: white;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.tool-select:focus {
  outline: none;
  border-color: #b635c4;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.generate-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.generate-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(118, 75, 162, 0.3);
}

.generate-button:active {
  transform: translateY(0);
}

.output-section {
  margin-top: 2rem;
}

.prompt-output {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  position: relative;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.copy-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: #b635c4;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.copy-button:hover {
  background: #9528a3;
}

.copy-button.copied {
  background: #28a745;
}

.template-section {
  margin-top: 2rem;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.template-card {
  padding: 1rem;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.template-card:hover {
  border-color: #b635c4;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(182, 53, 196, 0.2);
}

.template-card.active {
  border-color: #b635c4;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
}

.template-name {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.template-description {
  font-size: 0.875rem;
  color: #666;
}

.tool-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tool-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.tool-header p {
  font-size: 1.125rem;
  color: #666;
}

@media (max-width: 768px) {
  .tool-card {
    padding: 1.5rem;
  }

  .tool-header h1 {
    font-size: 2rem;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  .copy-button {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
    width: 100%;
  }
}

/* Tool-specific styles */
.tool-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tool-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.tool-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tool-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.tool-header p {
  font-size: 1.125rem;
  color: #666;
}

.search-section {
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #b635c4;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.category-tab {
  padding: 0.5rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #666;
}

.category-tab:hover {
  border-color: #b635c4;
  color: #b635c4;
}

.category-tab.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.emoji-item {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.emoji-item:hover {
  transform: scale(1.1);
  border-color: #b635c4;
  box-shadow: 0 4px 12px rgba(182, 53, 196, 0.2);
}

.emoji-item.copied {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  animation: copyPulse 0.5s ease;
}

@keyframes copyPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.emoji-char {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.emoji-name {
  font-size: 0.625rem;
  color: #999;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.emoji-item.copied .emoji-name {
  color: white;
}

.copy-feedback {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(150%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.copy-feedback.show {
  transform: translateY(0);
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #999;
  font-size: 1.125rem;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-box {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #b635c4;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .tool-card {
    padding: 1.5rem;
  }

  .tool-header h1 {
    font-size: 2rem;
  }

  .emoji-grid {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  }

  .emoji-char {
    font-size: 1.5rem;
  }

  .category-tabs {
    gap: 0.5rem;
  }

  .category-tab {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
}
/* Tool-specific styles */
.tool-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tool-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.tool-input-section {
  margin-bottom: 2rem;
}

.tool-textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.tool-textarea:focus {
  outline: none;
  border-color: #b635c4;
}

.tool-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-box {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #b635c4;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}

.score-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  color: white;
  text-align: center;
}

.score-value {
  font-size: 4rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.score-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

.recommendations {
  margin-top: 2rem;
}

.recommendation-item {
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.recommendation-item.success {
  background: #d4edda;
  border-left: 4px solid #28a745;
}

.recommendation-item.warning {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
}

.recommendation-item.error {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
}

.recommendation-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.recommendation-text {
  flex: 1;
  color: #333;
}

.preview-section {
  margin-top: 2rem;
}

.preview-device {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.preview-label {
  font-size: 0.875rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-content {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.preview-desktop {
  font-size: 1rem;
}

.preview-mobile {
  font-size: 0.875rem;
}

.truncated {
  color: #999;
}

.tool-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tool-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.tool-header p {
  font-size: 1.125rem;
  color: #666;
}

@media (max-width: 768px) {
  .tool-card {
    padding: 1.5rem;
  }

  .tool-header h1 {
    font-size: 2rem;
  }

  .score-value {
    font-size: 3rem;
  }
}

/* ===========================
   APP FEATURES SECTION
   =========================== */

.app-features-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8f8ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.app-features-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(162, 40, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(229, 83, 59, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-5%, -5%) rotate(5deg);
  }
}

.app-features-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.app-feature-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  border-radius: 16px;
  padding: 2.5rem;
  /*border: 1px solid rgba(162, 40, 255, 0.08);*/
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /*background: #110d3a;*/
}

/* Alternating layout: even rows have reversed order (image on left) */
.app-feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

.app-feature-content {
  flex: 1;
  min-width: 0;
}

.app-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.app-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(162, 40, 255, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(162, 40, 255, 0.2);
}

.app-feature-card:hover::before {
  transform: scaleX(1);
}

.app-feature-card:hover::after {
  opacity: 1;
}

.app-feature-card:hover .app-feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #ae46fd40 0%, #e63b4b38 100%);
}

.app-feature-card:hover .app-feature-icon svg {
  transform: scale(1.05);
}

.app-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0e6ff 0%, #ffe6e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.app-feature-icon svg {
  color: #a228ff;
  transition: all 0.3s ease;
}

.app-feature-card h3 {
  font-size: 3rem;
  padding: 15px 0;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.app-feature-card:hover h3 {
  color: #a228ff;
}

.app-feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.app-feature-screenshot {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 16 / 9;
  position: relative;
}

.app-feature-screenshot img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  border: 2px solid rgba(162, 40, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  object-fit: fill;
  object-position: center top;
}

.app-feature-card:hover .app-feature-screenshot {
  box-shadow: 0 8px 24px rgba(162, 40, 255, 0.15);
}

.app-feature-card:hover .app-feature-screenshot img {
  transform: scale(1.03);
  border-color: rgba(162, 40, 255, 0.3);
}

.app-feature-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(162, 40, 255, 0.08) 0%,
    rgba(229, 83, 59, 0.08) 100%
  );
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a228ff;
  transition: all 0.3s ease;
}

.app-feature-card:hover .feature-tag {
  background: linear-gradient(135deg, #a228ff 0%, #e5533b 100%);
  color: white;
  transform: translateY(-2px);
}

/* Staggered entrance animations for app feature cards */
.app-feature-card {
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: calc(var(--animation-order, 0) * 0.1s);
}

.app-features-section.animate-in .app-feature-card {
  opacity: 1;
}

.app-feature-card[data-feature="1"] {
  --animation-order: 1;
}
.app-feature-card[data-feature="2"] {
  --animation-order: 2;
}
.app-feature-card[data-feature="3"] {
  --animation-order: 3;
}
.app-feature-card[data-feature="4"] {
  --animation-order: 4;
}
.app-feature-card[data-feature="5"] {
  --animation-order: 5;
}
.app-feature-card[data-feature="6"] {
  --animation-order: 6;
}
.app-feature-card[data-feature="7"] {
  --animation-order: 7;
}
.app-feature-card[data-feature="8"] {
  --animation-order: 8;
}
.app-feature-card[data-feature="9"] {
  --animation-order: 9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-features-section {
    padding: 4rem 0;
  }

  .app-features-grid {
    gap: 2rem;
  }

  .app-feature-card {
    flex-direction: column !important;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .app-feature-card:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .app-feature-icon {
    width: 56px;
    height: 56px;
  }

  .app-feature-card h3 {
    font-size: 1.125rem;
  }

  .app-feature-card p {
    font-size: 0.875rem;
  }

  .app-feature-screenshot img {
    border-width: 1px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .app-features-section::before {
    animation: none !important;
  }

  .app-feature-card {
    opacity: 1 !important;
    animation: none !important;
  }

  .app-feature-card:hover {
    transform: translateY(-4px) !important;
  }

  .app-feature-card:hover .app-feature-icon {
    transform: scale(1.05) !important;
  }
}

.contact-section {
  padding: 80px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  color: white;
}

.contact-info h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-info p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.captcha-wrapper {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1rem;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.privacy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-content p,
.privacy-content ul,
.privacy-content ol {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-content ul,
.privacy-content ol {
  padding-left: 2rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: white;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.7;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  font-weight: 600;
}

.company-info {
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.company-info p {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Chrome compatibility fix for app-features-grid images */
.app-feature-screenshot img {
  min-height: 0;
  min-width: 0;
}

/* ===========================
   PERFECT FOR SECTION
   =========================== */

#perfect-for {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

#perfect-for::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(162, 40, 255, 0.02) 0%,
    rgba(229, 83, 59, 0.02) 100%
  );
  pointer-events: none;
}

.perfect-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* ===========================
   TESTIMONIALS & STATS SECTION
   =========================== */

#testimonials {
  padding: 6rem 0;
  background: linear-gradient(180deg, #090021 0%, #0d0033 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(162, 40, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(229, 83, 59, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0 5rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(162, 40, 255, 0.1) 0%,
    rgba(229, 83, 59, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(162, 40, 255, 0.3);
  box-shadow: 0 12px 32px rgba(162, 40, 255, 0.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1;
  background: linear-gradient(135deg, #a228ff 0%, #e5533b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  margin-top: 4rem;
}

.testimonials-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(162, 40, 255, 0.08) 0%,
    rgba(229, 83, 59, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(162, 40, 255, 0.3);
  box-shadow: 0 12px 32px rgba(162, 40, 255, 0.15);
}

.testimonial-header {
  margin-bottom: 1.5rem;
}

.testimonial-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #a228ff 0%, #e5533b 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(162, 40, 255, 0.3);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.perfect-for-card {
  background: white;
  border: 2px solid #e8e6dc;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Animated gradient highlight on hover */
.perfect-for-highlight {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(162, 40, 255, 0.08),
    transparent
  );
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.perfect-for-card:hover .perfect-for-highlight {
  left: 100%;
}

/* Card border gradient animation on hover */
.perfect-for-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #a228ff 0%, #e5533b 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.perfect-for-card:hover::before {
  opacity: 1;
}

/* Icon styling */
.perfect-for-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0e6ff 0%, #ffe6e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.perfect-for-icon svg {
  color: #a228ff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Icon hover effects with bounce */
.perfect-for-card:hover .perfect-for-icon {
  background: linear-gradient(135deg, #a228ff 0%, #e5533b 100%);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(162, 40, 255, 0.3);
}

.perfect-for-card:hover .perfect-for-icon svg {
  color: white;
  transform: scale(1.15);
}

/* Typography */
.perfect-for-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.perfect-for-card:hover h3 {
  transform: translateX(4px);
}

.perfect-for-card p {
  font-size: 1rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.perfect-for-card:hover p {
  transform: translateX(4px);
}

/* Floating animation on hover */
.perfect-for-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 48px rgba(162, 40, 255, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Staggered entrance animations */
.perfect-for-card {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: calc(var(--persona-order, 0) * 0.12s);
}

.perfect-for-card[data-persona="1"] {
  --persona-order: 0;
}
.perfect-for-card[data-persona="2"] {
  --persona-order: 1;
}
.perfect-for-card[data-persona="3"] {
  --persona-order: 2;
}
.perfect-for-card[data-persona="4"] {
  --persona-order: 3;
}
.perfect-for-card[data-persona="5"] {
  --persona-order: 4;
}
.perfect-for-card[data-persona="6"] {
  --persona-order: 5;
}

/* Pulse animation for icons */
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.perfect-for-icon {
  animation: iconPulse 3s ease-in-out infinite;
}

.perfect-for-card:hover .perfect-for-icon {
  animation: none;
}

/* Background glow effect */
.perfect-for-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(162, 40, 255, 0.15) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.perfect-for-card:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #perfect-for {
    padding: 4rem 0;
  }

  .perfect-for-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .perfect-for-card {
    padding: 2rem 1.5rem;
  }

  .perfect-for-card:hover {
    transform: translateY(-6px) scale(1.01);
  }

  .perfect-for-icon {
    width: 64px;
    height: 64px;
  }

  .perfect-for-card h3 {
    font-size: 1.25rem;
  }

  .perfect-for-card p {
    font-size: 0.9375rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  #testimonials::before {
    animation: none !important;
  }

  .stat-card {
    opacity: 1 !important;
    animation: none !important;
  }

  .stat-card:hover {
    transform: translateY(-4px) !important;
  }

  .testimonial-card {
    opacity: 1 !important;
    animation: none !important;
  }

  .testimonial-card:hover {
    transform: translateY(-3px) !important;
  }

  .perfect-for-card {
    opacity: 1 !important;
    animation: none !important;
  }

  .perfect-for-card:hover {
    transform: translateY(-4px) !important;
  }

  .perfect-for-card:hover .perfect-for-icon {
    transform: scale(1.05) !important;
    animation: none !important;
  }

  .perfect-for-icon {
    animation: none !important;
  }

  .perfect-for-highlight {
    display: none !important;
  }
}

.step-card ul li {
  list-style: none;
  margin-left: 15px;
}

.benefit-item {
  text-align: left;
}

.waitlist-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 4rem 1rem;
  overflow: hidden;
}

.waitlist-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(162, 40, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(229, 83, 59, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-5%, -5%) rotate(5deg);
  }
}

.waitlist-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #6c29f0 0%, #2936f0 100%);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(108, 41, 240, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

.waitlist-emoji {
  font-size: 1.25rem;
}

.waitlist-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
}

.waitlist-hero h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #bbbbbb;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.waitlist-hero p {
  font-size: 1.125rem;
  color: #bbbbbb;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.waitlist-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.waitlist-input:focus {
  outline: none;
  border-color: #a228ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(162, 40, 255, 0.1);
}

.waitlist-button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #a228ff 0%, #e5533b 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(162, 40, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.waitlist-button:hover {
  background: linear-gradient(135deg, #6e12d7 0%, #6c29f0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(157, 63, 244, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.waitlist-button:active {
  transform: translateY(0);
}

.waitlist-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.waitlist-features span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.waitlist-features span::before {
  content: "✓";
  color: #8effcc;
  font-weight: 600;
  font-size: 1.125rem;
}

.success-message {
  display: none;
  padding: 1.5rem;
  background: rgba(142, 255, 204, 0.1);
  border: 2px solid #8effcc;
  border-radius: 12px;
  color: #8effcc;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .waitlist-hero {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .waitlist-hero h1 {
    font-size: 2.5rem;
  }

  .waitlist-hero h2 {
    font-size: 1.25rem;
  }

  .waitlist-hero p {
    font-size: 1rem;
  }

  .waitlist-button {
    font-size: 1rem;
  }
}
