/* ============================================
   TOORI SERVICIOSYA - Enhanced Professional CSS
   Mantiene identidad visual + mejoras estéticas
   ============================================ */

/* --- Smooth Scroll & Base Enhancements --- */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.7s; }

/* --- Enhanced Navbar --- */
.navbar {
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar--sticky {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--toori-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.nav-link:hover {
  color: var(--toori-blue);
}

/* --- Enhanced Hero --- */
.hero {
  min-height: 100vh;
  position: relative;
}

.hero h1 {
  font-family: var(--font-title);
  letter-spacing: -0.02em;
}

.hero-cta-bar {
  background: white;
  padding: 10px;
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  width: 100%;
  max-width: 600px;
  gap: 8px;
}

.hero-cta-bar .btn {
  flex: 1;
  margin: 0;
  padding: 16px 28px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-bar .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 168, 224, 0.3);
}

/* --- Stats Counter Bar --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--toori-blue);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Enhanced Category Cards --- */
.category-card {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 168, 224, 0.15);
}

.category-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.category-card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.category-card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, white);
}

.category-card-body {
  padding: 20px;
  text-align: center;
}

.category-card-body i {
  font-size: 1.8rem;
  color: var(--toori-blue);
  margin-bottom: 8px;
  display: block;
}

.category-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.category-card-body .btn {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 50px;
}

/* --- How It Works Enhanced --- */
.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--toori-blue);
  color: white;
  font-family: var(--font-title);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(59, 168, 224, 0.3);
}

.step-card img {
  max-width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.08));
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.step-card:hover img {
  transform: translateY(-8px);
}

.step-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  font-family: var(--font-body);
}

/* --- Enhanced CTA Section --- */
.cta-register {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease;
}

.cta-register:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.cta-register-content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-register-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.cta-register:hover .cta-register-img {
  transform: scale(1.02);
}

/* --- Enhanced Footer --- */
.footer-enhanced {
  background: linear-gradient(180deg, var(--toori-dark) 0%, #3a3d58 100%);
  color: white;
  padding: 80px 0 24px;
  position: relative;
}

.footer-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--toori-blue), var(--toori-green), var(--toori-purple));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
  color: var(--toori-green);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--toori-blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(59, 168, 224, 0.4);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

/* --- Sponsors Enhanced --- */
#sponsors {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  padding: 80px 0;
}

/* --- Buttons Polish --- */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: scale(0.97);
}

/* --- Floating WhatsApp Enhanced --- */
.floating-wa {
  animation: pulse-wa 2s ease-in-out infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* --- Card Premium Enhancement --- */
.card-premium {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(59, 168, 224, 0.12);
}

/* --- Section Titles --- */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* --- Testimonial / Trust Badges --- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-badge i {
  font-size: 1.4rem;
  color: var(--toori-green);
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats-bar {
    gap: 32px;
  }

  .hero h1 {
    font-size: 3rem !important;
  }

  .hero p {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 768px) {
  /* Hero Mobile */
  .hero {
    min-height: 85vh;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.15;
  }

  .hero p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-cta-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 12px;
    gap: 8px;
  }

  .hero-cta-bar .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-radius: 14px;
  }

  /* Section spacing */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  /* Categories mobile */
  .categories-grid-enhanced {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .category-card-img {
    height: 120px;
  }

  .category-card-body {
    padding: 14px;
  }

  .category-card-body h4 {
    font-size: 0.9rem;
  }

  /* Stats */
  .stats-bar {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  /* CTA Register */
  .cta-register {
    border-radius: 16px;
  }

  .cta-register-content {
    padding: 32px 24px;
    text-align: center;
  }

  .cta-register-content h3 {
    font-size: 1.5rem !important;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

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

  .footer-col {
    text-align: center;
  }

  /* Steps mobile */
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Mobile menu improvements */
  .nav-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }

  /* Fixed CTA bottom */
  .fixed-mobile-cta {
    padding: 12px 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95) !important;
  }

  .fixed-mobile-cta .btn {
    border-radius: 14px;
    padding: 14px !important;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem !important;
  }

  .categories-grid-enhanced {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .category-card-img {
    height: 100px;
  }

  .category-card-body {
    padding: 12px;
  }

  .category-card-body i {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }

  .category-card-body h4 {
    font-size: 0.82rem;
    margin-bottom: 8px;
  }

  .category-card-body .btn {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}

/* --- Loading Skeleton --- */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* --- Smooth page load --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ============================================
   V2 ENHANCEMENTS - Testimonios, Parallax,
   App Mockup, FAQ, Micro-interacciones
   ============================================ */

/* --- Parallax Hero --- */
.hero-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center bottom;
}

@media (max-width: 768px) {
  .hero-parallax {
    background-attachment: scroll;
  }
}

/* --- Navbar Scroll Shrink --- */
.navbar--scrolled {
  height: 65px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1) !important;
  background: rgba(255, 255, 255, 0.98) !important;
}

.navbar--scrolled .logo img {
  height: 40px !important;
  transition: height 0.3s ease;
}

.navbar--scrolled .logo span {
  font-size: 1.1rem;
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,168,224,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(174,205,90,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: rgba(59, 168, 224, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(59, 168, 224, 0.1);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59, 168, 224, 0.2);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- App Mockup Section --- */
.app-section {
  background: linear-gradient(135deg, var(--toori-dark) 0%, #2d3054 50%, #1a1a2e 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.app-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(59,168,224,0.1) 0%, transparent 60%);
}

.app-mockup {
  width: 280px;
  height: 560px;
  background: #111;
  border-radius: 40px;
  border: 4px solid #333;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
  margin: 0 auto;
}

.app-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}

.app-mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--toori-blue) 0%, #178abf 30%, #f8fafc 30%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 20px;
}

/* Screenshot real de la app (reemplaza mockup HTML) */
.app-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 36px;
}

.app-mockup-screen img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.app-mockup-screen .app-title {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 24px;
}

.app-mockup-item {
  width: 100%;
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.app-mockup-item .item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(59,168,224,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--toori-blue);
  font-size: 1rem;
  flex-shrink: 0;
}

.app-mockup-item .item-text {
  font-size: 0.75rem;
  color: #333;
  font-weight: 500;
}

.app-mockup-item .item-sub {
  font-size: 0.65rem;
  color: #999;
}

.app-content {
  color: white;
  max-width: 440px;
}

.app-content h2 {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.app-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.app-feature i {
  color: var(--toori-green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.app-download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.app-download-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: white;
}

.app-download-btn i {
  font-size: 1.4rem;
}

/* --- FAQ Accordion --- */
.faq-section {
  background: var(--bg-white);
  padding: 100px 0;
}

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

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  border-color: rgba(59, 168, 224, 0.2);
  box-shadow: 0 4px 20px rgba(59, 168, 224, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  transition: color 0.3s;
  gap: 16px;
  user-select: none;
}

.faq-question:hover {
  color: var(--toori-blue);
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--toori-blue);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Gradient Mesh Dividers --- */
.mesh-divider {
  height: 120px;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.mesh-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 20% 50%, rgba(59,168,224,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 35% 70% at 75% 50%, rgba(174,205,90,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 60% at 50% 80%, rgba(135,78,153,0.05) 0%, transparent 60%);
}

/* --- Button Ripple Effect --- */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- Icon Hover Animations --- */
.icon-hover-bounce {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-hover-bounce:hover {
  transform: scale(1.15) rotate(-5deg);
}

.category-card:hover .category-card-body i {
  animation: icon-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes icon-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3) rotate(-8deg); }
  100% { transform: scale(1); }
}

/* --- Gradient Mesh Background Sections --- */
.mesh-bg-soft {
  position: relative;
}

.mesh-bg-soft::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 10% 20%, rgba(59,168,224,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(174,205,90,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.mesh-bg-soft > * {
  position: relative;
  z-index: 1;
}

/* --- V2 Responsive --- */
@media (max-width: 992px) {
  .app-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .app-content {
    max-width: 100%;
  }

  .app-mockup {
    width: 240px;
    height: 480px;
    margin-top: 40px;
  }

  .app-download-buttons {
    justify-content: center;
  }

  .app-features {
    align-items: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .app-section {
    padding: 60px 0;
  }

  .app-content h2 {
    font-size: 1.8rem;
  }

  .app-mockup {
    width: 220px;
    height: 440px;
    border-radius: 32px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 16px 20px;
  }

  .mesh-divider {
    height: 60px;
  }
}
