@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --purple: #7C3AED;
  --purple-light: #9F67FF;
  --purple-dark: #5B21B6;
  --purple-glow: rgba(124, 58, 237, 0.3);

  --bg: #0F0F13;
  --bg2: #16161D;
  --bg3: #1E1E2A;
  --card: #1A1A24;
  --card-border: rgba(124, 58, 237, 0.18);
  --text: #F0F0F5;
  --text-muted: #9090A8;
  --text-soft: #C0C0D0;
  --input-bg: #1E1E2A;
  --nav-bg: rgba(15, 15, 19, 0.85);
  --badge-available: #10B981;
  --badge-full: #EF4444;
  --badge-limited: #F59E0B;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] {
  --bg: #F5F5FA;
  --bg2: #EEEEF5;
  --bg3: #E5E5F0;
  --card: #FFFFFF;
  --card-border: rgba(124, 58, 237, 0.15);
  --text: #1A1A2E;
  --text-muted: #6060788;
  --text-soft: #50506A;
  --input-bg: #FFFFFF;
  --nav-bg: rgba(245, 245, 250, 0.9);
  --shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 10px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--card-border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple);
}

.nav-logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}

.nav-logo span em {
  color: var(--purple);
  font-style: normal;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  margin-left: 40px;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--purple-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.toggle-track {
  width: 52px;
  height: 28px;
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.theme-toggle:hover .toggle-track {
  border-color: var(--purple);
}

.toggle-thumb {
  width: 20px;
  height: 20px;
  background: var(--card);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-thumb i {
  font-size: 0.7rem;
  color: var(--text);
  transition: color 0.3s;
}

/* Light mode overrides for toggle */
[data-theme="light"] .toggle-thumb {
  transform: translateX(22px);
  background: #fff;
}

[data-theme="light"] .toggle-thumb i {
  color: #f59e0b;
  /* Sun color */
}

[data-theme="dark"] .toggle-thumb i {
  color: var(--purple-light);
  /* Moon color */
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--purple-glow);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 90%;
  line-height: 1.5;
}

.hero-badge span:first-child {
  width: 7px;
  height: 7px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
  /* Prevent dot from shrinking on long quotes */
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
  width: 100%;
}

.hero h1 .accent {
  color: var(--purple);
}

.cube-wrapper {
  display: block;
  position: relative;
  perspective: 1000px;
  width: 100%;
  height: 1.15em;
  /* Match line-height */
  overflow: visible;
}

.cube-text {
  display: inline-block;
  transform-origin: 50% 50% -0.5em;
  /* Creates the 3D axis depth */
  transform-style: preserve-3d;
  backface-visibility: hidden;
  white-space: nowrap; /* Fix overlaying text on mobile */
}

.roll-out {
  animation: rollOut 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.roll-in {
  animation: rollIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: max-content;
}

@keyframes rollOut {
  0% {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(-70%) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes rollIn {
  0% {
    transform: translateY(70%) rotateX(-90deg);
    opacity: 0;
  }

  100% {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
  }
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-actions {
  margin-bottom: 50px;
}

.btn-hero-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: #ffffff;
  padding: 18px 48px;
  border-radius: 10px;
  /* Squared shape */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  animation: pulse-zoom 1.0s ease-in-out infinite;
  transition: background 0.3s;
}

.btn-hero-contact:hover {
  background: var(--purple-light);
}

@keyframes pulse-zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/* SEARCH */
.search-wrap {
  width: 100%;
  max-width: 580px;
  position: relative;
  margin-bottom: 50px;
}

/* Search inside tools section */
.tools-search {
  max-width: 520px;
  margin: 0 auto 32px;
}

.search-wrap input {
  width: 100%;
  padding: 16px 56px 16px 24px;
  border-radius: 50px;
  border: 2px solid var(--card-border);
  background: var(--input-bg);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.search-wrap input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--purple-glow);
}

.search-wrap input::placeholder {
  color: var(--text-muted);
}

.search-wrap .search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-muted);
  pointer-events: none;
}

.hero-stats {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple-light);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--card-border);
}

/* TOOLS SECTION */
.tools-section {
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CATEGORY FILTERS */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--card-border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 7px;
}

.filter-btn:hover {
  border-color: var(--purple);
  color: var(--purple-light);
}

.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 4px 16px var(--purple-glow);
}

/* TOOL CARDS GRID */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  overflow: visible;
}

/* ── CARD ── */
.tool-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s ease, border-color 0.3s, z-index 0s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.tool-card:hover {
  transform: scale(1.20);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.18);
  z-index: 100;
}

/* Image area */
.tool-img-wrap {
  width: 100%;
  background: var(--bg3);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 5;
  overflow: hidden;
}

.tool-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.tool-card:hover .tool-img-wrap img {
  transform: scale(1.05);
}

/* Card body */
.tool-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.tool-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-light);
  background: rgba(124, 58, 237, 0.1);
  padding: 3px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.tool-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tool-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.tool-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.tool-price span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.join-btn {
  width: 100%;
  padding: 13px 0;
  border-radius: 12px;
  background: var(--purple);
  border: none;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.join-btn:hover {
  background: var(--purple-light);
  box-shadow: 0 6px 24px var(--purple-glow);
  transform: translateY(-1px);
}

/* HOW IT WORKS */
.how-section {
  padding: 80px 5%;
  background: var(--bg2);
}

.how-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step {
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  transition: all 0.3s;
  position: relative;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.4);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* TESTIMONIALS */
.testi-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.testi-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.testi-card {
  position: absolute;
  width: 500px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, filter 0.6s ease;
  cursor: pointer;
  user-select: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card internal styling */
.testi-quote-icon {
  font-size: 2.2rem;
  color: var(--purple);
  opacity: 0.15;
  margin-bottom: 16px;
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-top: 16px;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 90px;
}

.testi-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testi-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
}

.testi-info span {
  font-size: 0.8rem;
  color: var(--purple-light);
  font-weight: 600;
}

/* Coverflow States */
.testi-card.active {
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 10;
  opacity: 1;
  filter: blur(0px);
}

.testi-card.prev {
  transform: translateX(-50%) scale(0.85) translateZ(-100px) rotateY(20deg);
  z-index: 5;
  opacity: 0.6;
  filter: blur(2px);
}

.testi-card.next {
  transform: translateX(50%) scale(0.85) translateZ(-100px) rotateY(-20deg);
  z-index: 5;
  opacity: 0.6;
  filter: blur(2px);
}

.testi-card.hidden {
  transform: translateX(0) scale(0.6) translateZ(-250px);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* FAQ */
.faq-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(124, 58, 237, 0.4);
}

.faq-item.open .faq-q {
  color: var(--purple);
}

.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--card);
  transition: background 0.2s, color 0.3s;
  user-select: none;
  color: var(--text);
}

.faq-q:hover {
  background: var(--bg3);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--purple);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  background: var(--card);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  padding: 48px 5% 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom .accent {
  color: var(--purple);
}

/* NO RESULTS */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  grid-column: 1/-1;
}

.no-results .icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* POLICY MODAL */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg);
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: translateY(0);
}

.modal-content h3 {
  padding: 24px;
  border-bottom: 1px solid var(--card-border);
  margin: 0;
  font-size: 1.3rem;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  line-height: 1.7;
  color: var(--text-muted);
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--card-border);
  text-align: right;
  background: var(--bg2);
  border-radius: 0 0 16px 16px;
}

.modal-footer button {
  cursor: pointer;
}

.modal-footer button:disabled {
  background: var(--bg3);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
  border: 1px solid var(--card-border);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-content {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 20px 5%;
    margin: 0;
    gap: 20px;
    align-items: flex-start;
  }

  .nav-content.show {
    display: flex;
  }

  .nav-links {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
  }
}

@media (max-width: 640px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .testi-card {
    width: 90%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 100px 15px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
    width: 100%;
  }

  .stat-sep {
    display: none;
  }

  nav {
    padding: 0 4%;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.5s ease forwards;
}

.tool-card {
  animation: fadeUp 0.4s ease both;
}