/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-section {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 6rem 0;
}

.trust-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 214, 245, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   TEMPLATE SHOWCASE
   ========================================================================== */
.template-layout {
  display: grid;
  grid-template-columns: 450px 320px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}

.template-filters {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 450px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-muted);
  padding: 1rem 1.5rem;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.1);
  padding-left: 1.8rem;
}

.filter-btn.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-primary);
  border-color: rgba(18, 214, 245, 0.3);
  padding-left: 2rem;
  box-shadow: 0 0 20px -5px rgba(18, 214, 245, 0.15);
}

.template-showcase-visual {
  display: flex;
  justify-content: center;
}

.phone-showcase-wrapper {
  width: 320px;
  position: relative;
}

/* Transition states inside templates */
.template-inner-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.template-inner-preview.fade-out {
  opacity: 0;
  transform: scale(0.95) translateY(10px);
}

.template-inner-preview.fade-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Template Skins Mock styles */
.bg-gradient-corp {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.bg-gradient-doc {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.bg-gradient-food {
  background: linear-gradient(135deg, #b45309, #78350f);
}

.bg-gradient-photo {
  background: linear-gradient(135deg, #111, #333);
}

.bg-gradient-law {
  background: linear-gradient(135deg, #1e1b4b, #311042);
}

.bg-gradient-fit {
  background: linear-gradient(135deg, #dc2626, #991b1b);
}

.bg-gradient-salon {
  background: linear-gradient(135deg, #db2777, #9d174d);
}

.bg-gradient-re {
  background: linear-gradient(135deg, #059669, #065f46);
}

.bg-gradient-edu {
  background: linear-gradient(135deg, #4f46e5, #3730a3);
}

.bg-gradient-travel {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
}

.bg-gradient-tech {
  background: linear-gradient(135deg, #090d16, #12D6F5);
}

.bg-gradient-creative {
  background: linear-gradient(135deg, #FF4FD8, #7B61FF);
}

/* ==========================================================================
   BENTO GRID
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bento-card {
  position: relative;
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

/* Dynamic Hover Border Gradient Glow */
.bento-card[data-glow] {
  background-image: var(--grad-glow), var(--grad-dark-card);
  background-clip: padding-box, border-box;
}

.bento-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bento-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.text-purple {
  color: var(--color-secondary);
}

.text-cyan {
  color: var(--color-primary);
}

.text-pink {
  color: var(--color-accent);
}

.text-green {
  color: #10B981;
}

.bento-body h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.bento-body p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Bento Sizing variations */
.card-large {
  grid-column: span 2;
}

.card-medium {
  grid-column: span 1;
}

.card-small {
  grid-column: span 1;
}

/* Bento Visual Mockups */
.bento-visual {
  margin-top: auto;
  border-radius: var(--border-radius-md);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  height: 180px;
  position: relative;
}

.visual-cards {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-card {
  position: absolute;
  width: 180px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.card-stack-1 {
  transform: rotate(-8deg) translateX(-30px) translateY(10px);
  z-index: 1;
}

.card-stack-2 {
  transform: rotate(0deg);
  z-index: 2;
  border-color: var(--color-primary);
}

.card-stack-3 {
  transform: rotate(8deg) translateX(30px) translateY(10px);
  z-index: 1;
}

.visual-qr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-qr-wrapper {
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.qr-svg-graphic {
  color: #0F172A;
}

.visual-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.5rem;
  gap: 1rem;
  align-items: center;
}

.mock-payment {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.payment-title {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.payment-price {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0.25rem 0;
}

.payment-btn {
  font-size: 0.75rem;
  background: #635BFF;
  color: white;
  padding: 0.4rem;
  border-radius: 4px;
  text-align: center;
}

.mock-calendar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
}

.cal-title {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.cal-days {
  display: flex;
  gap: 0.5rem;
}

.cal-day {
  font-size: 0.75rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.cal-day.active {
  background: var(--color-primary);
  color: #0F172A;
  font-weight: 700;
}

.visual-code {
  padding: 1.5rem;
}

.visual-code pre {
  margin: 0;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ==========================================================================
   HOW IT WORKS (TIMELINE)
   ========================================================================== */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.timeline-progress-bar {
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  z-index: 1;
}

.timeline-progress-fill {
  width: 100%;
  height: 0%;
  background: var(--grad-primary);
  transition: height 0.05s ease-out;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.timeline-step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--color-dark-light);
  border: 4px solid var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-muted);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.timeline-step.active .step-number {
  background: var(--color-primary);
  color: var(--color-dark);
  box-shadow: 0 0 20px rgba(18, 214, 245, 0.4);
}

.step-content {
  padding-top: 0.75rem;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-normal);
}

.timeline-step.active .step-content h3 {
  color: var(--color-primary);
}

.step-content p {
  max-width: 650px;
}

/* ==========================================================================
   FEATURES GRID LIST
   ========================================================================== */
.features-list-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  width: calc(25% - 2rem);
  min-width: 250px;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(123, 97, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: all var(--transition-fast);
}

.feature-item:hover .feature-icon {
  background: var(--grad-primary);
  color: var(--color-light);
  transform: scale(1.05);
}

.feature-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-info p {
  font-size: 0.95rem;
}

/* ==========================================================================
   ANALYTICS SECTION
   ========================================================================== */
.analytics-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 5rem;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.metric-item {
  display: flex;
  gap: 1rem;
}

.metric-bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}

.bg-cyan {
  background: var(--color-primary);
}

.bg-purple {
  background: var(--color-secondary);
}

.bg-pink {
  background: var(--color-accent);
}

.metric-item strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* Premium Dashboard Panel */
.analytics-dashboard-visual {
  perspective: 1000px;
}

.dashboard-box {
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform var(--transition-slow);
}

.dashboard-box:hover {
  transform: rotateY(0) rotateX(0);
}

.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.db-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.db-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.db-timeframe {
  font-size: 0.85rem;
  color: var(--color-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.db-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.db-stat-pill {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: var(--border-radius-md);
}

.db-stat-pill span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.db-stat-pill strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.25rem 0;
}

.db-green {
  color: #10B981;
  font-size: 0.75rem;
  font-weight: 600;
}

.db-purple {
  color: var(--color-secondary);
  font-size: 0.75rem;
  font-weight: 600;
}

/* SVG Graph */
.db-graph-container {
  height: 180px;
  position: relative;
  margin-bottom: 2rem;
}

.db-chart {
  width: 100%;
  height: 100%;
}

.chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawChart 3s ease-out forwards;
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

.db-footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.db-sub-panel h5 {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.db-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.db-bar-fill {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}

.db-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-primary);
  border-radius: 99px;
}

.db-sub-panel:nth-child(2) .db-bar-fill::after {
  background: var(--color-secondary);
}

/* ==========================================================================
   INDUSTRIES SHOWCASE
   ========================================================================== */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-fast);
  width: calc(25% - 1.5rem);
  min-width: 250px;
}

.industry-card:hover {
  background: var(--grad-dark-card);
  border-color: rgba(18, 214, 245, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(18, 214, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.industry-card:hover .industry-icon {
  background: var(--grad-primary);
  color: var(--color-light);
}

.industry-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.industry-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================================================
   INTEGRATIONS SECTION
   ========================================================================== */
.integrations-section {
  overflow: hidden;
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 35s linear infinite;
  padding: 1rem 0;
}

.integration-logo {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-light);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  cursor: default;
}

.integration-logo:hover {
  border-color: var(--color-secondary);
  background: rgba(123, 97, 255, 0.1);
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */
.testimonial-carousel-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.testimonial-carousel {
  width: 100%;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 2rem;
}

.testimonial-card {
  flex-shrink: 0;
  width: 100%;
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.t-rating {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.t-quote {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.t-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.t-meta strong {
  display: block;
  font-size: 1.1rem;
}

.t-meta span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.carousel-control:hover {
  background: var(--color-light);
  color: var(--color-dark);
  border-color: transparent;
}

.carousel-control.prev {
  left: -80px;
}

.carousel-control.next {
  right: -80px;
}

/* Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.indicator.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 99px;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pricing-toggle-btn {
  width: 56px;
  height: 30px;
  background: var(--color-dark-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.pricing-toggle-btn.active {
  background: var(--color-primary);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-light);
  transition: transform var(--transition-fast);
}

.pricing-toggle-btn.active .toggle-slider {
  transform: translateX(26px);
}

.discount-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.1rem 0.5rem;
  border-radius: 99px;
  margin-left: 0.5rem;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.pricing-card.featured {
  background: var(--grad-dark-card);
  border: 2px solid var(--color-primary);
  box-shadow: 0 15px 40px -10px rgba(18, 214, 245, 0.25);
  transform: scale(1.03);
  z-index: 5;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
}

.p-card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.p-card-header p {
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.p-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 2.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 0.2rem;
}

.price-val {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.period {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.p-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-features li.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.check-icon {
  color: var(--color-primary);
  font-weight: 800;
}

.cross-icon {
  color: rgba(255, 255, 255, 0.2);
}

.p-action {
  margin-top: auto;
}

/* Comparison Table */
.comparison-table-wrapper {
  margin-top: 8rem;
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  overflow-x: auto;
}

.comparison-title {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-light);
  background: #5789fc30;
}

.comparison-table td {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.comparison-table tr:hover td {
  color: var(--color-light);
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table tr:hover td:first-child {
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  font-weight: 600;
  color: var(--color-light);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 520px;
  /* Prevents viewport jump/collapse when results are filtered */
}

/* Styled details and summary */
.faq-item {
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-light);
  outline: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 2rem 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.01);
}

.faq-answer p {
  font-size: 1rem;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta-section {
  padding-bottom: 8rem;
}

.cta-box {
  position: relative;
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-xl);
  padding: 6rem 3rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #070a12;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 6rem 0 3rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--color-light);
  color: var(--color-dark);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col ul a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-light);
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  padding: 0.8rem 1.2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-light);
  font-family: var(--font-body);
  outline: none;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-light);
}

/* ==========================================================================
   VIDEO DEMO LIGHTBOX MODAL
   ========================================================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(15px);
}

.video-modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  background: var(--color-dark-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}

.video-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--color-light);
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition-fast);
}

.video-close-btn:hover {
  color: var(--color-accent);
}

.video-iframe-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
}

.demo-video-placeholder {
  text-align: center;
  color: white;
  padding: 3rem;
}

.demo-video-placeholder h4 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   ANIMATIONS KEYFRAMES & UTILITIES
   ========================================================================== */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scaleY(0.4);
    opacity: 0.6;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Scroll Animation Hooks classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

/* ==========================================================================
   WHATSAPP STORES SECTION
   ========================================================================== */
.wa-stores-section {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 8rem 0;
}

.wa-stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.wa-store-card {
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.wa-store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #25D366;
  /* WhatsApp Green */
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.wa-store-card:hover::before {
  opacity: 1;
}

.wa-store-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 211, 102, 0.3);
  /* WhatsApp Green border */
  box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.15);
}

.wa-store-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.wa-store-card:hover .wa-store-icon {
  background: #25D366;
  color: white;
  transform: scale(1.05);
}

.wa-store-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.wa-store-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.wa-store-mock-products {
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.wa-store-product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.wa-store-product-item span:first-child {
  color: var(--color-light);
  font-weight: 500;
}

.wa-store-btn {
  margin-top: auto;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.wa-store-card:hover .wa-store-btn {
  background: #25D366;
  color: white;
  border-color: transparent;
}


/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */

/* Header & Navigation Breakpoint (Prevents menu wrapping on laptops/tablets) */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  #loginBtn,
  #signupBtn {
    display: none;
    /* In header, but shown inside mobile overlay */
  }
}

/* Laptops / Desktops Medium (1200px) */
@media (max-width: 1200px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    grid-column: span 1;
    transform: none !important;
  }

  .features-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets Landscape / iPads (1024px) */
@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .template-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .template-filters {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }

  .filter-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .template-showcase-visual {
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-large {
    grid-column: span 2;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .industry-card {
    width: calc(33.333% - 1.5rem);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .footer-info {
    grid-column: span 3;
    text-align: center;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-newsletter {
    grid-column: span 3;
    text-align: center;
  }

  .wa-stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets Portrait (768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    width: calc(50% - 1.25rem);
    min-width: unset;
  }

  .industry-card {
    width: calc(50% - 1rem);
    min-width: unset;
  }

  .comparison-table-wrapper {
    padding: 2rem 1.5rem;
  }

  .carousel-control {
    display: none;
    /* Hide navigation arrows on tablet */
  }
}

/* Mobile Devices (576px) */
@media (max-width: 576px) {
  section {
    padding: 5rem 0;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .card-large,
  .card-medium,
  .card-small {
    grid-column: span 1;
  }

  .bento-body {
    padding: 2rem;
  }

  .timeline-progress-bar {
    left: 21px;
  }

  .step-number {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .timeline-step {
    gap: 1.5rem;
  }

  .feature-item {
    width: 100%;
  }

  .industry-card {
    width: 100%;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }

  .wa-stores-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-info,
  .footer-newsletter {
    grid-column: span 1;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   BUSINESS LISTINGS DIRECTORY PAGE STYLES
   ========================================================================== */

.directory-section {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 8rem;
  z-index: 2;
  position: relative;
}

.directory-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.directory-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.directory-subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Search and Filters Bar */
.search-filter-bar {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-glass);
}

.filter-form {
  display: grid;
  grid-template-columns: 2.2fr 1.8fr 1.2fr 1.2fr 1.2fr auto;
  gap: 1rem;
  align-items: center;
}

.filter-group {
  position: relative;
  width: 100%;
}

.filter-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.filter-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--color-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.filter-select {
  width: 100%;
  padding: 0.8rem 2rem 0.8rem 2.8rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--color-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  transition: all var(--transition-fast);
}

.filter-input:focus,
.filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 12px rgba(18, 214, 245, 0.25);
  background-color: rgba(15, 23, 42, 0.8);
}

.filter-input::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.filter-submit-btn {
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  font-size: 0.95rem;
  background: var(--grad-primary);
  color: var(--color-light);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
}

.filter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(123, 97, 255, 0.4);
}

/* Listings Grid */
.listings-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.2rem;
  margin-bottom: 5rem;
  min-height: 400px;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  background: rgba(30, 41, 59, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
}

.no-results svg {
  margin-bottom: 1.5rem;
  stroke: var(--color-muted);
}

.no-results h3 {
  margin-bottom: 0.5rem;
}

/* Listing Card */
.listing-card {
  background: var(--grad-dark-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  height: 100%;
}

/* Hover glow overlay, styled like Bento grid cards */
.listing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-glow);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 2;
  pointer-events: none;
}

.listing-card:hover::before {
  opacity: 1;
}

.listing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color-primary-rgb), 0.35);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(var(--color-primary-rgb), 0.12);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.listing-card:hover .card-img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 3;
}

.card-badge svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.card-content-wrap {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-light);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.85rem;
  /* ~2 lines */
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-date {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-date svg {
  width: 14px;
  height: 14px;
  color: var(--color-muted);
  opacity: 0.7;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 9999px;
  background: rgba(18, 214, 245, 0.06);
  color: var(--color-primary);
  border: 1px solid rgba(18, 214, 245, 0.2);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.card-action-btn:hover {
  background: var(--color-primary);
  color: var(--color-dark);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(18, 214, 245, 0.3);
  transform: translateX(3px);
}

.card-action-btn svg {
  transition: transform var(--transition-fast);
}

.card-action-btn:hover svg {
  transform: translateX(2px);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.page-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-btn.active {
  background: var(--grad-primary);
  color: var(--color-light);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.page-btn svg {
  width: 16px;
  height: 16px;
}

/* Newsletter Subscription section - customized for listings */
.directory-newsletter-box {
  margin-top: 6rem;
  position: relative;
  border-radius: var(--border-radius-lg);
  padding: 4rem 2rem;
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.directory-newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--color-primary-rgb), 0.08) 0%, rgba(var(--color-secondary-rgb), 0.04) 30%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.directory-newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.directory-newsletter-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.directory-newsletter-subtitle {
  color: var(--color-muted);
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
}

.directory-newsletter-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1.2rem auto;
}

.directory-newsletter-form input {
  flex-grow: 1;
  padding: 0.9rem 1.5rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  color: var(--color-light);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.directory-newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(18, 214, 245, 0.2);
}

.directory-newsletter-privacy {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Animations */
.fade-in-card {
  animation: cardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(15px);
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR LISTINGS
   ========================================================================== */

/* Laptop & Desktop Breakpoints */
@media (max-width: 1200px) {
  .filter-form {
    grid-template-columns: 2fr 2fr 1fr 1fr auto;
  }

  /* Wrap template category */
  .filter-group:nth-child(5) {
    grid-column: span 2;
  }

  .filter-submit-btn {
    grid-column: span 3;
  }
}

@media (max-width: 992px) {
  .filter-form {
    grid-template-columns: 1fr 1fr;
  }

  .filter-group:nth-child(1),
  .filter-group:nth-child(2) {
    grid-column: span 2;
  }

  .filter-group:nth-child(3),
  .filter-group:nth-child(4),
  .filter-group:nth-child(5) {
    grid-column: span 1;
  }

  .filter-submit-btn {
    grid-column: span 2;
    padding: 0.9rem;
  }

  .listings-grid-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.8rem;
  }
}

@media (max-width: 576px) {
  .directory-section {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .filter-form {
    grid-template-columns: 1fr;
  }

  .filter-group {
    grid-column: span 1 !important;
  }

  .filter-submit-btn {
    grid-column: span 1 !important;
    margin-top: 0.5rem;
  }

  .directory-newsletter-form {
    flex-direction: column;
    border-radius: 0;
  }

  .directory-newsletter-form input {
    width: 100%;
  }

  .directory-newsletter-form button {
    width: 100%;
  }

  .directory-newsletter-box {
    padding: 3rem 1.5rem;
  }
}

/* ==========================================================================
   LEGAL & POLICY PAGES STYLES
   ========================================================================== */
.policy-section {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 8rem;
  z-index: 2;
  position: relative;
}

.policy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.policy-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.policy-meta {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.policy-container {
  max-width: 860px;
  margin: 0 auto;
}

.policy-card {
  background: var(--grad-dark-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 3.5rem;
  box-shadow: var(--shadow-glass);
}

.policy-card h1 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.policy-card h2 {
  font-size: 1.35rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--color-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.4rem;
}

.policy-card h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--color-light);
}

.policy-card h2:first-of-type,
.policy-card h1:first-of-type {
  margin-top: 0;
}

.policy-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.policy-card ul {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-muted);
}

.policy-card li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.policy-card a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.policy-card a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .policy-card {
    padding: 2rem 1.5rem;
  }

  .policy-section {
    padding-top: calc(var(--header-height) + 2rem);
  }
}

/* Pricing Duration Tabs */
.pricing-tabs-container {
  display: inline-flex;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  padding: 0.35rem;
  gap: 0.25rem;
  margin: 2rem auto 0 auto;
  position: relative;
  z-index: 10;
}

.pricing-tab-btn {
  background: transparent;
  border: none;
  color: var(--color-muted);
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-tab-btn:hover {
  color: var(--color-light);
}

.pricing-tab-btn.active {
  background: var(--grad-primary);
  color: var(--color-light);
  box-shadow: var(--shadow-sm);
}

.pricing-tab-btn .discount-badge {
  font-size: 0.72rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10B981;
  padding: 0.1rem 0.45rem;
  border-radius: 99px;
  font-weight: 700;
}

.price-billing-note {
  flex-basis: 100%;
  font-size: 0.75rem;
  color: var(--color-primary);
  margin-top: 0.4rem;
  min-height: 1rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.price-period {
  font-size: 1rem;
  color: var(--color-muted);
  font-weight: 500;
}

@media (max-width: 576px) {
  .pricing-tabs-container {
    flex-direction: column;
    border-radius: 16px;
    width: 100%;
    padding: 0.5rem;
  }

  .pricing-tab-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Custom Enterprise Solutions Callout */
.pricing-custom-solution {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  gap: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(18, 214, 245, 0.03) 100%);
  box-shadow: var(--shadow-sm);
}

.pricing-custom-solution::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.custom-solution-content {
  position: relative;
  z-index: 2;
}

.custom-solution-content h3 {
  font-size: 1.6rem;
  font-weight: 750;
  color: var(--color-light);
  margin-bottom: 0.6rem;
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
}

.custom-solution-content p {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 720px;
}

.custom-solution-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.custom-solution-action .btn {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 99px;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .pricing-custom-solution {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 1.75rem;
  }

  .custom-solution-content p {
    max-width: 100%;
  }
}

/* ==========================================================================
   PREMIUM SAAS REDESIGN & INTERACTIVE STYLES
   ========================================================================== */

/* 1. Hero Floating Overlays & Micro-Animations */
.hero-mockup-container {
  position: relative;
}

.floating-popup {
  position: absolute;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  z-index: 5;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  pointer-events: auto;
}

.floating-popup:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px -10px rgba(18, 214, 245, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  border-color: rgba(18, 214, 245, 0.4);
}

.fp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fp-data {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.fp-data strong {
  font-size: 0.85rem;
  color: var(--color-light);
  font-weight: 600;
  line-height: 1.2;
}

.fp-data span {
  font-size: 0.7rem;
  color: var(--color-muted);
}

/* Floating positions */
.fp-whatsapp {
  top: 15%;
  left: -28%;
  animation: float-slow 6s ease-in-out infinite alternate;
}

.fp-booking {
  top: 45%;
  right: -25%;
  animation: float-medium 7s ease-in-out infinite alternate;
}

.fp-payment {
  bottom: 12%;
  left: -20%;
  animation: float-fast 5s ease-in-out infinite alternate;
}

.floating-social-icons {
  position: absolute;
  right: -15%;
  top: 18%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 4;
}

.fs-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  animation: float-medium 5.5s ease-in-out infinite alternate;
}

.fs-icon:hover {
  color: var(--color-light);
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 15px var(--color-primary);
}

.fs-icon.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.fs-icon.instagram:hover {
  background: #e1306c;
  border-color: #e1306c;
}

.fs-icon.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

@keyframes float-slow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

@keyframes float-medium {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-16px) rotate(-2deg);
  }
}

@keyframes float-fast {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (max-width: 1200px) {
  .fp-whatsapp {
    left: -10%;
  }

  .fp-leads {
    right: -10%;
  }

  .fp-payment {
    left: -5%;
  }

  .floating-social-icons {
    right: -5%;
  }
}

@media (max-width: 768px) {
  .floating-popup {
    padding: 0.5rem 0.75rem;
  }

  .fp-icon {
    width: 22px;
    height: 22px;
  }

  .fp-data strong {
    font-size: 0.75rem;
  }

  .fp-data span {
    font-size: 0.65rem;
  }

  .fp-whatsapp {
    top: 5%;
    left: 15px;
  }

  .fp-leads {
    top: 40%;
    right: 15px;
  }

  .fp-payment {
    bottom: 5%;
    left: 15px;
  }

  .floating-social-icons {
    display: none;
  }
}

/* Trust CTA Badges Under Hero */
.hero-trust-badges {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-badge-item {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 550;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 2. Statistics Icons & Layout spacing */
.stat-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  overflow: hidden;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(18, 214, 245, 0.2);
  transform: translateY(-4px);
}

.stat-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(18, 214, 245, 0.06);
  border: 1px solid rgba(18, 214, 245, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.stat-card:nth-child(2) .stat-icon-wrapper {
  background: rgba(123, 97, 255, 0.06);
  border-color: rgba(123, 97, 255, 0.15);
  color: #7b61ff;
}

.stat-card:nth-child(3) .stat-icon-wrapper {
  background: rgba(255, 79, 216, 0.06);
  border-color: rgba(255, 79, 216, 0.15);
  color: #ff4fd8;
}

.stat-card:nth-child(4) .stat-icon-wrapper {
  background: rgba(74, 222, 128, 0.06);
  border-color: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

/* 3. Preview Switch Mode Light/Dark Toggle */
.preview-mode-toggle-wrap {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.toggle-text {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.theme-toggle-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
}

.theme-toggle-switch .toggle-btn {
  background: transparent;
  border: none;
  padding: 0.4rem 0.95rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}

.theme-toggle-switch .toggle-btn svg {
  opacity: 0.7;
}

.theme-toggle-switch .toggle-btn:hover {
  color: var(--color-light);
}

.theme-toggle-switch .toggle-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dynamic inversion filter for light theme preview simulation */
.light-preview {
  filter: invert(0.92) hue-rotate(180deg) brightness(1.1) contrast(1.1);
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 4. Grouped Category Feature Lists */
.features-grouped-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.feature-group-wrapper {
  background: rgba(255, 255, 255, 0.005);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-group-heading {
  font-size: 1.3rem;
  font-weight: 750;
  color: var(--color-light);
  margin: 0;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-primary);
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.005);
  transition: all 0.25s ease;
}

.feature-group-heading:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-primary);
}

.fh-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fh-title span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.feature-group-chevron {
  width: 18px;
  height: 18px;
  color: var(--color-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.feature-group-wrapper.active .feature-group-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* Accordion Collapsing List Grid */
.features-list-grid {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 2rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
}

.feature-group-wrapper.active .features-list-grid {
  max-height: 1200px;
  /* High enough to contain grid items */
  opacity: 1;
  padding: 2.25rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* 5. WhatsApp Stores visual grid updates */
.wa-store-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.002) 100%);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.wa-store-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(18, 214, 245, 0.08);
  border: 1px solid rgba(18, 214, 245, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 1.25rem;
}

.wa-store-card:nth-child(2n) .wa-store-card-badge {
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.15);
}

.wa-store-mock-products {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.wa-product-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.wa-product-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(37, 211, 102, 0.2);
}

.wa-product-img {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.wa-product-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.wa-product-name {
  font-size: 0.8rem;
  font-weight: 550;
  color: var(--color-light);
}

.wa-product-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #25d366;
}

.wa-store-btn {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25d366 !important;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  border-radius: var(--border-radius-sm);
  padding: 0.65rem;
  display: block;
}

.wa-store-btn:hover {
  background: #25d366;
  border-color: #25d366;
  color: #0f172a !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* 6. Analytics Section counter hooks & interactive SVG charts */
.db-counter {
  font-family: var(--font-primary);
  font-feature-settings: "tnum";
}

.db-chart-point {
  fill: #12d6f5;
  stroke: #0f172a;
  stroke-width: 2.5px;
  cursor: pointer;
  transition: r 0.25s ease, fill 0.25s ease, filter 0.25s ease;
}

.db-chart-point:hover {
  r: 8.5px;
  fill: #ff4fd8;
  filter: drop-shadow(0 0 8px #ff4fd8);
}

.chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-chart 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes draw-chart {
  to {
    stroke-dashoffset: 0;
  }
}

/* 7. Integrations monochrome glassmorphism cards */
.integration-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.2rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--color-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.integration-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.4);
}

.integration-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.integration-card:hover .integration-icon {
  opacity: 1;
}

.integration-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* 8. Testimonials verified badges, company logos & real avatars layout */
.t-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #25d366;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.t-avatar-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.t-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-company-logo {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-muted);
  opacity: 0.55;
  margin-left: auto;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* 9. Pricing Guarantee & trust details */
.title-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.best-value-badge {
  display: inline-flex;
  align-items: center;
  background: #ff4fd8;
  color: #0f172a;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 79, 216, 0.3);
}

/* Check & Cross SVGs spacing inside pricing */
.check-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.cross-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  opacity: 0.4;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Trust Signals Row styles */
.pricing-trust-badges {
  margin-top: 2rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.005);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.pricing-trust-badges .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 550;
}

.pricing-trust-badges .trust-badge svg {
  color: var(--color-primary);
}

/* Sticky behaviors for comparison table */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Sticky behaviors for comparison table (Desktop only) */
@media (min-width: 992px) {

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background: #0e1527;
    /* Clean background match for desktop table */
    z-index: 10;
    text-align: left;
  }
}

/* Reset sticky behaviors on mobile and tablet to enable natural scrolling with row hover effect */
@media (max-width: 991px) {

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: static;
    background: transparent !important;
    box-shadow: none !important;
  }
}

/* 10. FAQ Search bar & styling */
.faq-search-wrapper {
  margin: 0 auto 3rem auto;
  max-width: 620px;
}

.faq-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 0.25rem 0.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.01);
}

.faq-search-box:focus-within {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(18, 214, 245, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

.faq-search-icon {
  margin-left: 0.75rem;
  color: var(--color-muted);
  pointer-events: none;
}

.faq-search-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-light);
  font-family: var(--font-secondary);
}

.faq-search-box input::placeholder {
  color: var(--color-muted);
  opacity: 0.75;
}

.faq-search-clear-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 1.1rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.faq-search-clear-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
}

/* 11. Final CTA badges styling */
.cta-badges {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0.85;
}

.cta-badge-item {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 550;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* 12. Real-Time ROI Dashboard Tabbed Panels */
.db-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
  margin: 0 1rem;
}

.db-tab-btn {
  background: transparent;
  border: none;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.db-tab-btn:hover {
  color: var(--color-light);
}

.db-tab-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-light);
}

.db-panel {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.db-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Audience Grid Styling */
.db-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.db-bar-fill-wrap {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.03);
  height: 6px;
  border-radius: 99px;
  overflow: hidden;
  margin: 0 0.5rem;
}

.db-bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 1s ease-out;
}

.db-bar-fill.bg-cyan {
  background: #12d6f5;
}

.db-bar-fill.bg-purple {
  background: #7b61ff;
}

.db-bar-fill.bg-pink {
  background: #ff4fd8;
}

.db-bar-fill.bg-green {
  background: #4ade80;
}

/* Leads & Bookings Grid Styling */
.db-leads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.db-lead-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.25s ease;
}

.db-lead-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.db-lead-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.db-lead-info strong {
  font-size: 0.8rem;
  color: var(--color-light);
  font-weight: 600;
}

.db-lead-info span {
  font-size: 0.68rem;
  color: var(--color-muted);
}

.db-lead-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.db-lead-time {
  font-size: 0.65rem;
  color: var(--color-muted);
}

.db-lead-price {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4ade80;
}

.db-status-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.bg-green-light {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.bg-cyan-light {
  background: rgba(18, 214, 245, 0.08);
  border: 1px solid rgba(18, 214, 245, 0.15);
  color: #12d6f5;
}

.bg-purple-light {
  background: rgba(123, 97, 255, 0.08);
  border: 1px solid rgba(123, 97, 255, 0.15);
  color: #7b61ff;
}

@media (max-width: 768px) {
  .db-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .db-tabs {
    margin: 0;
  }

  .db-audience-grid {
    grid-template-columns: 1fr;
  }

  .db-leads-grid {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Store Simulator Layout */
.wa-simulator-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: center;
}

.wa-simulator-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wa-sim-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  color: var(--color-muted);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
  font-weight: 550;
  font-size: 0.92rem;
  font-family: inherit;
}

.wa-sim-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-light);
  transform: translateX(4px);
}

.wa-sim-btn.active {
  background: rgba(37, 211, 102, 0.06);
  border-color: rgba(37, 211, 102, 0.2);
  color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.05);
}

.wa-sim-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.wa-simulator-preview {
  background: var(--grad-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wa-simulator-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 1.25rem;
  text-align: left;
}

.wa-simulator-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-light);
}

.wa-simulator-info p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.wa-simulator-visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Phone preview frame */
.wa-phone-container {
  width: 250px;
  height: 480px;
  border: 10px solid #1e293b;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  background: #000;
}

.wa-phone-notch {
  width: 110px;
  height: 16px;
  background: #1e293b;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.wa-phone-screen {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wa-phone-screen::-webkit-scrollbar {
  display: none;
}

.wa-phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

/* Chat window mockup */
.wa-chat-container {
  background: #075e54;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 410px;
}

.wa-chat-header {
  background: #075e54;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.wa-chat-status {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wa-chat-status strong {
  font-size: 0.85rem;
  color: white;
}

.wa-chat-status span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

.wa-chat-body {
  background: #eae6df;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 16px 16px;
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}

.wa-message-bubble {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  max-width: 85%;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.wa-message-bubble.incoming {
  background: white;
  color: #303030;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.wa-message-bubble.outgoing {
  background: #dcf8c6;
  color: #303030;
  align-self: flex-end;
  border-top-right-radius: 0;
  min-width: 180px;
}

.wa-receipt-title {
  font-weight: 700;
  color: #075e54;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.wa-receipt-divider {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  margin: 0.4rem 0;
}

.wa-receipt-items {
  font-family: monospace;
  font-size: 0.72rem;
  white-space: pre-wrap;
  color: #4a4a4a;
}

.wa-receipt-total {
  font-size: 0.8rem;
  color: #000;
  display: flex;
  justify-content: space-between;
}

.wa-receipt-footer {
  font-size: 0.62rem;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-top: 0.4rem;
}

.wa-chat-footer {
  background: #f0f0f0;
  padding: 0.5rem 0.75rem;
}

.wa-chat-input-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 99px;
  padding: 0.35rem 0.6rem 0.35rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.wa-chat-input-bar span {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
}

.wa-chat-send-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #128c7e;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .wa-simulator-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wa-simulator-visual-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 13. WhatsApp Store Simulator Checkout & Flow Screen styles */
.wa-sim-screen {
  display: none;
  flex-direction: column;
  height: 410px;
  background: var(--grad-dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.wa-sim-screen.active {
  display: flex;
  animation: waSlideIn 0.3s ease-out forwards;
}

@keyframes waSlideIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wa-checkout-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-checkout-header strong {
  font-size: 0.9rem;
  color: var(--color-light);
}

.wa-checkout-steps {
  font-size: 0.7rem;
  color: var(--color-primary);
  font-weight: 700;
}

.wa-checkout-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  text-align: left;
}

.wa-checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wa-checkout-lbl {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.wa-checkout-item-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-size: 0.8rem;
}

.wa-checkout-item-pill span {
  color: var(--color-light);
  font-weight: 550;
}

.wa-checkout-item-pill strong {
  color: #25d366;
}

.wa-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wa-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wa-form-group label {
  font-size: 0.7rem;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.wa-form-group input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  color: var(--color-light);
  font-size: 0.8rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.wa-form-group input:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15);
}

.wa-place-order-btn {
  margin-top: 0.25rem;
  background: #25d366;
  border: none;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.wa-place-order-btn:hover {
  background: #20ba59;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.wa-reset-demo-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-reset-demo-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.wa-receipt-sec {
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #4a4a4a;
}

.wa-receipt-sec strong {
  color: #303030;
}

/* 14. Responsive Viewport Adaptations & Mobile Layout Fixes */

/* Mobile & Tablet Portrait Viewport Limits (768px) */
@media (max-width: 768px) {

  /* Expand the max-height limit of the active features accordion dropdown on mobile so they don't clip */
  .feature-group-wrapper.active .features-list-grid {
    max-height: 3500px;
    padding: 1.75rem 1.25rem 2rem 1.25rem;
  }

  /* Horizontal scroll navigation bar for WhatsApp store category buttons */
  .wa-simulator-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  }

  .wa-simulator-nav::-webkit-scrollbar {
    height: 4px;
  }

  .wa-simulator-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .wa-simulator-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
  }

  .wa-sim-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 0.7rem 1.1rem;
    font-size: 0.85rem;
  }

  .wa-sim-btn:hover {
    transform: none;
    /* Disable translateX slide effect on mobile taps */
  }

  /* Shrink testimonials container padding on tablets to maximize readable width */
  .testimonial-card {
    padding: 2.25rem 1.5rem;
  }

  /* Convert Template Showcase filters to horizontal scrolling tabs on mobile */
  .template-filters {
    flex-direction: row;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.5rem;
    max-width: 100%;
    margin-bottom: 2rem;
    justify-content: flex-start !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  }

  .template-filters::-webkit-scrollbar {
    height: 4px;
  }

  .template-filters::-webkit-scrollbar-track {
    background: transparent;
  }

  .template-filters::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
  }

  .template-filters .filter-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
  }

  .template-filters .filter-btn:hover {
    padding-left: 1.1rem;
    /* reset hover padding expansion on mobile */
    box-shadow: none;
  }

  /* Final CTA Tablet responsive rules */
  .cta-box {
    padding: 4rem 2rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .cta-desc {
    font-size: 1.1rem;
    margin-bottom: 2.25rem;
  }
}

/* Small Screens / Mobile Devices (576px) */
@media (max-width: 576px) {

  /* Stack the dashboard statistics row from 3 columns into 1 column to avoid squeezed text */
  .db-stats-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .db-stat-pill {
    padding: 0.85rem;
  }

  /* Wrap dashboard tabs so they don't overflow the card boundary */
  .db-tabs {
    flex-wrap: wrap;
    border-radius: var(--border-radius-md);
    padding: 6px;
    gap: 6px;
  }

  .db-tab-btn {
    flex-grow: 1;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.4rem 0.5rem;
    border-radius: 8px !important;
  }
}

/* Extra Small Screens & Mobile viewports (576px) */
@media (max-width: 576px) {

  /* Shrink hero phone frame slightly so it doesn't overflow container margins */
  .phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .phone-frame {
    width: 280px;
    height: 560px;
    aspect-ratio: 280 / 560;
    border-width: 10px;
    border-radius: 36px;
  }

  .phone-frame::before {
    width: 80px;
    height: 16px;
    top: 10px;
  }

  /* Shrink template showcase phone wrapper to prevent overflow */
  .phone-showcase-wrapper {
    width: 280px;
    margin: 0 auto;
  }

  /* Shrink WhatsApp simulator phone image mockup to fit narrow screens */
  .wa-phone-container {
    width: 220px;
    height: 420px;
    border-width: 8px;
    border-radius: 28px;
  }

  .wa-phone-notch {
    width: 90px;
    height: 14px;
  }

  /* Compress testimonial padding to maximize quote text spacing */
  .testimonial-card {
    padding: 1.75rem 1.25rem;
  }

  /* Final CTA Mobile responsive rules */
  .cta-box {
    padding: 3.5rem 1.25rem;
    border-radius: var(--border-radius-lg);
  }

  .cta-title {
    font-size: 1.8rem;
    line-height: 1.35;
  }

  .cta-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .cta-btn-wrap .btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-badges {
    gap: 0.75rem;
  }

  .cta-badge-item {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }
}

/* ==========================================================================
   MODERN LAZY RENDERING FOR DESKTOP PERFORMANCE
   ========================================================================== */
@media (min-width: 992px) {
  .trust-section,
  .features-section,
  .analytics-section,
  .templates-section,
  .timeline-section,
  .wa-stores-section,
  .pricing-section,
  .faq-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
  }
}
