* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #eef0ef;
  font-family: 'Satoshi', 'Poppins', Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}

.nav-links a.active {
  color: #8d0bff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in {
  animation: fadeUp 0.6s ease-out forwards;
}


.top-header {
  backdrop-filter: none;
  transition: backdrop-filter 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.top-header.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(241, 241, 241, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.top-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #f1f1f1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.announcement {
  background: #8d0bff;
  color: white;
  text-align: center;
  font-size: 13px;
  padding: 4px 16px;
  line-height: 1.4;
  font-weight: 400;
  animation: fadeIn 0.5s ease-out;
}

.announcement a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.announcement strong {
  font-weight: 700;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 80px;
  animation: fadeUp 0.6s ease-out 0.2s both;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8d0bff;
  transition: width 0.3s ease;
}

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

.nav-links a span {
  font-size: 12px;
  transform: translateY(1px);
}

.nav-links a:hover {
  color: #8d0bff;
  transform: translateY(-1px);
}

.nav-buttons {
  display: flex;
  align-items: center;
}

.try-free {
  background: #8d0bff;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Satoshi', sans-serif;
  box-shadow: 0 4px 6px rgba(141, 11, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.try-free::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.try-free:hover::before {
  left: 100%;
}

.try-free:hover {
  background: #6a00cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(141, 11, 255, 0.3);
}


.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 200px 20px 120px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: visible;
}

.hero-content {
  max-width: 1000px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section h1 {
  font-size: 84px;
  font-weight: 900;
  color: #8d0bff;
  margin: 0 0 30px 0;
  padding-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero-section p {
  font-size: 24px;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.7s forwards;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #1a1a1a;
}

.hero-play-store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  /* BLACK BACKGROUND */
  border: 1px solid #000;
  padding: 12px 32px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  /* TEXT WHITE */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}

.hero-play-store:hover {
  background: #111;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: #8d0bff;
}

.hero-play-store .play-store-icon svg {
  width: 28px;
  height: 28px;
}

.hero-play-store .btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.hero-play-store .btn-top {
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  /* lighter text */
}

.hero-play-store .btn-bottom {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}



/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  z-index: 10;
  border: 1px solid rgba(141, 11, 255, 0.15);
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.floating-badge:hover {
  transform: scale(1.05) translateY(-5px);
  background: #ffffff;
}

.badge-left {
  left: 5%;
  top: 50%;
  animation: float 5s ease-in-out infinite;
}

.badge-right {
  right: 5%;
  bottom: 20%;
  animation: float 6s ease-in-out infinite reverse;
}

.badge-icon {
  width: 32px;
  height: 32px;
  background: #f3ebff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d0bff;
  font-size: 18px;
}


.features-section {
  text-align: center;
  padding: 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.features-title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.3s forwards;
}

.features-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.5s forwards;
}

.features-container {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
  display: inline-flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}

.feature-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  width: 340px;
  text-align: left;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f3f3;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card:nth-child(1) {
  animation: fadeUp 0.6s ease-out 0.6s forwards;
}

.feature-card:nth-child(2) {
  animation: fadeUp 0.6s ease-out 0.8s forwards;
}

.feature-card:nth-child(3) {
  animation: fadeUp 0.6s ease-out 1s forwards;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #111;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}


.feature-banner {
  padding: 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.banner-content {
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(141, 11, 255, 0.05);
  border: 1px solid rgba(141, 11, 255, 0.08);
}

.banner-text {
  flex: none;
  width: 100%;
}

.banner-text .badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(141, 11, 255, 0.1);
  color: #8d0bff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.banner-text h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.banner-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}


.subscribe-section {
  position: relative;
  background: #eef0ef;
  padding: 80px 0px 40px;
  text-align: center;
  max-width: 2000px;
  margin: 0 auto;
  font-family: 'Satoshi', sans-serif;
  overflow: hidden;
}



.subscribe-section::after {
  display: none;
}


.subscribe-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;
  z-index: 1;
}

/* AI Showcase Section */
.ai-showcase {
  padding: 100px 80px;
  background: #fbfbfb;
  max-width: 1440px;
  margin: 0 auto;
}

.ai-showcase .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.ai-showcase .section-header h2 {
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 15px 0;
  letter-spacing: -0.03em;
}

.ai-showcase .section-header p {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

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

.showcase-item:nth-child(even) {
  flex-direction: row-reverse;
}

.showcase-visual {
  flex: 1.2;
}

.showcase-content {
  flex: 0.8;
}

.showcase-content h3 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.showcase-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-bullets li {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.feature-bullets li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(141, 11, 255, 0.1);
  color: #8d0bff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
  /* Natural centering tweak */
}

.feature-bullets li::after {
  display: none;
}


/* Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  background: #eee;
  user-select: none;
}

.img-before {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-after {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* clip-path will be updated via JS */
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: #8d0bff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(141, 11, 255, 0.4);
  border: 3px solid white;
}

.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
  margin: 0;
  -webkit-appearance: none;
  background: transparent;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 48px;
  height: 100vh;
  /* Make it huge so it covers the whole height */
  background: transparent;
  cursor: ew-resize;
}

.slider-input::-moz-range-thumb {
  width: 48px;
  height: 100vh;
  background: transparent;
  cursor: ew-resize;
  border: none;
}

/* Responsive Showcase */
@media (max-width: 1024px) {
  .ai-showcase {
    padding: 80px 40px;
  }

  .showcase-item {
    gap: 40px;
  }

  .showcase-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {

  .showcase-item,
  .showcase-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .showcase-content p {
    margin: 0 auto 25px;
  }

  .feature-bullets {
    display: inline-block;
    text-align: left;
  }

  .ai-showcase .section-header h2 {
    font-size: 36px;
  }
}

.faq-section {
  padding: 100px 80px;
  background: #ffffff;
  max-width: 1440px;
  margin: 0 auto;
}

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

.faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-section .section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 15px 0;
  letter-spacing: -0.02em;
}

.faq-section .section-header p {
  font-size: 18px;
  color: #666;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #f8f9f8;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item:hover {
  background: #ffffff;
  border-color: rgba(141, 11, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
  background: #ffffff;
  border-color: rgba(141, 11, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Satoshi', sans-serif;
}

.faq-question .arrow {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #8d0bff;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 30px;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 30px;
  opacity: 1;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.main-footer {
  background: #eef0ef;
  padding: 60px 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
  font-family: 'Satoshi', sans-serif;
}

.footer-container {
  width: 100%;
}

.footer-top {
  margin-bottom: 30px;
}


.footer-contact .promo-tagline {
  max-width: 1000px;
  margin: 0 0 25px 0;
  text-align: left;
}

.footer-contact .promo-tagline p {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin: 0;
  font-style: normal;
}

.footer-contact .promo-tagline span {
  color: #8d0bff;
}

.support-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-email svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.support-email:hover {
  color: #8d0bff;
}

.support-email:hover svg {
  transform: translate(4px, -4px);
}

.footer-brand {
  width: 100%;
  margin: 30px 0 40px;
  text-align: center;
}

.big-brand-logo {
  width: 90%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-left .copyright-text {
  text-align: left;
  margin: 0;
  opacity: 1;
  font-size: 14px;
  color: #666;
  animation: none;
}

.footer-right .footer-links-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-right .legal-links {
  display: flex;
  gap: 20px;
}

.footer-right .legal-links a {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-right .legal-links a:hover {
  color: #8d0bff;
}

.footer-divider {
  color: rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 300;
}

.footer-right .social-dots {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-right .social-icon {
  color: #1a1a1a;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-right .social-icon:hover {
  color: #8d0bff;
  transform: translateY(-3px);
}



/* Base Styles additions for responsiveness */
.hamburger-menu {
  display: none;
  cursor: pointer;
}

.subscribe-form button .btn-icon {
  display: none;
}

.tools-scroll-section {
  padding: 50px 80px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1440px;
}

.tools-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.tools-scroll-track {
  display: flex;
  width: max-content;
  animation: scrollTools 40s linear infinite;
  gap: 0;
  padding: 0;
  align-items: center;
}

.tools-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

/* Pause animation on hover */
.tools-scroll-track:hover {
  animation-play-state: paused;
}

.tools-scroll-track:hover .tools-image {
  opacity: 1;
  filter: brightness(1);
}

/* Scroll animation */
@keyframes scrollTools {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.33%);
  }
}

/* Add fade edges for better visual effect */
.tools-scroll-container::before,
.tools-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.tools-scroll-container::before {
  left: 0;
  background: linear-gradient(to right, #eef0ef, transparent);
}

.tools-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, #eef0ef, transparent);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(241, 241, 241, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
  flex-direction: column;
}

.nav-links.active {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(241, 241, 241, 0.95);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-logo img {
  height: 40px;
  object-fit: contain;
}

.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  overflow-y: auto;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.mobile-menu-item {
  position: relative;
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: #111;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Remove descriptions */
.mobile-menu-item span {
  display: none;
}

.mobile-menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #8d0bff;
  transition: width 0.3s ease;
}

.mobile-menu-item:hover::after {
  width: 100%;
}

.mobile-menu-item:hover {
  color: #8d0bff;
  transform: translateX(10px);
}

/* Remove the footer section since we're removing Try Free button and social icons */
.mobile-menu-footer {
  display: none;
}

/* Animation for menu items */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-item {
  animation: slideInUp 0.4s ease forwards;
  opacity: 0;
}

.mobile-menu-item:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu-item:nth-child(2) {
  animation-delay: 0.2s;
}

.mobile-menu-item:nth-child(3) {
  animation-delay: 0.3s;
}

/* Close button animation */
.mobile-menu-close {
  animation: fadeIn 0.3s ease 0.1s forwards;
  opacity: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 10px 40px;
  }

  .hero-section {
    padding: 80px 40px;
    gap: 40px;
  }

  .hero-section h1 {
    font-size: 52px;
  }

  .features-container {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-card {
    width: 31%;
    min-width: 250px;
  }

  .placeholder-grid {
    padding: 0 40px;
  }

  .tools-scroll-section {
    padding: 40px 40px;
  }

  .tools-image {
    height: 55px;
  }

  .tools-scroll-container::before,
  .tools-scroll-container::after {
    width: 60px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {

  /* Navigation */
  .navbar {
    padding: 10px 20px;
  }

  .hamburger-menu {
    display: block;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
    height: auto;
    min-height: auto;
  }

  .hero-content {
    order: 1;
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .hero-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .hero-section p {
    margin: 0 auto 30px;
    font-size: 16px;
    text-align: center;
    max-width: 90%;
  }

  .hero-buttons {
    justify-content: center;
    order: 2;
    margin-bottom: 40px;
  }

  /* Features Section */
  .features-section {
    padding: 60px 20px;
  }

  .features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .feature-card {
    width: 100%;
    max-width: 400px;
    /* Reset complex animations if needed, otherwise they work fine */
    transform: translateY(0);
    opacity: 1;
    /* Ensure visibility if JS intersection observer is tricky on mobile, but keeping it is fine */
  }

  /* Feature Banner */
  .feature-banner {
    padding: 40px 20px;
  }

  .banner-content {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .banner-text h2 {
    font-size: 32px;
  }

  .banner-text p {
    font-size: 16px;
  }

  /* FAQ Responsive */
  .faq-section {
    padding: 60px 20px;
  }

  .faq-section .section-header h2 {
    font-size: 32px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }

  /* Subscribe Section & Grid */
  .subscribe-section {
    padding: 60px 0;
  }

  /* Main Footer Responsive */
  .main-footer {
    padding: 40px 20px 30px;
  }

  .footer-contact .promo-tagline p {
    font-size: 28px;
  }

  .support-email {
    font-size: 16px;
  }

  .support-email svg {
    width: 24px;
    height: 24px;
  }

  .footer-brand {
    margin: 20px 0 40px;
  }

  .big-brand-logo {
    width: 100%;
    max-height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-left {
    order: 2;
    align-items: center;
  }

  .footer-right {
    order: 1;
    width: 100%;
  }

  .footer-left .copyright-text {
    text-align: center;
  }

  .footer-links-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-divider {
    display: none;
  }

  .footer-right .social-dots {
    justify-content: center;
  }


  .separator-line {
    display: none;
  }

  .tools-scroll-section {
    padding: 30px 20px;
  }

  .tools-image {
    height: 45px;
  }

  .tools-scroll-container::before,
  .tools-scroll-container::after {
    width: 40px;
  }

  @keyframes scrollTools {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  @media (max-width: 768px) {
    .desktop-only-br {
      display: none;
    }
  }

  .mobile-menu-items {
    padding: 0 30px;
    /* Matches navbar padding on mobile */
  }

  .mobile-menu-header {
    padding: 16px 20px;
    /* Matches navbar padding */
  }

}

@media (max-width: 480px) {
  .tools-scroll-section {
    padding: 25px 20px;
  }

  .tools-image {
    height: 40px;
  }
}