/* ===== MVP Builder Page Styles ===== */

/* Force visibility for all MVP sections */
.mvp-hero-section,
.mvp-work-section,
.mvp-faster-section,
.mvp-success-section,
.mvp-tech-section {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.mvp-work-card,
.mvp-faster-card,
.mvp-faster-feature {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* ==================== Introduction/Hero Section ==================== */
.mvp-hero-section {
  background: #ffffff;
  position: relative;
  overflow: visible;
  /* padding: 140px 0 80px; */
}

.mvp-hero-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* SVG on LEFT side */
.mvp-hero-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
}

/* Content on RIGHT side */
.mvp-hero-content {
  flex: 1;
  max-width: 550px;
  order: 2;
  text-align: center;
}

.mvp-hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #ce403d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: p_m;
}

.mvp-hero-title {
  font-size: 50px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 25px;
  font-family: var(--tp-ff-platform);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  background-image: linear-gradient(
    90deg,
    #ce403d 0%,
    #ce403d 40%,
    #2a2f36 50%,
    #ce403d 60%,
    #ce403d 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mvp-hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: #636368;
  font-family: p_r;
  margin-bottom: 30px;
}

.mvp-hero-cta {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.mvp-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ce403d;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  font-family: p_m;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(206, 64, 61, 0.3);
}

.mvp-hero-btn:hover {
  background: #b33835;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(206, 64, 61, 0.4);
  color: #fff;
}

.mvp-hero-clutch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mvp-hero-clutch-label {
  font-size: 10px;
  color: #636368;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: p_r;
}

.mvp-hero-clutch-logo {
  font-size: 24px;
  font-weight: 700;
  color: #141414;
  font-family: p_m;
}

.mvp-hero-clutch-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 14px;
}

.mvp-hero-clutch-reviews {
  font-size: 11px;
  color: #636368;
  font-family: p_r;
}

.mvp-hero-note {
  font-size: 13px;
  color: #ce403d;
  margin-top: 15px;
  font-family: p_r;
}

.mvp-hero-svg-container {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.mvp-hero-svg-illustration {
  width: 100%;
  height: auto;
}

/* ==================== Who We Work With Section ==================== */
.mvp-work-section {
  background: #f0f9ff;
  padding: 80px 0;
  overflow: visible;
}

/* Matching landing.css .tp-section-title */
.mvp-work-title {
  font-family: var(--tp-ff-platform);
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 50px;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
  background-image: linear-gradient(
    90deg,
    #ce403d 0%,
    #ce403d 40%,
    #2a2f36 50%,
    #ce403d 60%,
    #ce403d 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mvp-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.mvp-work-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.mvp-work-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #ce403d;
}

.mvp-work-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 20px;
  font-family: p_m;
}

.mvp-work-card-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.mvp-work-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e8f0;
}

.mvp-work-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvp-work-card-quote {
  font-size: 15px;
  font-style: italic;
  color: #ce403d;
  line-height: 1.6;
  font-family: p_r;
}

.mvp-work-card-description {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #636368;
  line-height: 1.6;
  font-family: p_r;
}

.mvp-work-card-description svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: #ce403d;
  margin-top: 2px;
}

/* ==================== 3x Faster Section ==================== */
.mvp-faster-section {
  background: #ffffff;
  padding: 80px 0;
  overflow: visible;
}

.mvp-faster-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Matching landing.css .tp-section-title */
.mvp-faster-title {
  font-family: var(--tp-ff-platform);
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 50px;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  background-image: linear-gradient(
    90deg,
    #ce403d 0%,
    #ce403d 40%,
    #2a2f36 50%,
    #ce403d 60%,
    #ce403d 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mvp-faster-subtitle {
  font-size: 16px;
  color: #636368;
  line-height: 1.7;
  font-family: p_r;
}

.mvp-faster-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.mvp-faster-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.mvp-faster-features {
  flex: 1;
}

.mvp-faster-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f5f9;
}

.mvp-faster-feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.mvp-faster-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(206, 64, 61, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mvp-faster-feature-icon svg {
  width: 20px;
  height: 20px;
  color: #ce403d;
}

.mvp-faster-feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 8px;
  font-family: p_m;
}

.mvp-faster-feature-content p {
  font-size: 14px;
  color: #636368;
  line-height: 1.6;
  font-family: p_r;
  margin: 0;
}

.mvp-faster-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvp-faster-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==================== Proven MVP Success Section (Tabbed) ==================== */
.mvp-success-section {
  background: #fff;
  padding: 80px 0;
  overflow: visible;
}

/* Matching landing.css .tp-section-title */
.mvp-success-title {
  font-family: var(--tp-ff-platform);
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 50px;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  background-image: linear-gradient(
    90deg,
    #ce403d 0%,
    #ce403d 40%,
    #2a2f36 50%,
    #ce403d 60%,
    #ce403d 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mvp-success-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.mvp-success-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #636368;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: p_m;
}

.mvp-success-tab:hover {
  color: #ce403d;
}

.mvp-success-tab.active {
  color: #ce403d;
  border-bottom-color: #ce403d;
}

.mvp-success-content {
  display: none;
}

.mvp-success-content.active {
  display: block;
}

.mvp-success-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.mvp-success-details {
  flex: 1;
  max-width: 500px;
}

.mvp-success-case-title {
  font-size: 28px;
  font-weight: 700;
  color: #ce403d;
  margin-bottom: 30px;
  font-family: p_m;
}

.mvp-success-label {
  font-size: 14px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 15px;
  font-family: p_m;
}

.mvp-success-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.mvp-success-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #636368;
  line-height: 1.6;
  font-family: p_r;
}

.mvp-success-list li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
}

.mvp-success-list.challenges li svg {
  color: #ef4444;
}

.mvp-success-list.results li svg {
  color: #ce403d;
}

.mvp-success-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ce403d;
  text-decoration: none;
  font-family: p_m;
  transition: all 0.3s ease;
}

.mvp-success-link:hover {
  color: #b33835;
}

.mvp-success-link svg {
  width: 14px;
  height: 14px;
}

.mvp-success-image {
  flex: 1;
  position: relative;
}

.mvp-success-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ==================== Technology Stack Section ==================== */
.mvp-tech-header {
  text-align: center;
  margin-bottom: 40px;
}

.mvp-tech-section {
  background: #f8f9fb;
  padding: 80px 0;
  overflow: visible;
}

/* Matching landing.css .tp-section-title */
.mvp-tech-title {
  font-family: var(--tp-ff-platform);
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 50px;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  background-image: linear-gradient(
    90deg,
    #ce403d 0%,
    #ce403d 40%,
    #2a2f36 50%,
    #ce403d 60%,
    #ce403d 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mvp-tech-subtitle {
  font-size: 16px;
  color: #636368;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
  font-family: p_r;
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 991px) {
  .mvp-hero-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .mvp-hero-image {
    order: 1;
    width: 100%;
  }

  .mvp-hero-content {
    order: 2;
    max-width: 100%;
    text-align: center;
  }

  .mvp-hero-cta {
    justify-content: center;
  }

  .mvp-hero-title {
    font-size: 38px;
  }

  .mvp-faster-wrapper {
    flex-direction: column;
  }

  .mvp-faster-image {
    order: -1;
  }

  .mvp-success-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .mvp-success-details {
    max-width: 100%;
  }

  .mvp-success-image {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .mvp-hero-section {
    /* padding: 120px 0 60px; */
  }

  .mvp-hero-title {
    font-size: 32px;
  }

  .mvp-work-grid {
    grid-template-columns: 1fr;
  }

  .mvp-work-title,
  .mvp-faster-title,
  .mvp-success-title,
  .mvp-tech-title {
    font-size: 36px;
  }

  .mvp-faster-card {
    padding: 25px;
  }

  .mvp-success-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .mvp-success-tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
  }

  .mvp-success-tab.active {
    border-color: #ce403d;
    background: rgba(206, 64, 61, 0.05);
  }
}

@media (max-width: 480px) {
  .mvp-hero-title {
    font-size: 26px;
  }

  .mvp-hero-cta {
    flex-direction: column;
    gap: 20px;
  }

  .mvp-hero-clutch {
    flex-direction: column;
    text-align: center;
  }

  .mvp-work-card {
    padding: 20px;
  }

  .mvp-work-card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* CTA Section → moved to service-common.css (uses .cs-cta-* classes) */
