/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
  background: white;
  color: #1b1139;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 634px;
  overflow: hidden;
  padding: 20px 0 20px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-gradient {
  width: 100%;
  height: 100%;
}

/* Hero Content */
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 80px;
  align-items: center;
  z-index: 1;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 100px;
}

.hero-title {
  font-size: 42px;
  font-weight: 600;
  font-family: "Sora", sans-serif !important;
  line-height: 56px;
  color: white;
  margin: 0;
}

.hero-description {
  font-size: 24px !important;
  line-height: 1.5;
  color: #efe7f4;
  margin: 0;
}

.cta-button {
  background: rgba(255, 255, 255, 0.8);
  color: #5b2775;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
  margin-top: 32px;
}

.cta-button:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dashboard Preview */
.dashboard-preview {
  position: relative;
  width: 450px;
  flex-shrink: 0;
}

.dashboard-card {
  background: #fefeff;
  border-radius: 16px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  padding: 32px 24px;
  width: 100%;
}

.dashboard-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.app-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fefeff;
  background: linear-gradient(to bottom, #5b2b74, #a06cd5);
  flex-shrink: 0;
}

.app-info {
  flex: 1;
}

.app-title {
  font-size: 14px;
  font-weight: 600;
  color: black;
  margin-bottom: 4px;
}

.app-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: #737c8b;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #08a542;
  flex-shrink: 0;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #90dfa6;
}

.metrics-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.metric-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 18px 15px;
  flex: 1;
}

.metric-value {
  font-size: 20px;
  font-weight: 600;
  color: #5b2b74;
  margin-bottom: 14px;
}

.metric-value.green {
  color: #00a63e;
}

.metric-label {
  font-size: 12px;
  color: #4a5565;
  margin-bottom: 18px;
  line-height: 1.4;
}

.progress-bar {
  height: 6px;
  background: #eae6ee;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #5b2b74;
  border-radius: 3px;
  transition: width 1.5s ease-out;
}

.progress-fill.green {
  background: #00c950;
}

.recent-analysis {
  background: #f9fafb;
  border-radius: 16px;
  padding: 14px 18px;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  color: black;
  margin-bottom: 11px;
}

.analysis-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.analysis-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.file-name {
  font-size: 12px;
  font-weight: 300;
  color: black;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.badge {
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.badge-verified {
  background: #dcfce7;
  color: #016730;
}

.badge-analysed {
  background: #dbeafe;
  color: #193cb8;
}

.badge-review {
  background: #fef9c2;
  color: #884b00;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: #fefeff;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.time-card {
  left: -40px;
  bottom: -30px;
  width: 123px;
  height: 65px;
  flex-direction: column;
  gap: 8px;
}

.status-card {
  right: -40px;
  top: -20px;
  width: 148px;
  height: 44px;
  gap: 6px;
  border-radius: 8px;
}

.floating-value {
  font-size: 16px;
  font-weight: 600;
  color: #5b2b74;
}

.floating-label {
  font-size: 10px;
  color: #4a5565;
}

/* See How It Works Section */
.how-it-works-section {
  padding: 100px 60px;
  text-align: center;
  background: white;
}

.section-heading {
  font-size: 36px;
  font-weight: 600;
  color: black;
  margin-bottom: 24px;
}

.section-description {
  font-size: 18px;
  line-height: 34px;
  color: black;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.how-it-works-item {
  display: flex;
  align-items: center;
  gap: 60px;
}



.how-it-works-content {
  flex: 1;
  text-align: left;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: white;
  color: #7502AF;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(117, 2, 175, 0.15);
}

.how-it-works-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.how-it-works-description {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin-bottom: 24px;
}

.how-it-works-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7502AF;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.how-it-works-link:hover {
  gap: 12px;
}

.arrow-icon {
  font-size: 20px;
}

.how-it-works-image {
  flex: 1;
}

.how-it-works-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* Image Slider Styles */
.image-slider {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: #2e1839;
	height:700px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(46, 24, 57, 0.95), transparent);
  padding: 60px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-info {
  text-align: center;
  color: white;
}

.slide-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.slide-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  color: #5b2b74;
}

.slider-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Steps Carousel */
.steps-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.steps-carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  width: 200%; /* 2 groups of cards, each taking 100% */
}

.step-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  padding: 30px;
  width: calc((100% - 48px) / 6); /* 6 cards total with 24px gaps */
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}

.step-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(to bottom, #5b2b74, #a06cd5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: #f9fafb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  max-width: 100%;
  max-height: 100%;
}

.step-title {
  font-size: 16px;
  font-weight: 500;
  color: #101828;
  margin-bottom: 10px;
  text-align: left;
}

.step-description {
  font-size: 16px;
  color: #4a5565;
  line-height: 26px;
  margin-bottom: 16px;
  text-align: left;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: linear-gradient(to right, rgba(91, 43, 116, 0.1), rgba(160, 108, 213, 0.1));
  border-radius: 100px;
  font-size: 14px;
  color: #5b2b74;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.step-link:hover {
  transform: translateX(5px);
  background: linear-gradient(to right, rgba(91, 43, 116, 0.15), rgba(160, 108, 213, 0.15));
}

.link-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5b2b74;
}

/* Carousel Navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  color: #5b2b74;
}

.carousel-arrow:hover {
  background: #5b2b74;
  color: white;
  border-color: #5b2b74;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
  background: white;
  color: #5b2b74;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: #5b2b74;
  width: 32px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: #9ca3af;
}

/* Integrations Section */
.integrations-section {
  padding: 100px 60px;
  text-align: center;
  background: #fafafa;
}

.integration-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.filter-btn.active {
  background: linear-gradient(to bottom, #5b2b74, #a06cd5);
  color: white;
  border: none;
}

.filter-btn:not(.active) {
  background: white;
  color: #0a0a0a;
  border: 2px solid #e5e7eb;
}

.filter-btn:hover {
  transform: translateY(-2px);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.integrations-grid[style*="display: none"] {
  opacity: 0;
  transform: translateY(10px);
}

.integration-card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 33px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: left;
}

.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 25px -5px rgba(0, 0, 0, 0.15);
}

.integration-icon {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background: linear-gradient(to bottom, #5b2b74, #a06cd5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0px 10px 15px -3px rgba(91, 43, 116, 0.3);
  transition: transform 0.3s;
}

.integration-card:hover .integration-icon {
  transform: scale(1.1) rotate(5deg);
}

.integration-icon svg {
  width: 32px;
  height: 32px;
}

.integration-title {
  font-size: 16px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 8px;
}

.integration-description {
  font-size: 16px;
  color: #4a5565;
  line-height: 24px;
  margin-bottom: 24px;
}

.integration-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5b2b74;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.integration-link:hover {
  gap: 16px;
}

.integration-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.integration-link:hover svg {
  transform: translateX(4px);
}

/* Transcript Processing Section */
.transcript-processing-section {
  padding: 100px 60px;
  background: white;
}

.transcript-processing-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.transcript-processing-content {
  display: flex;
  gap: 80px;
  margin-top: 60px;
  text-align: left;
  align-items: center;
}

/* Left Side - Tabs */
.processing-tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.processing-tab-item {
  padding: 24px 20px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background: white;
  border-radius: 8px;
}


.processing-tab-item.active {
  border-left-color: #5B2B74;
  background: linear-gradient(to right, rgba(91, 43, 116, 0.08), rgba(91, 43, 116, 0.02));
  box-shadow: 0 4px 20px rgba(91, 43, 116, 0.12);
}

.processing-tab-item .tab-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.processing-tab-item.active .tab-title {
  color: #5B2B74;
}

.processing-tab-item .tab-subtitle {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

.processing-tab-item.active .tab-subtitle {
  color: #5B2B74;
}

/* Right Side - Content Area */
.processing-content-area {
  flex: 1;
  position: relative;
}

.processing-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.processing-tab-content.active {
  display: block;
}

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

.content-header {
  margin-bottom: 20px;
}

.content-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #5B2B74;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.content-title {
  font-size: 32px;
  font-weight: 600;
  color: #5B2B74;
  margin-bottom: 16px;
  line-height: 1.2;
}

.content-description {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin-bottom: 24px;
}

.content-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.content-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 24px;
  color: #333;
  margin-bottom: 16px;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-image {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
}

.content-image img {
  width: 400px;
  height: 300px;
  display: block;
  border-radius: 16px;
}

/* FAQ Section */
.faq-section {
  padding: 100px 60px;
  text-align: center;
  background: white;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  max-width: 1198px;
  margin: 72px auto 37px;
}

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

.faq-item {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 10px 50px -14px rgba(149, 149, 149, 0.15);
  padding: 36px 25px;
  text-align: left;
  transition: all 0.3s;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0px 15px 60px -10px rgba(149, 149, 149, 0.25);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #1b1139;
  opacity: 0.88;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: #1b1139;
  opacity: 0.8;
  border-radius: 20px;
  transition: transform 0.3s;
}

.faq-toggle::before {
  width: 14.66px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 3px;
  height: 14.66px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
  font-size: 14px;
  color: #363049;
  opacity: 0.7;
  line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    padding: 0 40px;
    gap: 60px;
  }

  .video-section,
  .integrations-section,
  .faq-section {
    padding: 80px 40px;
  }

  .step-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .dashboard-preview {
    width: 100%;
    max-width: 450px;
  }

  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-container {
    grid-template-columns: 1fr;
  }

  .transcript-processing-section {
    padding: 80px 40px;
  }

  .transcript-processing-content {
    flex-direction: column;
    gap: 40px;
  }

  .processing-tabs {
    flex: 1;
  }

  .carousel-track {
    width: 600%; /* 6 cards for mobile, each taking 100% */
  }

  .step-card {
    width: calc((100% - 120px) / 6); /* Adjust for mobile */
  }

  .step-card {
    min-width: calc(100% - 0px);
  }

  .steps-carousel-container {
    padding: 0 60px;
  }
}

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

  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-description {
    font-size: 18px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }

  .how-it-works-section,
  .integrations-section,
  .transcript-processing-section,
  .faq-section {
    padding: 60px 24px;
  }

  /* Mobile: Show all content vertically, no tabs */
  .transcript-processing-content {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .processing-tabs {
    display: none;
  }

  .processing-content-area {
    width: 100%;
  }

  .processing-tab-content {
    display: block !important;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
  }

  .processing-tab-content:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* Style content headers as headings with selected tab style */
  .content-header {
    background: linear-gradient(to right, rgba(91, 43, 116, 0.08), rgba(91, 43, 116, 0.02));
    box-shadow: 0 4px 20px rgba(91, 43, 116, 0.12);
    border-left: 3px solid #5B2B74;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
  }

  .content-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .content-title {
    font-size: 22px;
  }

  .content-description {
    font-size: 15px;
    line-height: 24px;
  }

  .content-features li {
    font-size: 14px;
  }

  .how-it-works-item {
    flex-direction: column !important;
    gap: 30px;
    padding: 30px;
  }

  .how-it-works-title {
    font-size: 24px;
  }

  .how-it-works-description {
    font-size: 15px;
    line-height: 24px;
  }

  .image-slider,
  .slider-wrapper,
  .slide img {
    min-height: 400px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .metrics-row {
    flex-direction: column;
  }

  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .steps-carousel-container {
    padding: 0 50px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .processing-tab-item {
    padding: 20px 16px;
  }

  .content-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .cta-button {
    font-size: 16px;
    padding: 12px 32px;
  }

  .dashboard-card {
    padding: 24px 16px;
  }

  .section-heading {
    font-size: 24px;
  }

  .how-it-works-title {
    font-size: 20px;
  }

  .how-it-works-description {
    font-size: 14px;
    line-height: 22px;
  }

  .step-badge {
    font-size: 16px;
    padding: 6px 16px;
  }

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

  .slide-overlay {
    padding: 40px 20px 20px;
  }

  .slide-title {
    font-size: 20px;
  }

  .slide-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
    video.uni-feature-gif {
        margin-top: -50px;
        margin-bottom: -40px;
    }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
    video.uni-feature-gif {
        margin-top: -163px;
        margin-bottom: -106px;
    }
	.how-it-works-container{
		margin-top: -40px;
	}
}
