.saas-products-page {
  background: #f8f9fa;
}

.saas-tabs-strip {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.saas-tabs-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.saas-tabs-container::-webkit-scrollbar {
  display: none;
}

.saas-tab-btn {
  position: relative;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
}

.saas-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.saas-tab-btn.active {
  background: #CC181F;
  border-color: #CC181F;
  color: #fff;
  box-shadow: 0 4px 15px rgba(204, 24, 31, 0.4);
}

.saas-tab-btn-indicator {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #CC181F;
}

.saas-content-panel {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.saas-hero-section {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.saas-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.saas-hero-text {
  flex: 1;
  min-width: 300px;
}

.saas-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
  line-height: 1.2;
}

.saas-hero-tagline {
  font-size: 20px;
  color: #CC181F;
  font-weight: 500;
  margin-bottom: 15px;
}

.saas-hero-description {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
}

.saas-hero-stats {
  display: flex;
  gap: 15px;
}

.saas-stats-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
}

.saas-users-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.saas-rating-badge {
  background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
  color: #fff;
}

.saas-stats-badge i {
  font-size: 16px;
}

.saas-hero-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.saas-hero-banner-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.saas-hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
}

.saas-content-grid {
  display: grid !important;
  grid-template-columns: 1fr 350px !important;
  gap: 30px !important;
  margin-top: 30px;
}

.saas-content-main {
  min-width: 0;
}

.saas-content-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

@media (max-width: 1199px) {
  .saas-content-grid {
    grid-template-columns: 1fr 320px !important;
  }
}

@media (max-width: 991px) {
  .saas-content-grid {
    grid-template-columns: 1fr !important;
  }
  
  .saas-content-sidebar {
    position: static;
  }
}

.saas-feature-card,
.saas-pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.saas-feature-card-title,
.saas-pricing-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.saas-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.saas-feature-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f5;
  animation: slideInUp 0.5s ease forwards;
  opacity: 0;
}

.saas-feature-item:last-child {
  border-bottom: none;
}

.saas-feature-icon {
  color: #CC181F;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.saas-feature-content {
  flex: 1;
}

.saas-feature-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.saas-feature-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.saas-pricing-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.saas-pricing-tab {
  padding: 10px 18px;
  border: 2px solid #e0e0e0;
  background: transparent;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.saas-pricing-tab:hover {
  border-color: #CC181F;
  color: #CC181F;
}

.saas-pricing-tab.active {
  background: #CC181F;
  border-color: #CC181F;
  color: #fff;
}

.saas-pricing-amount {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 25px;
}

.saas-price-value {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a2e;
}

.saas-price-period {
  font-size: 18px;
  color: #888;
  font-weight: 400;
}

.saas-payment-methods {
  text-align: center;
}

.saas-payment-methods-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.payment-icons-container {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.payment-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.3s ease;
}

.payment-icon:hover {
  transform: translateY(-3px);
}

.bkash-icon {
  background: linear-gradient(135deg, #e2136e 0%, #b71054 100%);
}

.paypal-icon {
  background: linear-gradient(135deg, #003087 0%, #001f5b 100%);
}

.payoneer-icon {
  background: linear-gradient(135deg, #ff4800 0%, #cc3a00 100%);
}

.bitcoin-icon {
  background: linear-gradient(135deg, #f7931a 0%, #d4800f 100%);
}

.parallax-section {
  position: relative;
  padding: 150px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.parallax-section.jarallax {
  background: transparent;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.75);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-style: italic;
}

.parallax-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.saas-parallax-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.saas-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.85);
}

.saas-parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.saas-parallax-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.saas-parallax-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.saas-parallax-video {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.saas-parallax-video iframe {
  display: block;
}

.saas-video-player {
  width: 100%;
  display: block;
}

.saas-features-showcase {
  padding: 80px 0;
  background: #fff;
}

.saas-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.saas-feature-showcase-card {
  background: linear-gradient(145deg, #f8f9fa 0%, #fff 100%);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.saas-feature-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.saas-feature-showcase-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #CC181F 0%, #a01418 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saas-feature-showcase-icon i,
.saas-feature-showcase-icon svg {
  font-size: 28px;
  width: 28px;
  height: 28px;
  color: #fff;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-box-sm {
  width: 40px;
  height: 40px;
}

.icon-box-md {
  width: 56px;
  height: 56px;
}

.icon-box-lg {
  width: 70px;
  height: 70px;
}

.icon-box-xl {
  width: 90px;
  height: 90px;
}

.icon-box-primary {
  background: linear-gradient(135deg, #CC181F 0%, #a01418 100%);
  color: #fff;
}

.icon-box-secondary {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
  color: #fff;
}

.icon-box-outline {
  background: transparent;
  border: 2px solid #CC181F;
  color: #CC181F;
}

.icon-box-ghost {
  background: rgba(204, 24, 31, 0.1);
  color: #CC181F;
}

.icon-box-icon {
  color: inherit;
}

.icon-box-sm .icon-box-icon,
.icon-box-sm svg {
  width: 18px;
  height: 18px;
}

.icon-box-md .icon-box-icon,
.icon-box-md svg {
  width: 24px;
  height: 24px;
}

.icon-box-lg .icon-box-icon,
.icon-box-lg svg {
  width: 28px;
  height: 28px;
}

.icon-box-xl .icon-box-icon,
.icon-box-xl svg {
  width: 36px;
  height: 36px;
}

.saas-feature-showcase-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.saas-feature-showcase-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.saas-media-showcase,
.media-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.saas-media-grid,
.media-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 30px;
}

@media (max-width: 991px) {
  .saas-media-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }
}

.media-main {
  width: 100%;
}

.media-sidebar {
  width: 100%;
}

.video-showcase {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.video-showcase iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.video-player {
  width: 100%;
  border-radius: 12px;
}

.saas-video-showcase {
  background: #1a1a2e;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.saas-video-iframe {
  border-radius: 16px;
}

.saas-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  gap: 15px;
}

.saas-gallery-preview {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.saas-gallery-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.saas-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.saas-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.saas-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.saas-gallery-item:hover .saas-gallery-image {
  transform: scale(1.1);
}

.saas-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(204, 24, 31, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.saas-gallery-item:hover .saas-gallery-overlay {
  opacity: 1;
}

.saas-gallery-more {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.saas-gallery-more-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
}

.saas-gallery-more-content span {
  font-size: 32px;
  font-weight: 700;
}

.saas-gallery-more-content p {
  font-size: 13px;
  margin: 5px 0 0;
  opacity: 0.8;
}

.saas-gallery-empty {
  text-align: center;
  padding: 40px;
  color: #888;
}

/* Asymmetric Gallery Grid */
.gallery-grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 140px 100px 100px;
  gap: 10px;
  height: 100%;
}

.gallery-grid-asymmetric .div1 {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
}

.gallery-grid-asymmetric .div2 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.gallery-grid-asymmetric .div3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.gallery-grid-asymmetric .div4 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.gallery-grid-asymmetric .div7 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.gallery-grid-asymmetric .gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid-asymmetric .gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-grid-asymmetric .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid-asymmetric .gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

.gallery-grid-asymmetric .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204, 24, 31, 0.85) 0%, rgba(150, 20, 25, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.gallery-grid-asymmetric .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-grid-asymmetric .gallery-more {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid-asymmetric .gallery-more-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  text-align: center;
}

.gallery-grid-asymmetric .gallery-more-content span {
  font-size: 24px;
  font-weight: 700;
}

.gallery-grid-asymmetric .gallery-more-content p {
  font-size: 11px;
  margin: 3px 0 0;
  opacity: 0.8;
}

.gallery-preview {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gallery-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.gallery-grid-asymmetric {
  flex: 1;
}

.gallery-empty {
  text-align: center;
  padding: 40px;
  color: #888;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.saas-reviews-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.saas-reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.saas-reviews-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #CC181F;
  margin-bottom: 10px;
}

.saas-reviews-rating {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.saas-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.saas-review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.saas-review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.saas-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.saas-review-author-name {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.saas-review-author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.saas-review-quote {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.saas-review-rating {
  color: #f5af19;
  font-size: 16px;
}

.saas-review-rating i {
  margin-right: 3px;
}

.saas-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #CC181F 0%, #a01418 100%);
}

.saas-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.saas-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.saas-cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.7;
}

.saas-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.saas-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.saas-cta-btn-primary {
  background: #fff;
  color: #CC181F;
}

.saas-cta-btn-primary:hover {
  background: #1a1a2e;
  color: #fff;
}

.saas-cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.saas-cta-btn-secondary:hover {
  background: #fff;
  color: #CC181F;
}

.saas-empty-state {
  padding: 100px 0;
  text-align: center;
  background: #f8f9fa;
}

.saas-no-data {
  color: #888;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

.gallery-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.gallery-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
}

.gallery-modal-close:hover {
  color: #CC181F;
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery-modal-nav:hover {
  background: #CC181F;
}

.gallery-modal-prev {
  left: -80px;
}

.gallery-modal-next {
  right: -80px;
}

.gallery-modal-image-container {
  text-align: center;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

.gallery-modal-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 16px;
}

.gallery-modal-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in-delay-1 {
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-delay-3 {
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.animate-scale-in {
  animation: scaleIn 0.8s ease forwards;
}

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

.animate-slide-up {
  animation: slideInUp 0.6s ease forwards;
}

.animate-slide-up-delay {
  animation: slideInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .saas-hero-title {
    font-size: 32px;
  }
  
  .saas-hero-banner-image {
    height: 250px;
  }
  
  .saas-parallax-title {
    font-size: 28px;
  }
  
  .saas-reviews-rating {
    font-size: 28px;
  }
  
  .saas-cta-title {
    font-size: 28px;
  }
  
  .gallery-modal-prev {
    left: 10px;
  }
  
  .gallery-modal-next {
    right: 10px;
  }
}
