/*
Theme Name: Mojo PPM Landing Theme
Theme URI: https://mojoup.com.au
Author: Mojo Up
Author URI: https://mojoup.com.au
Description: WordPress theme package for Mojo PPM landing page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: mojo-ppm-theme
*/

/* ═══════════════════════════════════════════════════════════════ */
/* MOJO PPM WORDPRESS EXPORT - STYLES */
/* ═══════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  line-height: 1.6;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  font: inherit;
  background: transparent;
}

/* ═══════════════════════════════════════════════════════════════ */
/* TYPOGRAPHY */
/* ═══════════════════════════════════════════════════════════════ */

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.625rem;
  border-radius: 9999px;
  background: white;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 14.8px;
  font-weight: 500;
  color: #111;
}

.section-heading {
  font-size: clamp(32px, 8vw, 51px);
  font-family: "Alata", sans-serif;
  font-weight: 600;
  line-height: 1.23;
  text-align: center;
  color: #111;
  margin-top: 0.625rem;
}

.section-description {
  font-size: 15px;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 1.6;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #111;
  font-size: 14.9px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #111;
  text-underline-offset: 0.25rem;
  transition: opacity 0.2s;
}

.section-link:hover {
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 148px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images-2/assets/images/solutions/bg.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.animated-section {
  animation: fadeInUp 0.6s ease-out forwards;
}

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

.hero-title {
  font-size: clamp(32px, 8vw, 62px);
  font-weight: 600;
  text-align: center;
  max-width: 800px;
  line-height: 1.23;
  margin-top: 14px;
  color: #111;
}

.hero-subtitle {
  font-size: 16.7px;
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  line-height: 1.65;
  color: #3d3d3d;
  margin-top: 1.25rem;
}

/* Hero Cards */
.hero-cards-wrapper {
  margin-top: 2rem;
  width: 100%;
  max-width: 1120px;
}

.hero-cards-container {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.hero-cards-container::-webkit-scrollbar {
  display: none;
}

.hero-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 290px;
  border-radius: 18px;
  padding: 2px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(
    -1deg,
    #02b6a9 28%,
    #22927f 44%,
    #ff7e48 59%,
    #ff7e48 72%
  );
  box-shadow:
    0 7px 15px rgba(128, 121, 106, 0.08),
    0 25px 80px rgba(128, 121, 106, 0.08),
    0 12px 20px rgba(128, 121, 106, 0.08);
}

@media (max-width: 768px) {
  .hero-card {
    flex: 0 0 290px;
  }
}

.hero-card-image-wrapper {
  position: relative;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #ded8d3;
  background: linear-gradient(140deg, #eafffd 0%, #f7f7f7 60%, #f7f7f7 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.hero-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card-content {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  border-radius: 0 0 16px 16px;
  flex: 1;
}

.hero-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-card-title {
    font-size: 20px;
  }
}

.hero-card-description {
  font-size: 15px;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 1.6;
  flex: 1;
  min-height: 72px;
}

.hero-card-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  background: #111;
  color: white;
  border: 1px solid #111;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.hero-card-cta:hover {
  background: transparent;
  color: #111;
}

.hero-scroll-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ded8d3;
  color: #111;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.scroll-btn:hover {
  background: #111;
  color: white;
}

.scroll-btn.right-btn {
  background: #111;
  color: white;
  border-color: #111;
}

.scroll-btn.right-btn:hover {
  background: transparent;
  color: #111;
  border-color: #111;
}

/* Back To Top */
.mojo-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #f95524;
  background: #f95524;
  color: #fff;
  box-shadow: 0 12px 28px rgba(249, 85, 36, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.mojo-back-to-top:hover {
  background: #e24b1b;
  border-color: #e24b1b;
  transform: translateY(-1px);
}

.mojo-back-to-top:focus-visible {
  outline: 2px solid #f95524;
  outline-offset: 2px;
}

.mojo-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hero Video */
.hero-video-wrapper {
  margin-top: 4rem;
  width: 100%;
}

.hero-video-container {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 13px;
  overflow: hidden;
  box-shadow:
    0 7px 15px rgba(128, 121, 106, 0.05),
    0 25px 80px rgba(128, 121, 106, 0.05),
    0 12px 20px rgba(128, 121, 106, 0.05);
}

.hero-video {
  width: 100%;
  display: block;
  border-radius: 15px;
}

/* Rescue Timeline */
.rescue-timeline-wrapper {
  margin-top: 4rem;
  width: 100%;
  max-width: 1240px;
}

.timeline-heading {
  font-size: clamp(32px, 8vw, 49px);
  font-family: "Alata", sans-serif;
  font-weight: 600;
  text-align: center;
  color: #111;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.rescue-timeline {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .rescue-timeline {
    flex-direction: row;
    gap: 0;
    padding: 0 6.25rem;
  }
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
}

@media (min-width: 1024px) {
  .timeline-step {
    width: 200px;
  }
}

.timeline-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.12),
    0 2px 5px rgba(0, 0, 0, 0.12);
  background: linear-gradient(
    -1.6deg,
    #02b6a9 28%,
    #22927f 44%,
    #ff7e48 59%,
    #ff7e48 72%
  );
  padding: 2px;
  margin-bottom: 30px;
}

.timeline-circle span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(to bottom, #4c4c4c, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 31px;
  font-weight: 600;
  line-height: 35px;
}

.timeline-number {
  color: white;
  font-size: 31px;
  font-weight: 600;
}

.timeline-time {
  font-size: 31px;
  font-weight: 600;
  color: #111;
  text-align: center;
  line-height: 35px;
  margin-bottom: 6px;
}

.timeline-label {
  font-size: 15px;
  font-weight: 500;
  color: #4c4c4c;
  text-align: center;
  line-height: 24px;
}

.timeline-arrow {
  display: block;
  margin-top: 1.5rem;
  color: #22927f;
  font-size: 24px;
}

@media (min-width: 1024px) {
  .timeline-arrow {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* DASHBOARD SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.dashboard-section {
  padding: 100px 1rem;
  background: white;
}

.dashboard-container {
  max-width: 1240px;
  margin: 0 auto;
}

.dashboard-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dashboard-layout {
    flex-direction: row;
    gap: 3.75rem;
  }
}

.dashboard-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.dashboard-text {
  font-size: 16.7px;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-left: 0.625rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checklist-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  padding: 1px;
  background: linear-gradient(
    -1.6deg,
    #02b6a9 28%,
    #22927f 44%,
    #ff7e48 59%,
    #ff7e48 72%
  );
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.12),
    0 2px 5px rgba(0, 0, 0, 0.1);
  color: transparent;
  font-size: 0;
}

.checklist-icon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(to bottom, #4c4c4c, #111);
}

.checklist-icon::after {
  content: "✓";
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.checklist-item span:last-child {
  font-size: 16.5px;
  font-weight: 500;
  color: #4c4c4c;
}

.dashboard-content .section-heading {
  margin-top: 0;
  text-align: left;
  font-size: clamp(40px, 5vw, 49px);
  line-height: 1.27;
}

.dashboard-image-wrapper {
  flex: 1;
  position: relative;
}

.dashboard-image-container {
  position: relative;
  width: 100%;
}

.dashboard-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dashboard-popup {
  position: absolute;
  width: 55%;
  bottom: -24px;
  left: -32px;
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════════════════════ */
/* PRICING SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.pricing-section {
  padding: 100px 1rem;
  background: #f7f7f7;
}

.pricing-container {
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
}

.pricing-subtext {
  font-size: 16.7px;
  font-weight: 500;
  color: #030303;
  line-height: 25.5px;
  margin-top: 0.625rem;
}

.pricing-description {
  font-size: 15.7px;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 632px;
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  background: white;
  border: 1px solid #ded8d3;
  box-shadow:
    0 0 4px rgba(0, 0, 0, 0.25),
    0 1px 1px rgba(0, 0, 0, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.pricing-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pricing-logo {
  height: 62px;
  width: auto;
}

.pricing-plus {
  font-size: 18.9px;
  font-weight: 600;
  color: #1e1e1e;
}

.pricing-plan-name {
  font-size: 18.9px;
  font-weight: 600;
  color: #1e1e1e;
  line-height: 30px;
}

.pricing-plan-subtitle {
  font-size: 15.5px;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 1.6;
}

.pricing-highlight {
  font-weight: 600;
  background: linear-gradient(to bottom, #00d4c5, #22927f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-top: 1.875rem;
}

.price {
  font-size: 47px;
  font-weight: 600;
  color: #111;
  line-height: 62.4px;
}

.price-period {
  font-size: 15.5px;
  font-weight: 500;
  color: #4c4c4c;
  padding-bottom: 0.625rem;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.875rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background: #111;
  color: white;
  border: 1px solid #111;
  font-weight: 500;
  font-size: 16.7px;
  line-height: 27px;
  transition: all 0.2s;
}

.pricing-cta:hover {
  background: transparent;
  color: #111;
}

.pricing-features {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15.5px;
  font-weight: 500;
  color: #4c4c4c;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #02b6a9;
  flex-shrink: 0;
}

.pricing-cta-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding: 1rem 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  background: white;
  border: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
  .pricing-cta-bar {
    flex-direction: row;
    gap: 3.125rem;
    padding: 1rem 1.25rem;
  }
}

.pricing-savings {
  font-size: 16px;
  font-weight: 500;
  color: #4c4c4c;
  text-align: center;
  line-height: 26px;
  margin-bottom:0px !important;
}

.pricing-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #111;
  color: #1e1e1e;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.2s;
  width: 100%;
}

@media (min-width: 640px) {
  .pricing-apply-btn {
    width: auto;
  }
}

.pricing-apply-btn:hover {
  background: #1e1e1e;
  color: white;
  border-color: #1e1e1e;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FEATURES SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.features-section {
  padding: 0px 1rem;
  background: #f7f7f7;
}

@media (min-width:768px){
	.features-section {
  padding: 30px 1rem !important;

}
}

.features-container {
  max-width: 1240px;
  margin: 0 auto;
}

.features-layout {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .features-layout {
    flex-direction: row;
    gap: 3.75rem;
  }
}

.features-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 0;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }
}

.feature-col {
  display: block;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid #ded8d3;
}

.feature-col:nth-child(-n + 2) .feature-item {
  border-top: none;
}

@media (max-width: 900px) {
  .feature-col .feature-item {
    border-top: 1px solid #ded8d3;
  }

  .feature-col:first-child .feature-item {
    border-top: none;
  }
}

.feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 19px;
  font-weight: 600;
  color: #1e1e1e;
  line-height: 30px;
}

.feature-description {
  font-size: 16px;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 26px;
}

.features-content .section-heading {
  margin-top: 0;
  text-align: left;
  line-height: 1.22;
}

.features-content .section-description {
  font-size: 17px;
  line-height: 26px;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #111;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  transition: all 0.2s;
  margin-left: 0.625rem;
}

.feature-cta:hover {
  background: #111;
  color: white;
}

.features-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
}

.features-image-container {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.1),
    0 3px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  min-height: 500px;
}


@media (max-width: 768px) {

  .features-image-wrapper {
      width: 100%;
      min-height: 400px;
  }

  .features-image-container {
      position: relative;
      width: 100%;
      height: 400px;
  }

  .features-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      left: 0;
      right: 0;
      transform: none;
  }

}

.features-image {
  position: absolute;
  top: 50%;
  left: 51px;
  right: -94px;
  transform: translateY(-50%);
  width: calc(100% + 43px);
  max-width: none;
}

/* ═══════════════════════════════════════════════════════════════ */
/* REGISTER SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.register-section {
  padding: 3rem 1rem 6.25rem;
  background: #f7f7f7;
}

@media (min-width: 1024px) {
  .register-section {
    padding: 6.25rem 1rem;
  }
}

.register-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.register-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  max-width: 900px;
}

.register-description {
  text-align: center;
  padding: 0 1rem;
}

.register-description p {
  font-size: 15px;
  font-weight: 500;
  color: #030303;
  line-height: 24px;
}

.register-description p:last-child {
  font-size: 14px;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 26px;
  margin-top: 1rem;
}

.register-list {
  width: 100%;
  max-width: 1040px;
  border-radius: 20px;
  border: 1px solid #ded8d3;
  background: white;
  padding: 1.25rem 1rem;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .register-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .register-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1.75rem 2rem;
  }
}


.register-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
}

.register-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eafffd 0%, #80f0dd 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.register-icon-image {
  width: 20px;
  height: 20px;
}

.register-item span {
  font-size: 15px;
  font-weight: 500;
  color: #101828;
  line-height: 22px;
}

@media (min-width: 640px) {
  .register-item span {
    font-size: 16px;
  }
}

.register-cta-bar {
  width: 100%;
  background: #ececec;
  border-radius: 10px;
  border: 1px solid #ded8d3;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

@media (min-width: 640px) {
  .register-cta-bar {
    flex-direction: row;
    justify-content: space-between;
    gap: 3.125rem;
    padding: 0.625rem 1.25rem;
  }
}

.register-cta-bar p {
  font-size: 13px;
  font-weight: 500;
  color: black;
  text-align: center;
  line-height: 20px;
	margin-bottom:0px !important;
}

@media (min-width: 640px) {
  .register-cta-bar p {
    font-size: 16px;
    line-height: 26px;
    flex: 1;
  }
}

.register-cta-btn {
  width: 100%;
  background: white;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  border: 1px solid white;
  line-height: 22px;
  text-align: center;
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .register-cta-btn {
    width: auto;
    padding: 0.875rem 1.25rem;
    font-size: 17px;
    line-height: 27px;
  }
}

.register-cta-btn:hover {
  background: #1e1e1e;
  color: white;
  border-color: #1e1e1e;
}

/* ═══════════════════════════════════════════════════════════════ */
/* AI READY SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.ai-ready-section {
  padding: 80px 1rem 100px;
  background: #111;
  overflow: hidden;
}

.ai-ready-container {
  max-width: 1240px;
  margin: 0 auto;
}

.ai-ready-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto 70px;
}

.ai-ready-badge-wrap {
  border-radius: 9999px;
  padding: 1px;
  background: linear-gradient(
    -86deg,
    #02b6a9 11%,
    #1dc8ab 39%,
    #ad46ff 58%,
    #ff7e48 81%
  );
}

.ai-ready-badge {
  display: inline-flex;
  padding: 0.625rem 0.875rem;
  border-radius: 9999px;
  background: #1e1e1e;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.ai-ready-title {
  font-size: clamp(32px, 8vw, 50px);
  line-height: 1.24;
  color: #fff;
  font-family: "Alata", sans-serif;
  font-weight: 600;
}

.ai-ready-copy {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  color: #ded8d3;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}

.ai-ready-copy-strong {
  font-weight: 600;
}

.ai-ready-cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  background: #fff;
  color: #1e1e1e;
  border: 1px solid #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  transition: all 0.2s;
}

.ai-ready-cta:hover {
  background: transparent;
  color: #fff;
}

.ai-ready-board-wrap {
  position: relative;
  max-width: 1016px;
  margin: 0 auto;
  margin-top: 56px;
}

.ai-ready-board {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 986/621;
  border: 1px solid #4f4f4f;
  background: #1e1e1e;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.12),
    0 2px 5px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.ai-ready-board img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-ready-card {
  position: absolute;
  width: min(288px, 44vw);
  z-index: 2;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.1),
    -20px 36px 22px rgba(0, 0, 0, 0.05);
}

.ai-ready-card-right {
  top: 0;
  right: -158px;
}

.ai-ready-card-left {
  bottom: 0;
  left: -158px;
}
/* 
@media (max-width: 900px) {
  .ai-ready-header {
    margin-bottom: 40px;
  }

  .ai-ready-card {
    position: static;
    width: min(460px, 90%);
    margin: 14px auto 0;
    display: block;
  }

  .ai-ready-board-wrap {
    margin-top: 40px;
    padding: 0;
  }
} */


@media (max-width: 900px) {

  .ai-ready-card {
    position: absolute;
    width: 38%;
    max-width: 180px;
    margin: 0;
  }

  .ai-ready-card-right {
    top: -10px;
    right: -20px;
  }

  .ai-ready-card-left {
    bottom: -10px;
    left: -20px;
  }

}

/* ═══════════════════════════════════════════════════════════════ */
/* COMPARISON SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.comparison-section {
  padding: 100px 1rem;
  background: white;
}

.comparison-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.comparison-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  max-width: 700px;
  padding: 0 1rem;
}

.comparison-description {
  text-align: center;
  margin-top: 0.875rem;
}

.comparison-description p {
  font-size: 15px;
  font-weight: 500;
  color: #3d3d3d;
  line-height: 24px;
}

.comparison-description p:last-child {
  color: #030303;
  font-weight: 600;
  margin-top: 0.5rem;
}

.comparison-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  position: relative;
}

@media (max-width: 1024px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.comparison-card {
  border-radius: 20px;
  border: 1px solid #ded8d3;
  background: #e8e4e2;
  overflow: hidden;
}

.comparison-card.mojo-up {
  background: linear-gradient(135deg, #02b6a9 0%, #ff7e48 100%);
  padding: 2px;
}

.comparison-card.mojo-up .comparison-card-header,
.comparison-card.mojo-up .comparison-card-items {
  background: white;
}

.comparison-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8125rem 1.5rem;
  border-bottom: 1px solid #ded8d3;
  gap: 0.625rem;
}

.comparison-card-header h3 {
  font-size: 23px;
  font-weight: 700;
  color: #1e1e1e;
  text-align: center;
  line-height: 29px;
  text-transform: uppercase;
}

.comparison-logo {
  width: 28px;
  height: 28px;
}

.comparison-card-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.875rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-icon {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.comparison-item span {
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  color: #4c4c4c;
}

.comparison-card.mojo-up .comparison-item span {
  color: #1e1e1e;
  font-weight: 600;
}

.comparison-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .comparison-ctas {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }
}

.comparison-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: white;
  border: 1px solid #111;
  font-weight: 500;
  font-size: 17px;
  padding: 1rem 3rem;
  border-radius: 10px;
  transition: all 0.2s;
  width: 100%;
}

@media (min-width: 640px) {
  .comparison-cta-primary {
    width: auto;
  }
}

.comparison-cta-primary:hover {
  background: transparent;
  color: #111;
}

.comparison-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: white;
  border: 1px solid #111;
  font-weight: 500;
  font-size: 17px;
  padding: 1rem 3rem;
  border-radius: 10px;
  transition: all 0.2s;
  width: 100%;
}

@media (min-width: 640px) {
  .comparison-cta-secondary {
    width: auto;
  }
}

.comparison-cta-secondary:hover {
  background: transparent;
  color: #111;
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESCUE SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.rescue-section {
  padding: 100px 1rem;
  background: #f7f7f7;
}

.rescue-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
  align-items: center;
}

.rescue-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  max-width: 900px;
  width: 100%;
}

.rescue-description {
  text-align: center;
  margin-top: 0.875rem;
  padding: 0 1rem;
}

.rescue-description p {
  font-size: 15px;
  font-weight: 500;
  color: #3d3d3d;
  line-height: 24px;
}

.rescue-description p:last-child {
  color: #030303;
  font-weight: 600;
}

.rescue-tabs-wrapper {
  width: 100%;
  background: white;
  border-radius: 16px;
  border: 1px solid #e4dfdc;
  overflow: hidden;
  max-width: 900px;
}

.rescue-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.75rem;
}

.rescue-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  background: #f6f5f4;
  opacity: 0.6;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
  gap: 0.625rem;
  width: 100%;
}

.rescue-tab-btn.active {
  background: white;
  border: 1px solid #02b6a9;
  opacity: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.rescue-tab-content {
  padding: 2.5rem 3.125rem;
}

.rescue-tab-panel {
  display: none;
}

.rescue-tab-panel.active {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.rescue-tab-panel h3 {
  font-size: 31px;
  font-weight: 600;
  color: #111;
  line-height: 45px;
}

.rescue-tab-panel > p {
  font-size: 16px;
  font-weight: 500;
  color: #808080;
  line-height: 26px;
  flex: 1;
}

.rescue-divider {
  height: 1px;
  background: #f1f0ee;
}

.rescue-result {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rescue-result h4 {
  font-size: 19px;
  font-weight: 600;
  color: #1e1e1e;
  line-height: 30px;
}

.rescue-result p {
  font-size: 16px;
  font-weight: 500;
  color: black;
  line-height: 26px;
}

.rescue-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  border: 1px solid #111;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  transition: all 0.2s;
  align-self: flex-start;
}

.rescue-cta:hover {
  background: #111;
  color: white;
}

.rescue-final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 1240px;
  align-items: flex-start;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .rescue-final-cta {
    grid-template-columns: 1fr;
  }
}

.rescue-cta-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.rescue-mascot {
  width: 150px;
  height: auto;
  border-radius: 40px;
}

@media (min-width: 640px) {
  .rescue-mascot {
    width: 184px;
  }
}

.rescue-cta-text {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 24px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FORM STYLES */
/* ═══════════════════════════════════════════════════════════════ */

.enquiry-form-wrapper {
  width: 100%;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ff7e48;
  padding: 0 0 0.5rem;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  outline: none;
}

@media (min-width: 640px) {
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7a7a7a;
  font-size: 15px;
}

@media (min-width: 640px) {
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    font-size: 16px;
  }
}

.form-fieldset {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-fieldset legend {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.form-radios {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-radios {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.form-radios label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
}

.form-radios input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #3b82f6;
  cursor: pointer;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  background: #111;
  color: white;
  border: 1px solid #111;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s;
  cursor: pointer;
  align-self: flex-start;
}

.form-submit:hover {
  background: transparent;
  color: #111;
}



.mojoup-contact-form {
  font-family: "Alata" ;
  font-size: 14px;
  color: rgba(0, 0, 0, 1);
 
}

.mojoup-contact-form label {
  font-weight: 400;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.mojoup-contact-form input,
.mojoup-contact-form textarea {
  width: 100%;
  border:0;
  border-bottom: 1px solid #FF7E48;
  padding: 8px 0;
  font-size: 15px;
  color: #333;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
    font-family: "Alata" ;

}

.mojoup-contact-form input:focus,
.mojoup-contact-form textarea:focus {
  border-bottom-color: #222;
}

.mojoup-contact-form textarea {
  resize: none;
  height: 100px;
}

.form-row {
  display: flex;
  gap: 30px;
}

.form-group {
  flex: 1;
  margin-bottom: 25px;
}

.radio-group {
  display: flex;
  gap: 15px;
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  background: #FF7E48;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  padding: 14px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #e45100;
}



/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .section-heading {
    font-size: 32px;
  }

  .timeline-heading {
    font-size: 32px;
  }

  .pricing-subtext {
    font-size: 32px;
    line-height: 40px;
  }
}
