@media (max-width: 640px) {
  .step-three {
    right: auto !important;
  }
}
/* Make the first feature card span all columns and full width */
.features-grid .feature-card:first-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  background-color: #F2ECF7;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header-wrapper {
  width: 100%;
  padding: 20px 75px;
  z-index: 100;
  box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 991px) {
  .header-wrapper {
    padding: 20px 40px;
  }
}

@media (max-width: 640px) {
  .header-wrapper {
    padding: 15px 20px;
  }
}

.main-header {
  width: 100%;
  max-width: 1770px;
  height: auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-section {
  flex-shrink: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
}

.company-logo {
  width: 241px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  width: 100%;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #222;
  cursor: pointer;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  white-space: nowrap;
  padding: 8px 0;
}

.nav-link:hover {
  color: #210938;
}

.nav-link:focus-visible {
  outline: 2px solid #210938;
  outline-offset: 2px;
}

.dropdown .nav-link {
  color: #210938;
  font-weight: 700;
}

.dropdown-text {
  color: #210938;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.chevron-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.primary-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 12px 24px;
  height: 48px;
  cursor: pointer;
  background-color: #210938;
  border: none;
  color: #fff;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.primary-button:hover {
  background-color: #2d0b4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 9, 56, 0.2);
}

.primary-button:focus-visible {
  outline: 2px solid #210938;
  outline-offset: 2px;
}

.primary-button:active {
  transform: translateY(0);
}

.secondary-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 2px solid #210938;
  padding: 10px 20px;
  height: 48px;
  background: transparent;
  cursor: pointer;
  color: #210938;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.secondary-button:hover {
  background-color: #210938;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 9, 56, 0.15);
}

.secondary-button:focus-visible {
  outline: 2px solid #210938;
  outline-offset: 2px;
}

.secondary-button:active {
  transform: translateY(0);
}

.beta-access-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: none;
  padding: 12px 24px;
  height: 48px;
  background-color: #210938;
  cursor: pointer;
  color: #fff;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.beta-access-button:hover {
  background-color: #2d0b4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 9, 56, 0.2);
}

.beta-access-button:focus-visible {
  outline: 2px solid #210938;
  outline-offset: 2px;
}

.beta-access-button:active {
  transform: translateY(0);
}

.mobile-menu-toggle {
  display: none;
  color: #210938;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: rgba(33, 9, 56, 0.08);
}

.mobile-menu-toggle:active {
  background-color: rgba(33, 9, 56, 0.15);
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid #210938;
  outline-offset: 2px;
}

.main-content {
  flex: 1;
  width: 100%;
  position: relative;
}

.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 75px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 30px 40px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 20px 20px;
  }
}

.hero-title {
  /* position: absolute; */
    width: 770px;
    height: 110px;
    left: calc(50% - 1052px / 2);
    top: 169px;
    font-family: 'Funnel Sans', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    color: #222222;
}

.hero-subtitle {
    position: relative;
    max-width: 680px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #444444;
    margin: 0 auto 40px;
    word-wrap: break-word;
}

.podcast-actions-container {
  border-radius: 10px;
  display: flex;
  max-width: 543px;
  align-items: stretch;
  gap: 26px;
  flex-wrap: nowrap;
  font: 20px Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.primary-button {
  border-radius: 10px;
  background-color: rgba(33, 9, 56, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  justify-content: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: background-color 0.2s ease;
}

.primary-button:hover {
  background-color: rgba(33, 9, 56, 0.9);
}

.primary-button:focus {
  outline: 2px solid rgba(33, 9, 56, 0.5);
  outline-offset: 2px;
}

.secondary-button {
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(33, 9, 56, 1);
  font-weight: 600;
  justify-content: center;
  padding: 16px 32px;
  border: 1px solid rgba(33, 9, 56, 1);
  background-color: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: all 0.2s ease;
}

.secondary-button:hover {
  background-color: rgba(33, 9, 56, 0.05);
}

.secondary-button:focus {
  outline: 2px solid rgba(33, 9, 56, 0.5);
  outline-offset: 2px;
}

.button-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 75px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .video-section {
    padding: 20px 40px;
  }
}

@media (max-width: 640px) {
  .video-section {
    padding: 16px 20px;
  }
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: auto;
  aspect-ratio: 1471 / 827.44;
  border-radius: 21.4521px;
  overflow: hidden;
  margin: 0 auto;
}

.video-thumbnail {
  position: absolute;
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 24.9625px;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.play-button-background {
  position: relative;
  width: 90.3px;
  height: 90.3px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(9.50532px);
  border-radius: 66.5373px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button-background:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.play-icon {
  width: 50.7px;
  height: 50.7px;
  flex-shrink: 0;
}

.main-footer {
  width: 100%;
}

.audience-section {
  max-width: none;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  min-height: 270px;
  margin: 0 auto;
  padding: 0px 20px;
}

@media (max-width: 991px) {
  .audience-section {
    max-width: 991px;
    gap: 30px;
    min-height: auto;
    padding: 30px 40px;
  }
}

@media (max-width: 640px) {
  .audience-section {
    max-width: 640px;
    gap: 20px;
    min-height: auto;
    padding: 20px 20px;
  }
}

.audience-header {
  width: 1051px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 0;
}

@media (max-width: 991px) {
  .audience-header {
    width: 90%;
    max-width: 800px;
  }
}

@media (max-width: 640px) {
  .audience-header {
    width: 95%;
  }
}

.audience-label {
  color: #222;
  text-align: center;
  text-transform: capitalize;
  width: auto;
  font: 700 24px/1.4 "Funnel Sans", sans-serif;
  margin: 0 0 10px 0;
}

@media (max-width: 640px) {
  .audience-label {
    font-size: 18px;
  }
}

.audience-title {
  color: #222;
  text-align: center;
  width: 1051px;
  font: 700 32px/50px "Funnel Sans", sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .audience-title {
    font-size: 36px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .audience-title {
    font-size: 24px;
    line-height: 35px;
    width: 100%;
  }
}

.audience-banner {
  display: flex;
  min-height: 10px;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
 background: linear-gradient(90deg, #33FFF0 0%, #FF00FF 100%);
}

@media (max-width: 640px) {
  .audience-banner {
    min-height: 80px;
  }
}

.audience-text {
  color: #fff;
  text-align: center;
  width: 861px;
  font: 500 18px/75px "Inter", sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .audience-text {
    font-size: 24px;
    width: 90%;
    max-width: 700px;
  }
}

@media (max-width: 640px) {
  .audience-text {
    font-size: 16px;
    line-height: 25px;
    width: 95%;
    padding: 0 10px;
  }
}

.features-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 30px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .features-section {
    padding: 60px 30px;
  }
}

@media (max-width: 640px) {
  .features-section {
    padding: 40px 20px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .section-header {
    margin-bottom: 50px;
  }
}

@media (max-width: 640px) {
  .section-header {
    margin-bottom: 30px;
  }
}

.section-subtitle {
  color: #222;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: -32px;
  font: 700 18px/75px "Funnel Sans", sans-serif;
}

@media (max-width: 991px) {
  .section-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .section-subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
  }
}

.section-title {
  color: #222;
  text-align: center;
  font: 700 34px/50px "Funnel Sans", sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.features-content {
  display: flex;
  gap: 100px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
  flex-wrap: nowrap;
}

@media (max-width: 991px) {
  .features-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  flex-shrink: 1;
  flex: 0 1 600px;
  min-width: 300px;
}

@media (max-width: 991px) {
  .features-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
}

.feature-card {
  width: 305px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  padding: 16px;
  background-color: #fff;
  gap: 8px;
}

@media (max-width: 991px) {
  .feature-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    gap: 20px;
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .feature-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    height: auto;
    min-height: auto;
    gap: 16px;
  }
}

.features-primary-icon-container {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .features-primary-icon-container {
    margin-bottom: 16px;
  }
}

.feature-icon {
  width: 36px;
  height: 36px;
  /* position: absolute; */
  /* left: 0;
  top: 0; */
}

/* Target only the numbered circles in the first features section */
.features-primary-icon-container .feature-icon {
  width: 36px;
  height: 36px;
}

.feature-number {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  font: 500 15px/1 "Funnel Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .feature-number {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
  }
}

.features-primary-card-title {
  color: #000;
  font: 500 17px/1.3 "Funnel Sans", sans-serif;
  margin: 0;
  width: 100%;
  margin-top: 0;
}

@media (max-width: 991px) {
  .features-primary-card-title {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .features-primary-card-title {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 0;
  }
}

.feature-description {
  width: 100%;
  color: #000;
  font: 400 12px/1.6 Roboto, sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .feature-description {
    width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .feature-description {
    width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }
}

.laptop-image-container {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: auto;
  max-width: 700px;
  min-width: 0;
  overflow: visible;
  padding-top: 0;
  margin-left: 0;
}

.laptop-image {
  width: 600px;
  height: 580px;
  border-radius: 40px;
  /* object-fit: contain; */
}

@media (max-width: 991px) {
  .laptop-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 30px;
  }
}

@media (max-width: 640px) {
  .laptop-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }
}

@media (max-width: 1200px) {
  .header-wrapper {
    padding: 16px 50px;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-link,
  .dropdown-text {
    font-size: 14px;
  }

  .primary-button,
  .secondary-button {
    font-size: 14px;
    padding: 10px 18px;
    height: 44px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 48px;
    max-width: 100%;
    width: 90%;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 27px;
    max-width: 100%;
    width: 90%;
  }

  .video-section {
    padding: 40px 20px;
  }

  .play-button-background {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 991px) {
  .podcast-actions-container {
    max-width: 100%;
    padding: 30px 20px;
  }

  .primary-button {
    padding: 16px 20px;
  }

  .secondary-button {
    padding: 16px 20px;
  }

  .header-wrapper {
    padding: 16px 40px;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-link,
  .dropdown-text {
    font-size: 14px;
  }

  .primary-button,
  .secondary-button {
    font-size: 14px;
    padding: 10px 16px;
    height: 44px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 44px;
    max-width: 100%;
    width: 95%;
    height: auto;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
    width: 95%;
  }

  .video-section {
    padding: 30px 20px;
  }

  .play-button-background {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    padding: 12px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .main-header {
    min-height: 56px;
  }

  .company-logo {
    width: 160px;
    max-height: 50px;
  }

  .main-navigation {
    display: none;
  }

  .action-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    order: 3;
  }

  .main-navigation.mobile-active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f4ff 100%);
    z-index: 999;
    padding: 70px 20px 30px;
    overflow-y: auto;
    flex-direction: column;
  }

  .mobile-active .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    height: auto;
    width: 100%;
  }

  .mobile-active .nav-item {
    border-bottom: 1px solid rgba(33, 9, 56, 0.1);
    padding-bottom: 12px;
  }

  .mobile-active .nav-link {
    font-size: 18px;
    padding: 12px 0;
    color: #210938;
  }

  .mobile-active .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .mobile-active .beta-access-button {
    width: 100%;
    font-size: 14px;
    padding: 12px 16px;
  }

  .mobile-active .nav-link,
  .mobile-active .dropdown-text {
    font-size: 18px;
    padding: 12px 0;
  }

  .mobile-active .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
  }

  .mobile-active .primary-button,
  .mobile-active .secondary-button {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }

  .hero-section {
    padding: 30px 20px;
    min-height: auto;
  }

  .hero-title {
    font-size: 28px;
    line-height: 35px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 21px;
    max-width: 100%;
    width: 100%;
  }

  .video-section {
    padding: 30px 20px;
  }

  .play-button-background {
    width: 55px;
    height: 55px;
  }

  .play-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px) {
  .header-wrapper {
    padding: 12px 16px;
  }

  .main-header {
    min-height: 50px;
  }

  .company-logo {
    width: 140px;
    max-height: 45px;
  }

  .main-navigation.mobile-active {
    padding: 65px 16px 20px;
  }

  .hero-section {
    padding: 24px 16px;
  }

  .hero-title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 12px;
    line-height: 18px;
  }

  .video-section {
    padding: 20px 16px;
  }

  .video-container {
    aspect-ratio: 1471 / 827.44;
  }

  .play-button-background {
    width: 48px;
    height: 48px;
  }

  .play-icon {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-button,
  .secondary-button,
  .nav-link,
  .mobile-menu-toggle {
    transition: none;
  }
}

@media (prefers-contrast: high) {
  .nav-link:focus-visible,
  .primary-button:focus-visible,
  .secondary-button:focus-visible,
  .mobile-menu-toggle:focus-visible {
    outline: 3px solid;
    outline-offset: 2px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.features-section-alt {
  display: flex;
  padding: 60px 30px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .features-section-alt {
    padding: 40px 20px;
  }
}

.features-section-alt .features-header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.features-section-alt .main-title {
  color: #222;
  text-align: center;
  font: 700 32px/1.5 "Funnel Sans", sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .features-section-alt .main-title {
    font-size: 40px;
    line-height: 1.4;
  }
}

@media (max-width: 640px) {
  .features-section-alt .main-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.features-grid-wrapper-alt {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.features-section-alt .features-grid-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

@media (max-width: 991px) {
  .features-section-alt .features-grid-alt {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .features-section-alt .features-grid-alt {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
  }
}

.features-section-alt .feature-card-alt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border-radius: 28px;
  overflow: hidden;
  color: #000;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
}

@media (max-width: 991px) {
  .features-section-alt .feature-card-alt {
    padding: 24px;
    height: 100%;
  }
}

@media (max-width: 640px) {
  .features-section-alt .feature-card-alt {
    padding: 20px;
    height: 100%;
  }
}

.features-section-alt .feature-icon-wrapper-alt {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  /* margin-bottom: 60px; */
}

.features-section-alt .feature-icon {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.features-section-alt .feature-icon-alt {
  width: 60px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .features-section-alt .feature-icon {
    width: 100px;
  }

  .features-section-alt .feature-icon-alt {
    width: 50px;
  }
}

.features-section-alt .feature-text-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.features-section-alt .feature-title {
  margin: 0;
  margin-top: 8px;
  font: 700 22px/1.3 "Funnel Sans", sans-serif;
  color: #000;
}

@media (max-width: 991px) {
  .features-section-alt .feature-title {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .features-section-alt .feature-title {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 8px;
  }
}

.features-section-alt .feature-description {
  margin: 0;
  font: 400 16px/1.8 "Roboto", sans-serif;
  color: #000;
}

@media (max-width: 991px) {
  .features-section-alt .feature-description {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  .features-section-alt .feature-description {
    font-size: 14px;
    line-height: 1.6;
  }
}


.features-section-alt .ai-scripts-card .feature-description,
.features-section-alt .analytics-card .feature-description,
.features-section-alt .tools-card .feature-description {
  align-self: stretch;
}

/* Card background colors */
.features-section-alt .content-creation-card {
  background-color: #e7d9ff;
}

.features-section-alt .ai-scripts-card {
  background-color: #fadcf5;
}

.features-section-alt .publishing-card {
  background-color: #ddeaff;
}
.features-section-alt .publishing-card-icon {
  margin-bottom: 10px;
}

.features-section-alt .analytics-card {
  background-color: #fff9e6;
}

.features-section-alt .workflow-card {
  background-color: #e6f5ff;
}

.features-section-alt .tools-card {
  background-color: #e6ffe6;
}

.features-section-alt .features-grid-container-second {
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 991px) {
  .features-section-alt .features-grid-container-second {
    max-width: 100%;
  }
}

.features-section-alt .analytics-card {
  background-color: #fadcf5;
  padding: 32px;
}

.features-section-alt .workflow-card {
  background-color: #ddeaff;
  /* margin-left: 20px; */
  padding: 32px;
}

@media (max-width: 991px) {
  .features-section-alt .workflow-card {
    margin-left: 0;
  }
}

.features-section-alt .tools-card {
  background-color: #e7d9ff;
  /* margin-left: 20px; */
  padding: 32px;
}

@media (max-width: 991px) {
  .features-section-alt .tools-card {
    margin-left: 0;
  }
}

.how-it-works-section {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 30px;
  position: relative;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .how-it-works-section {
    max-width: 1400px;
    padding: 40px 30px;
  }
}

@media (max-width: 640px) {
  .how-it-works-section {
    max-width: 100%;
    padding: 30px 20px;
  }
}

.how-section-header {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 640px) {
  .how-section-header {
    margin-bottom: 40px;
  }
}

.how-section-subtitle {
  color: #222;
  text-align: center;
  font: 700 18px/0px "Funnel Sans", sans-serif;
  margin: 0 0 20px 0;
}

@media (max-width: 991px) {
  .how-section-subtitle {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (max-width: 640px) {
  .how-section-subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}

.how-section-title {
  color: #222;
  text-align: center;
  font: 700 28px/20px "Funnel Sans", sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .how-section-title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 640px) {
  .how-section-title {
    font-size: 28px;
    line-height: 36px;
  }
}

.steps-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.steps-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  /* gap: 30px; */
  width: 100%;
  /* max-width: 1200px; */
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .steps-container {
    flex-direction: column;
    align-items: stretch;
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .steps-container {
    gap: 40px;
  }
}

.step-card {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .step-card {
    max-width: none;
    width: 100%;
  }
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.step-image-wrapper {
  width: 220px;
  height: 220px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .step-image-wrapper {
    max-width: 100%;
    margin-bottom: 25px;
  }
}

@media (max-width: 640px) {
  .step-image-wrapper {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.step-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step-number {
  color: #4E0F8A;
  margin-bottom: 12px;
  font: 700 44px/44px "Funnel Sans", sans-serif;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .step-number {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .step-number {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 8px;
  }
}

.step-title {
  color: #222;
  text-align: center;
  margin: 0 0 16px 0;
  font: 700 28px/32px "Funnel Sans", sans-serif;
  width: 100%;
}

@media (max-width: 991px) {
  .step-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .step-title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 12px;
  }
}

.step-description {
  color: #555;
  text-align: center;
  margin: 12px 0 0 0;
  padding: 0;
  font: 400 16px/24px "Inter", sans-serif;
  width: 100%;
  letter-spacing: 0.2px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.how-it-works-section-step-description {
  color: #555;
  text-align: center;
  margin: 12px 0 0 0;
  padding: 0;
  font: 400 16px/24px "Inter", sans-serif;
  width: 100%;
  letter-spacing: 0.2px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.transformation-container-step-description {
  color: #555;
  text-align: right;
  margin: 12px 0 0 0;
  padding: 0;
  font: 400 18px/20px "Inter", sans-serif;
  width: 100%;
  letter-spacing: 0.2px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 991px) {
  .step-description {
    font-size: 15px;
    line-height: 22px;
  }
  .how-it-works-section-step-description {
    font-size: 15px;
    line-height: 22px;
  }
  .transformation-container-step-description {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 640px) {
  .step-description {
    font-size: 14px;
    line-height: 20px;
  }
  .how-it-works-section-step-description {
    font-size: 14px;
    line-height: 20px;
  }
  .transformation-container-step-description {
    font-size: 14px;
    line-height: 20px;
  }
}

.step-connector {
  flex: 0 0 auto;
  width: 165px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.connector-arrow {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 991px) {
  .step-connector {
    display: none;
  }
}

.use-cases-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #222;
  text-align: center;
  padding: 0px 30px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 991px) {
  .use-cases-section {
    padding: 60px 30px;
  }
}

@media (max-width: 640px) {
  .use-cases-section {
    padding: 40px 20px;
  }
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.slider-container > div:nth-child(2) {
  width: calc(100% - 116px);
  overflow: hidden;
  display: flex;
  flex: 1;
  min-width: 0;
}

.slider-nav {
  background-color: #4E0F8A;
  border: 2px solid #4E0F8A;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
  font-size: inherit;
  box-shadow: 0 2px 8px rgba(78, 15, 138, 0.3);
}

.slider-nav svg path {
  stroke: #fff;
}

.slider-nav:hover:not(:disabled) {
  background-color: #6b1bb8;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(78, 15, 138, 0.4);
}

.slider-nav:hover:not(:disabled) svg path {
  stroke: #fff;
}

.slider-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #ccc;
  border-color: #ccc;
}

.slider-prev,
.slider-next {
  position: relative;
  z-index: 10;
}

.use-cases-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

.use-cases-label {
  font: 500 18px "Funnel Sans", sans-serif;
  margin: 0;
  color: #222;
}

.use-cases-heading {
  margin: 4px 0 0 0;
  width: 75%;
  font: 700 32px / 34px "Funnel Sans", sans-serif;
  color: #222;
}

.use-cases-grid {
  display: flex;
  align-items: center;
  gap: 44px;
  color: #000;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  width: 100%;
  padding: 0;
}

/* Hide scrollbar while keeping scroll functionality */
.use-cases-grid::-webkit-scrollbar {
  display: none;
}

.use-cases-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.use-case-card {
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 330px;
    min-width: 330px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    height: 450px;
    padding: 24px;
    gap: 16px;
}



.card-title {
  font: 500 22px/28px "Funnel Sans", sans-serif;
  margin: 0;
  color: #000;
  order: 1;
}

.highlight-text {
  color: #4E1980;
  font-weight: 700;
}

.card-description {
  margin: 0;
  font: 400 16px/24px "Roboto", sans-serif;
  color: #000;
  flex-grow: 1;
  order: 2;
}

.card-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  align-self: stretch;
  height: auto;
  flex-grow: 1;
  order: 3;
  min-height: 200px;
  border-radius: 8px;
}



.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #210938;
  width: 32px;
  border-radius: 6px;
}

.slider-dot:hover {
  background-color: #210938;
}

@media (max-width: 991px) {
  .use-cases-section {
    padding: 40px 20px;
  }

  .use-cases-heading {
    font-size: 40px;
    line-height: 48px;
  }

  .use-cases-header {
    margin-bottom: 40px;
  }

  .slider-container {
    gap: 16px;
  }

  .slider-container > div:nth-child(2) {
    width: calc(100% - 96px);
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }

  .use-case-card {
    width: 280px;
    min-width: 280px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .use-cases-section {
    padding: 30px 15px;
  }

  .slider-container {
    gap: 12px;
  }

  .slider-container > div:nth-child(2) {
    width: calc(100% - 84px);
  }

  .slider-nav {
    width: 36px;
    height: 36px;
  }

  .slider-nav svg {
    width: 20px;
    height: 20px;
  }

  .use-case-card {
    width: 280px;
    min-width: 280px;
    height: auto;
    padding: 20px;
    gap: 12px;
  }

  .card-title {
    font-size: 22px;
    line-height: 28px;
  }

  .card-description {
    font-size: 14px;
    line-height: 20px;
  }

  .card-image {
    height: 150px;
    min-height: 150px;
  }

  .slider-dots {
    margin-top: 30px;
    gap: 10px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 28px;
  }
}

@media (max-width: 640px) {
  .use-cases-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .use-cases-section {
    padding: 30px 12px;
  }

  .slider-container {
    gap: 8px;
  }

  .slider-container > div:nth-child(2) {
    width: calc(100% - 80px);
  }

  .slider-nav {
    width: 32px;
    height: 32px;
  }

  .slider-nav svg {
    width: 18px;
    height: 18px;
  }

  .use-case-card {
    width: 240px;
    min-width: 240px;
    padding: 16px;
    gap: 10px;
  }

  .card-title {
    font-size: 18px;
    line-height: 24px;
  }

  .card-description {
    font-size: 13px;
    line-height: 18px;
  }

  .card-image {
    height: 120px;
    min-height: 120px;
  }
}

/* Workflow Section Styles */
.workflow-section {
  max-width: 1400px;
  width: 100%;
  position: relative;
  padding: 0px 30px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .workflow-section {
    padding: 60px 30px;
  }
}

@media (max-width: 640px) {
  .workflow-section {
    padding: 40px 20px;
  }
}

.workflow-header {
  width: 851px;
  max-width: 100%;
  position: relative;
  margin-bottom: 23px;
}

.workflow-subtitle {
  color: #222;
  text-transform: capitalize;
  font: 500 16px/24px "Funnel Sans", sans-serif;
  margin: 0 0 2px 0;
}

.workflow-title {
  width: 100%;
  color: #222;
  font: 700 48px/56px "Funnel Sans", sans-serif;
  margin: 0;
}

.workflow-description {
    max-width: 450px;
    color: #222;
    margin-bottom: 23px;
    font: 400 15px / 24px "Roboto", sans-serif;
}

.get-started-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  width: 114px;
  height: 42px;
  margin-bottom: 29px;
  cursor: pointer;
  background-color: #210938;
  border: none;
  color: #fff;
  font: 700 18px "Roboto", sans-serif;
  transition: background-color 0.3s ease;
}

.get-started-button:hover {
  background-color: #3d0c6b;
}

.workflow-visualization {
  width: 100%;
  height: 360px;
  /* position: relative; */
  overflow: hidden;
  box-sizing: border-box;
}

.workflow-paths {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.main-path {
  width: 100%;
  height: auto;
  stroke-width: 4px;
  stroke: #4e0f8a;
  position: absolute;
  left: 0;
  top: 30px;
}

.shadow-path {
  width: 100%;
  height: auto;
  stroke-width: 27px;
  stroke: #000;
  opacity: 0.09;
  filter: blur(25px);
  position: absolute;
  left: 17px;
  top: 45px;
}

.workflow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  /* position: relative; */
  width: 100%;
  height: 100%;
}

.workflow-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-circle-container {
  position: relative;
  flex-shrink: 0;
}

.step-circle {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

/* Ensure .step-number stays behind and does not overlap text */
.step-number {
  z-index: 2;
}

/* For each step, adjust .step-description top padding for clarity */
/* .step-one .step-description {
  padding-top: 20px;
} */
/* .step-two .step-description {
  padding-top: 100px;
} */
.step-three .step-description {
  /* padding-top: 110px; */
  display: block;
}

.step-number {
  color: #999;
  opacity: 0.3;
  font: 700 44px/44px "Funnel Sans", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  z-index: 2;
  letter-spacing: -0.5px;
}

.step-description {
  width: 220px;
  font: 400 13px/18px "Roboto", sans-serif;
  color: #333;
  text-align: left;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.step-one {
  left: 13%;
  top: 265px;
  width: 140px;
}

.step-one .step-number {
  /* top: 55%; */
  margin-top: 35px;
}

.step-one .step-description {
  width: 230px;
  /* padding-top: 80px; */
  padding-bottom: 0;
}

.step-two {
  left: 45%;
  transform: translateX(-50%);
  top: 190px;
  width: 200px;
}

.step-two .step-number {
  /* top: 40%; */
  margin-top: 24px;
  margin-left: auto;
}

.step-two .step-description {
  width: 300px;
  /* padding-top: 100px; */
  padding-bottom: 0;
}

.step-three {
  right: 20%;
  left: auto;
  top: 0px;
  width: 240px;
}

.step-three .step-number {
  /* top: 35%; */
  margin-top: 20px;
  margin-left: auto;
}

.step-three .step-description {
  width: 350px;
  padding-top: 25px;
  padding-bottom: 0;
  padding-left: 115px;
}

@media (max-width: 991px) {
  .workflow-section {
    max-width: 991px;
    padding: 40px 15px;
  }

  .workflow-header {
    width: 100%;
  }

  .workflow-title {
    width: 100%;
    font-size: 40px;
    line-height: 48px;
  }

  .workflow-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .workflow-visualization {
    height: 500px;
    overflow-x: auto;
  }

  .step-one {
    left: 180px;
    top: 350px;
  }

  .step-two {
    left: 600px;
    top: 220px;
  }

  .step-three {
    left: 1000px;
    top: 0;
  }

  .step-number {
    font-size: 120px;
  }

  .step-description {
    font-size: 20px;
    line-height: 28px;
  }
  .how-it-works-section-step-description {
    font-size: 20px;
    line-height: 28px;
  }
  .transformation-container-step-description {
    font-size: 20px;
    line-height: 18px;
  }

  .step-two .step-description {
    font-size: 20px;
    line-height: 28px;
    width: 280px;
  }

  .step-three .step-description {
    font-size: 20px;
    line-height: 28px;
    width: 260px;
  }
}

@media (max-width: 768px) {
  .workflow-section {
    padding: 30px 15px;
  }

  .workflow-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .workflow-title {
    font-size: 32px;
    line-height: 40px;
  }

  .workflow-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .get-started-button {
    width: 150px;
    height: 48px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .workflow-visualization {
    height: 800px;
  }
}

@media (max-width: 640px) {
  .workflow-section {
    max-width: 640px;
    padding: 20px 12px;
  }

  .workflow-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .workflow-title {
    font-size: 28px;
    line-height: 32px;
  }

  .workflow-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .get-started-button {
    width: 140px;
    height: 45px;
    font-size: 16px;
  }

  .workflow-visualization {
    height: auto;
    overflow: visible;
  }

  .workflow-paths {
    display: none;
  }

  .workflow-steps {
    display: flex;
    flex-direction: column;
    /* position: relative; */
    height: auto;
  }

  .workflow-step {
    position: relative !important;
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
    top: auto !important;
    left: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .step-one,
  .step-two,
  .step-three {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    transform: none !important;
  }

  .step-circle-container {
    display: none;
  }

  .step-number {
    position: relative !important;
    font-size: 48px;
    text-align: center;
    margin: 10px auto 8px;
    width: 100%;
    opacity: 1;
    transform: none;
    display: block;
    color: #4E0F8A;
    font-weight: 700;
    line-height: 1;
    left: 0 !important;
    top: auto !important;
  }

  .step-one .step-number {
    position: relative !important;
    font-size: 48px;
    margin: 10px auto 8px;
    left: 0 !important;
    top: auto !important;
  }

  .step-two .step-number {
    position: relative !important;
    font-size: 48px;
    margin: 10px auto 8px;
    left: 0 !important;
  }

  .step-three .step-number {
    position: relative !important;
    font-size: 48px;
    margin: 10px auto 8px;
    left: 0 !important;
  }

  .step-description {
    position: relative !important;
    font-size: 15px;
    line-height: 22px;
    width: 95%;
    max-width: 280px;
    margin: 0 auto;
    text-align: left;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .step-one .step-description {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .step-two .step-description {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .step-three .step-description {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .how-it-works-section-step-description {
    position: relative !important;
    font-size: 15px;
    line-height: 22px;
    width: 95%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }

  .transformation-container-step-description {
    position: relative !important;
    font-size: 15px;
    line-height: 22px;
    width: 95%;
    max-width: 280px;
    margin: 0 auto;
    text-align: right;
  }

  .step-two .step-description {
    position: relative !important;
    font-size: 15px;
    line-height: 22px;
    width: 95%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }

  .step-three .step-description {
    position: relative !important;
    font-size: 15px;
    line-height: 22px;
    width: 95%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }

  .main-path,
  .shadow-path {
    display: none;
  }

  .step-circle {
    width: 70px;
    height: 70px;
  }
}

/* Transformation Section Styles */
.transformation-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 52px; */
  width: 90%;
  padding: 0px 30px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .transformation-container {
    padding: 60px 30px;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .transformation-container {
    padding: 40px 20px;
    gap: 30px;
  }
}

.transformation-header {
  width: 100%;
  max-width: 885px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 30px auto;
}

.transformation-subtitle {
  color: #222;
  text-align: center;
  text-transform: capitalize;
  font: 500 18px/35px "Funnel Sans", sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .transformation-subtitle {
    font-size: 20px;
    line-height: 60px;
  }
}

@media (max-width: 640px) {
  .transformation-subtitle {
    font-size: 18px;
    line-height: 50px;
  }
}

.transformation-title {
  color: #222;
  text-align: center;
  font: 700 32px/30px "Funnel Sans", sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .transformation-title {
    font-size: 36px;
    line-height: 40px;
  }
}

@media (max-width: 640px) {
  .transformation-title {
    font-size: 28px;
    line-height: 32px;
  }
}

.transformation-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1520px;
  position: relative;
  gap: 100px;
}

.transformation-connectors {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.before-section,
.after-section {
  position: relative;
  z-index: 1;
}

.diagram-section {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .transformation-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .transformation-connectors {
    display: none;
  }
}

@media (max-width: 640px) {
  .transformation-content {
    gap: 25px;
  }
}

.before-section,
.after-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 400px;
}

@media (max-width: 991px) {
  .before-section,
  .after-section {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .before-section,
  .after-section {
    max-width: 100%;
  }
}

.transformation-step {
  display: flex;
  align-items: center;
  height: 85px;
  border-radius: 68px 0 0 68px;
  position: relative;
  justify-content: flex-end;
  background-color: #FFFFFF;
  padding: 0 40px;
}

.transformation-step-after {
  justify-content: flex-start;
  background-color: #FFFFFF;
  border-radius: 0 68px 68px 0;
  padding: 0 40px;
}

@media (max-width: 991px) {
  .transformation-step {
    border-radius: 20px;
    height: auto;
    min-height: 80px;
    padding: 20px;
    justify-content: flex-start;
    flex-direction: row-reverse;
  }

  .transformation-step-after {
    border-radius: 20px;
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .transformation-step {
    min-height: 100px;
    padding: 15px;
    border-radius: 15px;
    justify-content: center;
    /* flex-direction: column; */
    position: relative;
  }

  .transformation-step-after {
    border-radius: 15px;
    /* flex-direction: column; */
    position: relative;
  }

  .step-arrow-container {
    display: none;
  }

  .step-arrow-container::after {
    display: none;
  }

  .transformation-container-step-number {
    margin: 0;
    text-align: center;
  }

  .before-section .transformation-container-step-description,
  .after-section .transformation-container-step-description {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    text-align: center;
  }
}

.step-arrow-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 10px;
}

.step-arrow-container::after {
  content: '';
  position: absolute;
  top: -30.5px;
  width: 5px;
  height: 85px;
}

.before-section .step-arrow-container::after {
  right: 26%;
  background-color: #F45B5A;
}

.after-section .step-arrow-container::after {
  left: 26%;
  background-color: #9AD587;
}

.step-arrow-red {
  right: 76px;
  color: #F45B5A;
}

.step-arrow-green {
  left: 76px;
  color: #9AD587;
}

@media (max-width: 991px) {
  .step-arrow-container {
    position: static;
    transform: none;
    margin: 0 10px;
  }
}

.step-arrow {
  width: 50px;
  height: 20px;
}

.step-number {
  text-align: center;
  width: 40px;
  /* height: 68px; */
  /* position: absolute; */
  top: 90%;
  transform: translateY(-50%);
  font: 700 120px / 25px "Funnel Sans", sans-serif;
  color: #000;
  margin: 0 10px;
  flex-shrink: 0;
}
.transformation-container-step-number {
    text-align: center;
    width: 40px;
    height: 68px;
    right: 2%;
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    font: 700 22px / 25px "Funnel Sans", sans-serif;
    color: #F45B5A;
    font-weight: bold;
    margin: 0 10px;
    flex-shrink: 0;
}

.transformation-container-step-number-right {
    text-align: center;
    width: 40px;
    height: 68px;
    left: 2%;
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    font: 700 22px / 25px "Funnel Sans", sans-serif;
    color: #9AD587;
    font-weight: bold;
    margin: 0 10px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
  .step-number {
    position: static;
    transform: none;
    margin: 0 10px;
    width: auto;
    height: auto;
  }
  .transformation-container-step-number {
    position: static;
    transform: none;
    margin: 0 10px;
    width: auto;
    height: auto;
  }
  .transformation-container-step-number-right {
    position: static;
    transform: none;
    margin: 0 10px;
    width: auto;
    height: auto;
  }
}

@media (max-width: 640px) {
  .step-number {
    font-size: 28px;
    margin: 0 8px;
  }
  .transformation-container-step-number {
    font-size: 28px;
    margin: 0 8px;
  }
  .transformation-container-step-number-right {
    font-size: 28px;
    margin: 0 8px;
  }
}

.step-description {
  color: #000;
  /* padding: 23px 0; */
  font: 400 18px/28px Roboto, sans-serif;
  margin: 0;
}
.how-it-works-section-step-description {
  color: #000;
  width: 250px;
  padding: 0px 0;
  font: 400 18px/28px Roboto, sans-serif;
  margin: 0;
}
.transformation-container-step-description {
  color: #000;
  width: 305px;
  padding: 23px 0;
  font: 400 18px/24px Roboto, sans-serif;
}

.before-section .transformation-container-step-description {
  margin-right: 16%;
}

.after-section .transformation-container-step-description {
  margin-left: 16%;
  text-align: left;
}

@media (max-width: 991px) {
  .step-description {
    width: auto;
    flex: 1;
    padding: 0;
    margin: 0 15px;
    font-size: 18px;
    line-height: 28px;
  }
  .how-it-works-section-step-description {
    width: auto;
    flex: 1;
    padding: 0;
    margin: 0 15px;
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 640px) {
  .step-description {
    font-size: 16px;
    line-height: 24px;
    margin: 0 10px;
  }
  .how-it-works-section-step-description {
    font-size: 16px;
    line-height: 24px;
    margin: 0 10px;
  }
}

.diagram-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
}

.circle-diagram {
  width: 150px;
  height: 150px;
}

@media (max-width: 991px) {
  .circle-diagram {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 640px) {
  .circle-diagram {
    width: 160px;
    height: 160px;
  }
}

/* Pricing Section Styles */
.pricing-container {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  font-family: "Funnel Sans", -apple-system, Roboto, Helvetica, sans-serif;
  padding: 60px 30px;
  max-width: 1400px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .pricing-container {
    padding: 60px 30px;
  }
}

@media (max-width: 640px) {
  .pricing-container {
    padding: 40px 20px;
  }
}

.pricing-header {
  width: 510px;
  height: auto;
  position: relative;
  /* margin-bottom: 60px; */
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .pricing-header {
    width: 100%;
  }
}

.pricing-subtitle {
  color: #222;
  text-align: center;
  width: 510px;
  height: auto;
  font: 700 18px/75px "Funnel Sans", -apple-system, Roboto, Helvetica, sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .pricing-subtitle {
    width: 100%;
    font-size: 22px;
    line-height: 65px;
  }
}

@media (max-width: 640px) {
  .pricing-subtitle {
    font-size: 18px;
    line-height: 50px;
  }
}

.pricing-title {
  color: #222;
  text-align: center;
  width: 356px;
  height: auto;
  margin: 0 auto;
  position: relative;
  top: -32px;
  font: 700 24px/50px "Funnel Sans", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
  .pricing-title {
    width: 100%;
    font-size: 42px;
    line-height: 65px;
  }
}

@media (max-width: 640px) {
  .pricing-title {
    font-size: 32px;
    line-height: 50px;
    top: -20px;
  }
}

.pricing-card-wrapper {
  width: 330px;
  height: auto;
  position: relative;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

@media (max-width: 991px) {
  .pricing-card-wrapper {
    width: 100%;
    max-width: 362px;
  }
}

@media (max-width: 640px) {
  .pricing-card-wrapper {
    height: auto;
  }
}

.pricing-card {
  width: 290px;
  height: auto;
  /* min-height: 500px; */
  border-radius: 10px;
  border: 1px solid #fff;
  background: linear-gradient(135deg, #2d1b69 0%, #1a0f3a 100%);
  position: relative;
  margin-top: 26px;
}

@media (max-width: 991px) {
  .pricing-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pricing-card {
    min-height: 500px;
  }
}

.limited-offer-badge {
  width: 160px;
  height: 36px;
  border-radius: 35px;
  position: absolute;
  left: 77px;
  top: -26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #33fff0;
}

@media (max-width: 640px) {
  .limited-offer-badge {
    width: 180px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.badge-text {
  color: #131115;
  text-align: center;
  text-transform: capitalize;
  font: 700 14px "Funnel Sans", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 640px) {
  .badge-text {
    font-size: 16px;
  }
}

.pricing-content {
  padding: 28px;
}

@media (max-width: 991px) {
  .pricing-content {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .pricing-content {
    padding: 20px;
  }
}

.plan-name {
  color: #ff00ff;
  margin: 0 0 8px 0;
  font: 700 18px/110% "Funnel Sans", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 640px) {
  .plan-name {
    font-size: 18px;
  }
}

.price {
  color: #fff;
  margin-bottom: 6px;
  font: 700 28px/110% "Roboto", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 640px) {
  .price {
    font-size: 28px;
  }
}

.price-description {
  color: #fff;
  /* width: 273px; */
  /* margin: 0 0 32px 0; */
  font: 400 14px/141% "Roboto", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 640px) {
  .price-description {
    font-size: 14px;
    line-height: 130%;
    width: 100%;
  }
}

.features-title {
  color: #fff;
  margin: 0 0 10px 0;
  font: 700 18px/32px "Funnel Sans", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 640px) {
  .features-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.features-list {
  margin: 0 0 25px 0;
  padding: 0;
  list-style: none;
}

.feature-item {
  color: #fff;
  margin-bottom: 12px;
  width: 306px;
  font: 400 13px/18px "Roboto", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
  .feature-item {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .feature-item {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}

.cta-button {
  display: flex;
  width: 220px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  height: 40px;
  background: linear-gradient(90deg, #33fff0 -19.72%, #ff00ff 99.99%);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

@media (max-width: 991px) {
  .cta-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cta-button {
    height: 50px;
    margin-top: 20px;
  }
}

.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.cta-text {
  color: #fff;
  font: 700 18px "Roboto", -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 640px) {
  .cta-text {
    font-size: 18px;
  }
}

/* FAQ Section Styles */
.faq-container {
  border-radius: 10px;
  display: flex;
  padding: 60px 30px;
  flex-direction: column;
  align-items: stretch;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  color: rgba(34, 34, 34, 1);
  max-width: 1400px;
  margin: 0 auto;
  width: 70%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .faq-container {
    padding: 60px 30px;
  }
}

@media (max-width: 640px) {
  .faq-container {
    padding: 40px 20px;
  }
}

.faq-subtitle {
  color: #222;
  text-transform: capitalize;
  font: 500 14px/12px "Funnel Sans", sans-serif;
  margin: 0 0 4px 0;
  text-align: center;
}

.faq-title {
  text-align: center;
  align-self: center;
  font: 700 28px/2 Funnel Sans, -apple-system, Roboto, Helvetica, sans-serif;
  margin: 0;
}

@media (max-width: 991px) {
  .faq-title {
    max-width: 100%;
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .faq-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.faq-item {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  padding: 10px 24px;
}

.faq-item:first-of-type {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .faq-item {
    max-width: 100%;
    padding: 20px;
  }

  .faq-item:first-of-type {
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .faq-item {
    padding: 18px;
    margin-top: 16px;
  }

  .faq-item:first-of-type {
    margin-top: 40px;
  }
}

.faq-question-header {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.faq-question-header::-webkit-details-marker {
  display: none;
}

@media (max-width: 991px) {
  .faq-question-header {
    max-width: 100%;
  }
}

.faq-question {
  margin: auto 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 3;
  color: #222;
}

.faq-item:not(.faq-item-expanded) .faq-question {
  font-weight: 500;
}

@media (max-width: 991px) {
  .faq-question {
    max-width: 100%;
    font-size: 20px;
    line-height: 2;
  }
}

@media (max-width: 640px) {
  .faq-question {
    font-size: 18px;
    line-height: 1.6;
  }
}

.faq-toggle-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 42px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .faq-toggle-icon {
    width: 36px;
  }
}

.faq-answer-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.faq-divider {
  aspect-ratio: 1000;
  width: 100%;
  height: 2px;
  stroke-width: 1px;
  stroke: #33fff0;
  background: linear-gradient(90deg, #33FFF0 0%, #FF00FF 100%);
  /* margin-top: 19px; */
}

@media (max-width: 991px) {
  .faq-divider {
    max-width: 100%;
  }
}

.faq-answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  align-self: start;
  margin-top: 5px;
  margin-bottom: 0;
  color: #222;
}

@media (max-width: 991px) {
  .faq-answer {
    max-width: 100%;
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 640px) {
  .faq-answer {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }
}

/* Enhanced interactive behavior */
details[open] .faq-toggle-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.faq-toggle-icon {
  transition: transform 0.3s ease;
}

details summary {
  outline: none;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

/* Footer Section Styles */
.main-footer {
  width: 100%;
  max-width: 1400px;
  height: auto;
  position: relative;
  padding: 60px 30px;
  box-sizing: border-box;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .main-footer {
    padding: 40px 30px;
  }
}

@media (max-width: 640px) {
  .main-footer {
    padding: 30px 20px;
  }
}

.footer-top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  position: relative;
}

@media (max-width: 991px) {
  .footer-top-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
  }
}

.footer-logo {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .footer-logo {
    margin-bottom: 10px;
  }
}

.footer-navigation {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 991px) {
  .footer-navigation {
    gap: 20px;
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .footer-navigation {
    gap: 16px;
  }
}

.footer-navigation .nav-link {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-navigation .nav-link:hover {
  color: #210938;
}

@media (max-width: 640px) {
  .footer-navigation .nav-link {
    font-size: 18px;
  }
}

.contact-email {
  color: #222;
  text-align: right;
  font-weight: 400;
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .contact-email {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .contact-email {
    font-size: 18px;
  }
}

.footer-divider {
  width: 100%;
  position: relative;
  margin: 20px 0 40px 0;
}

.divider-line {
  width: 100%;
  height: 1px;
  stroke: #210938;
}

.footer-bottom-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}

@media (max-width: 991px) {
  .footer-bottom-section {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

.newsletter-section {
  width: 617px;
  height: auto;
  position: relative;
}

@media (max-width: 991px) {
  .newsletter-section {
    width: 100%;
    max-width: 500px;
  }
}

.newsletter-title {
  color: #222;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 23px 0;
}

@media (max-width: 640px) {
  .newsletter-title {
    font-size: 18px;
  }
}

.newsletter-form {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 991px) {
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
}

.email-input-container {
  display: flex;
  width: 320px;
  height: 40px;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  position: relative;
}

@media (max-width: 991px) {
  .email-input-container {
    width: 100%;
  }
}

.email-input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 20px;
  color: #767676;
  font-weight: 400;
  font-size: 20px;
  font-family: inherit;
  border-radius: 10px;
  outline: none;
}

.email-input::placeholder {
  color: #767676;
}

.email-input:focus {
  background-color: #fafafa;
}

@media (max-width: 640px) {
  .email-input {
    font-size: 18px;
  }
}

.subscribe-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  width: 145px;
  height: 40px;
  background-color: #210938;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.subscribe-button:hover {
  background-color: #2d0b4a;
}

@media (max-width: 991px) {
  .subscribe-button {
    width: 100%;
  }
}

.subscribe-button span {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 640px) {
  .subscribe-button span {
    font-size: 18px;
  }
}

.social-section {
  width: auto;
  height: auto;
  position: relative;
}

@media (max-width: 991px) {
  .social-section {
    width: 100%;
  }
}

.social-title {
  color: #222;
  text-align: right;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 23px 0;
}

@media (max-width: 991px) {
  .social-title {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .social-title {
    font-size: 18px;
  }
}

.social-links {
  display: flex;
  gap: 12px;
}

@media (max-width: 991px) {
  .social-links {
    justify-content: center;
  }
}

.social-link {
  width: 48px;
  height: 48px;
  position: relative;
  display: block;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-circle {
  width: 48px;
  height: 48px;
  position: absolute;
  left: 0;
  top: 0;
}

.social-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 14px;
  top: 14px;
}

.instagram-icon path,
.facebook-icon path,
.twitter-icon path,
.telegram-icon path {
  fill: #210938;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

.video-modal-close:hover {
  color: #bbb;
}

.video-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    max-width: 100%;
    border-radius: 4px;
  }

  .video-modal-close {
    top: 15px;
    right: 20px;
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .video-modal-content {
    width: 98%;
    border-radius: 2px;
  }

  .video-modal-close {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }
}