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

body {
  font-family: "Inter", sans-serif;
  background-color: #F6F4EB;
  color: #1F2000;
  line-height: 1.6;
}

#quizSection {
  background-color: #F6F4EB;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.header {
  padding-top: 23px;
  padding-bottom: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 550px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  background: #F6F4EB;
  width: 100%;
  z-index: 999;
}
.header img {
  width: 96px;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.stat-card {
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #F0F0E3;
  padding-left: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 8px;
}
.stat-card .stat-icon {
  height: 24px;
}
.stat-card img {
  width: 24px;
}
.stat-card .stat-text {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #000C1F;
}
.stat-card .stat-text span {
  color: #CC9D04;
}

.main-content {
  text-align: center;
}

.main-title {
  font-size: 30px;
  font-weight: 700;
  color: #000C1F;
  margin-bottom: 8px;
  line-height: 40px;
}

.highlight {
  color: #CC9D04;
}

.description {
  font-size: 16px;
  line-height: 24px;
  color: #000C1F;
  margin-bottom: 20px;
}

/* Hero Image */
.hero-image {
  margin-bottom: 4px;
}
.hero-image video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #F0F0E3;
}

/* CTA Button */
.cta-button {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
  letter-spacing: 0px;
  box-shadow: inset 0px 4px 8px 0px rgba(255, 255, 255, 0.24);
  background: #4E4F1C;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.cta-button:active {
  transform: translateY(1px);
}

/* Availability */
.availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  margin-top: 16px;
}
.availability img {
  width: 20px;
}
.availability .availability-text {
  color: #5E5E59;
  font-size: 14px;
  line-height: 22px;
}

/* Footer */
.footer {
  text-align: center;
  padding-top: 12px;
  padding-bottom: 24px;
}

.address {
  font-size: 14px;
  line-height: 22px;
  color: #5E5E59;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-links .footer-link {
  font-size: 14px;
  line-height: 20px;
  color: #5E5E59;
  text-decoration: none;
}
.footer-links .separator {
  color: #4E4F1C;
}

.footer-q {
  position: fixed;
  padding-bottom: 24px;
  bottom: 0;
  background-color: #F1F6FF;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  left: 50%;
  padding-left: 20px;
  padding-right: 20px;
  transform: translateX(-50%);
  z-index: 99999999 !important;
}

.main {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.header-quiz {
  background-color: #F6F4EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 20px;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  z-index: 99999;
}
.header-quiz .back-btn {
  background: white;
  border: none;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01);
}
.header-quiz .back-btn img {
  width: 24px;
}
.header-quiz .right-header {
  width: 40px;
}

.progress-container {
  margin-bottom: 24px;
  margin-top: 7px;
}

.progress-bar {
  position: relative;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  margin-bottom: 16px;
}

.progress-fill {
  height: 100%;
  background: #4E4F1C;
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -14px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  position: relative;
  z-index: 2;
}

.dot.active-now {
  background: #4E4F1C;
  border-color: #4E4F1C;
}

.dot.completed {
  background: #4E4F1C;
  border-color: #4E4F1C;
}

.dot.completed::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 8px;
  transform: translate(-50%, -50%);
  background: url(../img/vector.svg) no-repeat center center;
  background-size: contain;
}

/* Completed dot without checkmark (used for the 1st dot) */
.dot.completed-no-check {
  background: #4E4F1C;
  border-color: #4E4F1C;
}
.dot.completed-no-check::after {
  content: none;
}

/* Quiz progress color variant (step 2+) */
.progress-container.progress-olive .progress-fill {
  background: #4E4F1C;
}
.progress-container.progress-olive .dot.active-now,
.progress-container.progress-olive .dot.completed,
.progress-container.progress-olive .dot.completed-no-check {
  background: #4E4F1C;
  border-color: #4E4F1C;
}

.quiz-content {
  flex: 1;
  text-align: center;
}

.quiz-step {
  display: none;
  padding-bottom: 150px;
}

.quiz-step.active {
  display: block;
}

.question {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 32px;
  line-height: 1.2;
}

.highlight {
  color: #4E4F1C;
}

.description {
  font-size: 16px;
  color: #000C1F;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Options */
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.option-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-weight: 500;
}

.option-card:hover {
  border-color: #e5e7eb;
}

.option-card.selected {
  border-color: #4E4F1C;
  border-width: 2px;
  background: #fff;
}

.option-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.option-content p {
  font-size: 14px;
  color: #000C1F;
  line-height: 1.4;
}

.option-content img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  vertical-align: middle;
}

.option-content span {
  font-size: 16px;
  color: #111827;
  vertical-align: middle;
}

.checkbox-option .option-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 2px solid #F0F0E3;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  margin: 2px;
}

.checkbox-option.selected .checkbox {
  background: #fff;
  border-color: #1F2000;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.checkbox-option.selected .checkmark {
  opacity: 1;
}

.rating-instruction {
  font-size: 14px;
  color: #000C1F;
  margin-bottom: 24px;
}

.rating-options {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rating-card {
  width: 48px;
  height: 48px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rating-card:hover {
  border-color: #4E4F1C;
}

.rating-card.selected {
  background: #4E4F1C;
  border-color: #4E4F1C;
}

.rating-number {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.rating-card.selected .rating-number {
  color: white;
}

.rating-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #000C1F;
  margin-bottom: 32px;
  white-space: nowrap;
}

/* Profiles Grid */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.profiles-grid img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Comparison Cards */
.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.comparison-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.comparison-card:hover {
  border-color: #4E4F1C;
}

.comparison-card.selected {
  border-color: #4E4F1C;
  border-width: 2px;
}

.comparison-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.comparison-card.selected h3 {
  color: #4E4F1C;
}

.comparison-content {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.empty-space {
  width: 100%;
  height: 100%;
  background: #f3f4f6;
  border-radius: 8px;
}

.highlight-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
}

.comparison-footer {
  background: #f3f4f6;
  padding: 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* CTA Button */
.cta-button {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #4E4F1C;
  color: white;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.fix-btn {
  width: 100%;
  max-width: 550px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 52px;
  position: fixed;
  background-color: transparent;
  z-index: 999999999 !important;
}

.cta-button-fix {
  max-width: 550px;
  width: 100%;
  margin-bottom: 0;
}

.cta-button:hover {
  background: #404116;
}

.cta-button:active {
  transform: translateY(1px);
}

/* Chart Styles */
.chart-container {
  margin: 32px 0;
}

.chart {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
  height: 120px;
}

.chart-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.chart-bar.low {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 8px;
}

.chart-bar.high {
  width: 40px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bar-value {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bar-label {
  font-size: 12px;
  color: #000C1F;
  margin-top: 8px;
  text-align: center;
}

/* Statistics Styles */
.statistic {
  font-size: 14px;
  color: #000C1F;
  margin: 16px 0;
  font-style: italic;
}

/* Quiz Modes Styles */
.quiz-modes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mode-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
}

.mode-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mode-icon.blue {
  background: #dbeafe;
}

.mode-icon.red {
  background: #fee2e2;
}

.mode-icon.yellow {
  background: #fef3c7;
}

.mode-icon.green {
  background: #d1fae5;
}

.mode-icon img {
  width: 24px;
  height: 24px;
}

.mode-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.mode-content p {
  font-size: 14px;
  color: #000C1F;
}

/* Carousel Styles */
.stats-carousel {
  margin: 32px 0;
}

.carousel-container {
  overflow: hidden;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 300%; /* 3 slides */
}

.carousel-slide {
  width: 33.333%; /* 100% / 3 slides */
  padding: 24px;
  min-height: 300px;
}

.stats-header {
  text-align: center;
  margin-bottom: 24px;
}

.stats-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.score-display {
  font-size: 48px;
  font-weight: 700;
  color: #4E4F1C;
  margin-bottom: 8px;
}

.score-description {
  font-size: 14px;
  color: #000C1F;
  line-height: 1.4;
}

.streak-display {
  font-size: 36px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 8px;
}

.streak-description {
  font-size: 14px;
  color: #000C1F;
  line-height: 1.4;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
}

.stat-label {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.circular-progress {
  position: relative;
  width: 60px;
  height: 60px;
}

.progress-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#10b981 0deg 306deg, #e5e7eb 306deg 360deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-circle::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
}

.progress-text {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  z-index: 1;
}

.progress-subtext {
  font-size: 10px;
  color: #000C1F;
  z-index: 1;
}

/* Topic Stats */
.topic-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.topic-item {
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
}

.topic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.topic-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.topic-score {
  font-size: 16px;
  font-weight: 700;
  color: #4E4F1C;
}

.topic-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.topic-details span {
  font-size: 12px;
  color: #000C1F;
}

/* Streak Calendar */
.streak-calendar {
  margin-top: 24px;
}

.calendar-grid {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.calendar-day {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #000C1F;
}

.calendar-day.completed {
  background: #10b981;
  color: white;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.indicator.active {
  background: #4E4F1C;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .question {
    font-size: 24px;
  }
  .rating-options {
    gap: 8px;
  }
  .rating-card {
    width: 40px;
    height: 40px;
  }
  .rating-number {
    font-size: 16px;
  }
  .profiles-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .carousel-slide {
    padding: 16px;
  }
  .score-display {
    font-size: 36px;
  }
  .streak-display {
    font-size: 28px;
  }
}
@media (max-width: 360px) {
  .question {
    font-size: 20px;
  }
  .description {
    font-size: 14px;
  }
  .cta-button {
    font-size: 16px;
    padding: 14px 24px;
  }
  .carousel-slide {
    padding: 12px;
  }
}
.title-top {
  margin-bottom: 20px;
}

.quiz-step h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000C1F;
  margin-bottom: 8px;
  text-align: center;
  line-height: 32px;
}

.quiz-step p {
  font-size: 16px;
  color: #000C1F;
  text-align: center;
  margin-bottom: 8px;
  line-height: 24px;
}

.highlight {
  color: #4E4F1C;
  font-weight: 700;
}

/* Options Container */
.options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.option-card {
  background: white;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-card:hover {
  border-color: #fff;
}

.option-card.selected {
  border-color: #4E4F1C;
  background: #fff;
}

.option-content h3 {
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  color: #000C1F;
  margin-bottom: 4px;
}

.option-content p {
  font-size: 15px;
  line-height: 25px;
  color: #5E5E59;
  text-align: left;
  margin: 0;
}

.option-icon {
  font-size: 20px;
  line-height: 26px;
  width: 20px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-grid img {
  border-radius: 12px;
  width: 100%;
  margin-bottom: 32px;
}
.img-grid video {
  border-radius: 12px;
  width: 100%;
  margin-bottom: 32px;
}

.img-grid-bottom img {
  margin-bottom: 0px;
}

.cheat-sheets-hero img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.fix-btn-yesno .yes-no-row {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.fix-btn-yesno-3{
  position: relative;
  bottom: auto;
  top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
}

.yes-no-btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #4E4F1C;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.yes-no-btn:active {
  transform: translateY(1px);
}

/* Students Grid */
.students-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 24px 0;
  padding: 0 20px;
}

.student-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4E4F1C, #8B5CF6);
  opacity: 0.8;
}

/* Checkbox Options */
.checkbox-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-option {
  background: white;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkbox-option:hover {
  border-color: #fff;
}

.checkbox-option.selected {
  border-color: #1F2000;
  background: #fff;
}

.checkbox-option span {
  font-size: 16px;
  color: #000C1F;
  font-weight: 500;
  text-align: left;
  width: 100%;
  padding-right: 10px;
}

.checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-option.selected .checkbox {
  background: #fff;
  border-color: #1F2000;
}

.checkbox-option.selected .checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #1F2000;
  border-radius: 2px;
}

/* Rating Container */
.rating-subtitle {
  font-size: 14px;
  color: #000C1F;
  margin-bottom: 24px;
}

.rating-subtitle_2{
  color: #5E5E59;
}

.rating-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.rating-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rating-number {
  width: 56px;
  height: 56px;
  border: 2px solid #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #000C1F;
  background: white;
  transition: all 0.3s ease;
}

.rating-option:hover .rating-number {
  border-color: #fff;
}

.rating-option.selected .rating-number {
  border-color: #fff;
  border-color: #4E4F1C;
}

.rating-label {
  font-size: 14px;
  line-height: 22px;
  color: #5E5E59;
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
}

.rating-option {
  position: relative;
}
.rating-option .label-start {
  position: absolute;
  left: 0;
  bottom: -28px;
}
.rating-option .label-end {
  position: absolute;
  right: 0;
  bottom: -28px;
}

/* Comparison Container */
.comparison-container {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.comparison-card {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  position: relative;
}

.comparison-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.comparison-card.without h3 {
  color: #000C1F;
}

.comparison-card.with h3 {
  color: #4E4F1C;
}

.progress-bar {
  background: #fff;
  height: 8px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 42px;
}

.progress-fill {
  background: #CC9D04;
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 14px;
  font-weight: 600;
  color: #000C1F;
}

.improvement-badge {
  background: linear-gradient(135deg, #8B5CF6, #4E4F1C);
  color: white;
  font-size: 24px;
  font-weight: 700;
  padding: 20px;
  border-radius: 12px;
  margin: 16px 0;
}

/* Nurse Image */
.nurse-image {
  margin: 24px 0;
  text-align: center;
}

.nurse-image img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Motivation Chart */
.motivation-chart {
  margin: 32px 0;
}

.chart-container {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 200px;
  position: relative;
}

.chart-axis {
  display: flex;
  align-items: end;
  gap: 40px;
}

.y-axis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.axis-label {
  font-size: 14px;
  font-weight: 600;
  color: #4E4F1C;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.arrow-up {
  font-size: 24px;
  color: #4E4F1C;
  font-weight: bold;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 20px;
}

.bar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bar {
  width: 60px;
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bar.vague-goal {
  height: 60px;
  background: #D1D5DB;
}

.bar.clear-goal {
  height: 120px;
  background: linear-gradient(135deg, #10B981, #059669);
}

.bar-label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-top: 8px;
  text-align: center;
}

.bar-value {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}

/* App Features */
.app-features {
  display: flex;
  gap: 12px;
  margin: 32px 0;
  padding-bottom: 15px;
}

/* Swiper Pagination */
.swiper-pagination {
  position: relative;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #CCCAB5;
  opacity: 1;
  margin: 0 4px;
  transform: translateY(-15px);
}

.swiper-pagination-bullet-active {
  background: #4E4F1C;
}

.feature-card {
  background: white;
  border-radius: 14px;
  text-align: left;
}
.feature-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}
.feature-card p {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 12px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #1F2000;
  margin-bottom: 0;
  text-align: left;
}

/* Subtitle */
.subtitle {
  font-size: 14px;
  color: #000C1F;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Trophy Container */
.trophy-container {
  margin: 32px 0;
  text-align: center;
  position: relative;
}

.trophy {
  font-size: 120px;
  margin-bottom: 16px;
  display: block;
}

.trophy-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.star {
  font-size: 24px;
  animation: twinkle 2s infinite;
}

.star:nth-child(2) {
  animation-delay: 0.2s;
}

.star:nth-child(3) {
  animation-delay: 0.4s;
}

.star:nth-child(4) {
  animation-delay: 0.6s;
}

.star:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
/* Time Commitment */
.time-commitment {
  font-size: 12px;
  color: #000C1F;
  font-weight: 500;
}

.option-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.option-content span:first-child {
  font-size: 16px;
  color: #000C1F;
  font-weight: 500;
}

.stats-text {
  font-size: 14px !important;
  line-height: 22px !important;
  color: #5E5E59 !important;
  margin-top: 0px !important;
  margin-bottom: 32px !important;
  text-align: left !important;
}
.stats-text span {
  color: #CC9D04;
  font-weight: bold;
}

.option-card .option-content.df-content {
  flex: 1;
  min-width: 0;
}

.df-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}
.df-content .time-commitment {
  color: #5E5E59;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

.dot.active-now::after {
  display: none;
}

.main-content_set {
  margin-top: 10vh;
  text-align: center;
}
.main-content_set .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-content_set h1 {
  font-size: 26px;
  color: #CC9D04;
  line-height: 34px;
  margin-bottom: 24px;
}
.main-content_set h2 {
  font-size: 24px;
  line-height: 32px;
  color: #000C1F;
  margin-bottom: 8px;
}
.main-content_set h3 {
  font-size: 20px;
  line-height: 26px;
  color: #000C1F;
  margin-bottom: 16px;
  font-weight: 600;
  text-align: left;
}
.main-content_set p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-align: center;
  color: #000C1F;
}
.main-content_set a {
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
  margin-bottom: 20px;
}
.main-content_set a img {
  width: 100%;
}
.main-content_set .img-qr {
  width: 100%;
  max-width: 170px;
  transition: 0.3s all;
}
.main-content_set .img-qr:hover {
  transform: scale(1.15);
}
.main-content_set .pay-dec {
  display: none;
}
.main-content_set .pay_mob {
  display: block;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  margin-top: 24px;
  margin-bottom: 16px;
}
.main-content_set .pay_mob a {
  display: block;
  margin: 0;
}
.main-content_set .pay_mob img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .main-content_set .pay-dec {
    display: block;
  }
  .main-content_set .pay_mob {
    display: none;
  }
}

.my-plan {
  position: sticky;
  top: 0;
  z-index: 999 !important;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}
.my-plan .left p {
  font-size: 14px;
  color: #000C1F;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
}
.my-plan .left .timer {
  color: #000C1F;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
}
.my-plan .a-plan {
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  background-color: #FD5A26;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.main-content_landing {
  color: #000C1F;
  margin-top: 20px;
}
.main-content_landing .banner-closed {
  padding: 20px;
  background: url(../img/banner.jpg) center center/cover no-repeat;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 16px;
}
.main-content_landing .banner-closed h3 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 600;
}
.main-content_landing .banner-closed h3 s {
  opacity: 0.5;
}
.main-content_landing .top-block {
  background-color: #fff;
  border-radius: 12px;
  border-bottom-left-radius: 99px;
  border-bottom-right-radius: 99px;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 16px;
}
.main-content_landing .top-block h1 {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 16px;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 20px;
}
.main-content_landing .top-block h1 span {
  color: #CC9D04;
}
.main-content_landing .top-block img {
  width: 100%;
  margin-bottom: -10px;
}
.main-content_landing h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.main-content_landing .box-bl {
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  background-color: #FFF9D6;
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
}
.main-content_landing .box-bl img {
  width: 36px;
  margin-right: 16px;
}
.main-content_landing .box-bl p {
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 0;
  font-weight: 500;
}
.main-content_landing .box-bl p span {
  font-weight: 600;
}
.main-content_landing .choose-plan {
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 24px 16px;
}
.main-content_landing .choose-plan .plan-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-content_landing .choose-plan .plan-option {
  background: #fff;
  border: 1px solid #E4EBF5;
  border-radius: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.main-content_landing .choose-plan .plan-option .most-popular {
  background-color: #4E4F1C;
  padding: 4px;
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  height: 26px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.main-content_landing .choose-plan .plan-option-padding {
  padding-top: 34px;
}
.main-content_landing .choose-plan .plan-option:hover {
  border-color: #CC9D04;
}
.main-content_landing .choose-plan .plan-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.main-content_landing .choose-plan .plan-radio .radio-circle {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-content_landing .choose-plan .plan-radio .radio-circle.selected {
  background: #4E4F1C;
  border-color: #4E4F1C;
}
.main-content_landing .choose-plan .plan-radio .radio-circle.selected::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../img/vector.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-content_landing .choose-plan .plan-radio .left {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.main-content_landing .choose-plan .plan-radio .left h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 6px;
}
.main-content_landing .choose-plan .plan-radio .left .save-box {
  background-color: #FFE1D8;
  color: #FD5A26;
  padding: 2px 4px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  border-radius: 6px;
  margin-bottom: 6px;
  font-weight: bold;
}
.main-content_landing .choose-plan .plan-radio .left .mini-price {
  display: flex;
  gap: 8px;
}
.main-content_landing .choose-plan .plan-radio .left .mini-price h6 {
  color: #A9A596;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: 400;
}
.main-content_landing .choose-plan .plan-radio .right {
  width: 55%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.main-content_landing .choose-plan .plan-radio .right .pr {
  color: #A9A596;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: 400;
  position: relative;
}
.main-content_landing .choose-plan .plan-radio .right .pr::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E70000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-content_landing .choose-plan .plan-radio .right .per-day {
  display: flex;
  align-items: flex-start;
}
.main-content_landing .choose-plan .plan-radio .right .per-day h6 {
  font-weight: 600;
  color: #A9A596;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
.main-content_landing .choose-plan .plan-radio .right .per-day h4 {
  font-size: 55px;
  color: #A9A596;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 44px;
}
.main-content_landing .choose-plan .plan-radio .right .per-day .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.main-content_landing .choose-plan .plan-radio .right .per-day .txt h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
  color: #A9A596;
  display: inline-block;
}
.main-content_landing .choose-plan .plan-radio .right .per-day .txt p {
  color: #A9A596;
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 0;
  font-weight: 500;
  align-self: start;
  display: inline-block;
  white-space: nowrap;
}
.main-content_landing .choose-plan .plan-option.selected {
  border-color: #4E4F1C;
  background: #F6F4EB;
}
.main-content_landing .choose-plan .plan-option.selected .right .per-day h6, .main-content_landing .choose-plan .plan-option.selected .right .per-day h4, .main-content_landing .choose-plan .plan-option.selected .right .per-day .txt h5, .main-content_landing .choose-plan .plan-option.selected .right .per-day .txt p {
  color: #000C1F;
}
.main-content_landing .choose-plan .plan-option.selected .left .save-box {
  background-color: #FD5A26;
  color: #fff;
}
.main-content_landing .choose-plan .p-info {
  text-align: left;
  background-color: #F2F6FB;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0.4px;
  margin-top: 20px;
  color: #5E5E59;
}
.main-content_landing .choose-plan .p-info a {
  color: #5E5E59;
}
.main-content_landing .choose-plan .an-info {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
}
.main-content_landing .choose-plan .an-info img {
  width: 20px;
  margin-right: 4px;
}
.main-content_landing .choose-plan .cta-button {
  padding: 14px;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}
.main-content_landing .choose-plan .pay-safe {
  margin-bottom: 12px;
  padding: 4px 12px;
  background-color: #ECFBF2;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.main-content_landing .choose-plan .pay-safe img {
  width: 20px;
  margin-right: 6px;
}
.main-content_landing .choose-plan .pay-safe p {
  color: #02963D;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}
.main-content_landing .choose-plan .img-pay-logos {
  width: 100%;
}
.main-content_landing .mail-block {
  padding: 20px 0;
  margin-bottom: 16px;
  background-color: #F0F0E3;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 10px;
}
.main-content_landing .mail-block h3 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}
.main-content_landing .mail-block img {
  width: 100%;
}
.main-content_landing .text-landing {
  background-color: #fff;
  border: 1px solid #FFFFFF;
  padding: 24px;
  margin-top: 20px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.main-content_landing .text-landing .items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-content_landing .text-landing .items .item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-content_landing .text-landing .items .item span {
  font-size: 20px;
  line-height: 26px;
}
.main-content_landing .text-landing .items .item p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.main-content_landing .text-landing .text-landing-cta {
  margin-top: 20px;
  margin-bottom: 0;
  border-radius: 12px;
}
.main-content_landing .landing-block {
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  border-bottom-left-radius: 99px;
  border-bottom-right-radius: 99px;
  padding-top: 24px;
  margin-top: 16px;
}
.main-content_landing .landing-block h3 {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}
.main-content_landing .landing-block img {
  width: 100%;
  margin-bottom: -8px;
  border: none;
}
.main-content_landing .reviews-landing {
  border-radius: 12px;
  background-color: #E8F2D8;
  padding: 24px 16px;
  margin-top: 16px;
}
.main-content_landing .reviews-landing h2 {
  margin-bottom: 8px;
}
.main-content_landing .reviews-landing h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.main-content_landing .reviews-landing h3 span {
  color: #CC9D04;
}
.main-content_landing .reviews-landing .rev-top {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #fff;
}
.main-content_landing .reviews-landing .rev-top h4 {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 0;
  margin-right: 12px;
  color: #CC9D04;
  font-weight: bold;
}
.main-content_landing .reviews-landing .rev-top .app_store {
  width: 40px;
}
.main-content_landing .reviews-landing .rev-top .txt {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.main-content_landing .reviews-landing .rev-top .txt img {
  width: 106px;
  margin-bottom: 8px;
}
.main-content_landing .reviews-landing .rev-top .txt h5 {
  color: #5E5E59;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.main-content_landing .reviews-landing .items {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-content_landing .reviews-landing .items .item {
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
}
.main-content_landing .reviews-landing .items .item .star-img {
  width: 106px;
  margin-bottom: 12px;
}
.main-content_landing .reviews-landing .items .item p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 12px;
}
.main-content_landing .reviews-landing .items .item .bottom {
  display: flex;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.main-content_landing .reviews-landing .items .item .bottom img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 12px;
}
.main-content_landing .reviews-landing .items .item .bottom h6 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
}
.main-content_landing .faq-landing {
  background: #FBF7EC;
  border-radius: 12px;
  padding: 24px 16px;
  margin: 20px 0;
  border: 1px solid #FFFFFF;
  margin-bottom: 16px;
}
.main-content_landing .faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-content_landing .faq-item {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 20px;
  padding-top: 0;
}
.main-content_landing .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  padding-bottom: 0;
  background: #fff;
}
.main-content_landing .faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000C1F;
  margin: 0;
}
.main-content_landing .faq-icon img {
  width: 16px;
}
.main-content_landing .faq-content {
  background: #fff;
  border-top: 1px solid #F0F0E3;
  padding-top: 8px;
  margin-top: 16px;
}
.main-content_landing .faq-content p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 8px;
}
.main-content_landing .faq-content p:last-child {
  margin-bottom: 0;
}
.main-content_landing .faq-content.hidden {
  display: none;
}
.main-content_landing .choose-plan-black {
  background-color: #171302;
  color: #fff;
}
.main-content_landing .choose-plan-black .plan-option {
  background-color: #171302;
  border: 1px solid #2D4260;
}
.main-content_landing .choose-plan-black .plan-radio .radio-circle {
  background-color: #171302;
  border: 1px solid #2D4260;
}
.main-content_landing .choose-plan-black .plan-radio .left .save-box {
  background-color: #5E3C32;
  color: #FD5A26;
}
.main-content_landing .choose-plan-black .plan-option.selected {
  background-color: #171302;
}
.main-content_landing .choose-plan-black .plan-option.selected .right .per-day h6, .main-content_landing .choose-plan-black .plan-option.selected .right .per-day h4, .main-content_landing .choose-plan-black .plan-option.selected .right .per-day .txt h5, .main-content_landing .choose-plan-black .plan-option.selected .right .per-day .txt p {
  color: #fff;
}
.main-content_landing .choose-plan-black .p-info {
  background-color: #20210C;
  color: #D1D1C1;
  font-size: 11px;
  line-height: 18px;
}
.main-content_landing .choose-plan-black .p-info a {
  color: #A6B6CF;
}
.main-content_landing .choose-plan-black .pay-safe {
  background-color: #002F13;
}
.main-content_landing .choose-plan-black .pay-safe p {
  color: #02963D;
}
.main-content_landing .landing-safe {
  background-color: #171302;
  text-align: center;
  padding: 24px 20px;
  color: #fff;
  border-radius: 12px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.main-content_landing .landing-safe img {
  width: 120px;
  margin-bottom: 20px;
}
.main-content_landing .landing-safe h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 12px;
}
.main-content_landing .landing-safe p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
.main-content_landing .landing-safe .p-fg {
  display: block;
  height: 15px;
  width: 100%;
}
.main-content_landing .landing-safe a {
  color: #EEBC1A;
  text-decoration: none;
}

.terms-policy h1 {
  font-size: 26px;
  margin-bottom: 28px;
  font-weight: 600;
  text-align: center;
}
.terms-policy h2 {
  font-size: 20px;
  color: #CC9D04;
  margin-bottom: 12px;
  font-weight: 600;
}
.terms-policy h3 {
  font-size: 18px;
  color: #CC9D04;
  margin-bottom: 12px;
  font-weight: 600;
}
.terms-policy p {
  margin-bottom: 28px;
}
.terms-policy ul {
  padding-left: 20px;
  margin-bottom: 28px;
}

.payment-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
  padding: 20px;
}

.payment-btn {
  padding: 12px 24px;
  background: #CC9D04;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.payment-btn:hover {
  background: #4E4F1C;
}

.payment-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  margin: 0 auto;
  padding: 20px;
}

.payment-window {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 510px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 16px;
  margin: 20px auto;
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.payment-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #000C1F;
  margin: 0;
}

.payment-close {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  transition: background 0.2s ease;
  margin-bottom: 8px;
}

.payment-close img {
  width: 24px;
}

.payment-body h2 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.payment-body .red {
  color: #E70000;
}
.payment-body .info-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment-body .info-price .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-body .info-price .item p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}
.payment-body .info-price .item span {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.payment-body .fg {
  margin: 8px 0;
  width: 100%;
  background-color: #F1F6FF;
  height: 1px;
}
.payment-body .info-price_main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment-body .info-price_main .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-body .info-price_main .item p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.payment-body .info-price_main .item span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.payment-body .pay-s-modal {
  border-radius: 999px;
  padding: 4px 12px;
  color: #02963D;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background-color: #ECFBF2;
  display: flex;
  width: 146px;
  white-space: nowrap;
  justify-content: center;
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 16px;
  text-align: center;
}
.payment-body .modal-img-logos {
  width: 100%;
  margin-bottom: 16px;
}
.payment-body h6 {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 19px;
  color: #5E5E59;
  letter-spacing: 0.5;
  font-weight: 400;
}

.reviews-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 400px;
}

.loading-section h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #000C1F;
  margin-bottom: 40px;
  text-align: center;
}

.highlight {
  color: #CC9D04;
}

.progress-item {
  padding-bottom: 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 25px;
  color: #000C1F;
  font-weight: 600;
}

.progress-percentage {
  color: #5E5E59;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: flex-end;
}

.progress-bar-container {
  width: 100%;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #fff;
  border-radius: 4px;
}

.progress-fill {
  height: 100%;
  background: #4E4F1C;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
}

.reviews-section {
  width: 100%;
  background: #F6F4EB;
  max-width: 550px;
  margin: 0 auto;
  position: fixed;
  bottom: 53px;
  left: 50%;
  transform: translate(-50%);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
}

/* Reviews Section */
.reviews-section h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 16px;
}

.review-slider-container {
  overflow: hidden;
  position: relative;
  margin-bottom: 0px;
}

.review-slider {
  position: relative;
  min-height: 120px;
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.review-card.slide-out-left {
  animation: slideOutLeft 0.5s ease-in-out forwards;
}

.review-card.slide-in-right {
  animation: slideInRight 0.5s ease-in-out forwards;
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.reviewer-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #5E5E59;
}

.review-date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #5E5E59;
}

.review-stars-verified {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-verified {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #15803d;
}

.review-verified img{
  width: 12px;
}

.stars img {
  width: 108px;
}

.review-text {
  font-size: 15px;
  line-height: 22px;
  color: #000C1F;
  margin: 0;
}

.review-text strong {
  font-weight: 700;
  color: #111827;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 12, 31, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999999999 !important;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: white;
  border-radius: 12px;
  padding: 20px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.01), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.modal-prompt {
  font-size: 15px;
  line-height: 22px;
  color: #5E5E59;
  font-weight: 400;
  margin-bottom: 8px;
}

.modal-question {
  font-size: 17px;
  line-height: 25px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
}

.modal-btn {
  flex: 1;
  padding: 14px 24px;
  border: 1px solid #F1F6FF;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-btn-no {
  background: #F3EBD0;
  color: #000C1F;
}

.modal-btn-yes {
  background: #F3EBD0;
  color: #000C1F;
}
/* Hidden elements */
.hidden {
  display: none;
}

/* Progress item separator */
.progress-item.completed {
  border-bottom: 1px solid #E7E6D4;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

/* Checkmark Animation */
.checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #4E4F1C;
  border-radius: 999px;
  position: relative;
  margin-left: 8px;
  opacity: 1;
  top: auto;
  left: auto;
  transform: translate(0);
  margin: 0;
}

.checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 8px;
  transform: translate(-50%, -50%);
  background: url(../img/vector.svg) no-repeat center center;
  background-size: contain;
}

/* Show animation */
.show-block {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Email Form Section */
.email-form-section {
  text-align: center;
  padding: 20px 0;
}

.email-form-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000C1F;
  margin-bottom: 28px;
  line-height: 32px;
}

.email-form {
  max-width: 400px;
  margin: 0 auto 20px;
}

.form-group {
  margin-bottom: 12px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  color: #000C1F;
  margin-bottom: 12px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #000C1F;
  background: white;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #CC9D04;
}

/* Show red border only after user has interacted with invalid input */
.form-input:user-invalid {
  border-color: #E70000;
}

.form-input:user-invalid:focus {
  outline: none;
  border-color: #E70000;
}

.form-input.error {
  border-color: #E70000;
}

.form-input.error:focus {
  outline: none;
  border-color: #E70000;
}

.form-input::-moz-placeholder {
  color: #5E5E59;
}

.form-input::placeholder {
  color: #5E5E59;
}

.error-message {
  color: #E70000;
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
  display: none;
}

.error-message.show {
  display: block;
}

.privacy-notice {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  text-align: left;
}

.privacy-icon img {
  width: 20px;
  margin-right: 6px;
}

.privacy-text {
  font-size: 14px;
  line-height: 22px;
  color: #5E5E59;
}

.continue-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #4E4F1C;
  color: white;
  box-shadow: inset 0px 4px 8px 0px rgba(255, 255, 255, 0.24);
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.continue-btn-email {
  animation: pulse 0s infinite ease-in-out;
}

.continue-btn:hover {
  background: #4E4F1C;
}

.continue-btn:active {
  transform: translateY(1px);
}

.awards-section img {
  width: 100%;
  max-width: 450px;
}

/* Plan Ready Section */
.plan-ready-section {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 16px;
  margin-top: -24px;
  margin-bottom: 55px;
  box-shadow: 0 4px 24px rgba(0, 12, 31, 0.06);
}

.plan-ready-chart-wrap {
  margin-bottom: 8px;
}

.plan-ready-chart-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.video-avatas.plan-ready-social {
  align-items: flex-start;
}

.plan-ready-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.plan-ready-avatars img {
  width: 163px;
  height: auto;
}

.plan-ready-thumb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4e4f1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  margin-left: -14px;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.plan-ready-social p {
  flex: 1;
  min-width: 0;
}

.plan-ready-social p strong {
  font-weight: 700;
  color: #000c1f;
}

.plan-ready-section #finalContinueBtn {
  position: fixed;
}

.plan-ready-section h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #000C1F;
  margin-bottom: 8px;
}

.plan-description {
  font-size: 16px;
  line-height: 24px;
  color: #000C1F;
  margin-bottom: 32px;
}

.progress-graph-container video,
.progress-graph-container .plan-ready-chart-svg {
  width: 100%;
}

@media (max-width: 480px) {
  .email-form-section h2 {
    font-size: 24px;
  }
  .awards-section {
    gap: 16px;
  }
  .award {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  .award-icon {
    font-size: 20px;
  }
  .award-title {
    font-size: 11px;
  }
  .award-subtitle {
    font-size: 13px;
  }
  .plan-ready-section h2 {
    font-size: 24px;
  }
  .graph-header {
    left: -30px;
  }
  .y-axis-labels {
    height: 160px;
  }
  .graph-content {
    height: 160px;
    margin-left: 15px;
  }
}
.email-copy-container {
  margin: 20px 0;
  position: relative;
}

.email-copy-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #000C1F;
}

.email-text {
  font-size: 16px;
  color: #1F2000;
  flex: 1;
  -moz-text-align-last: left;
       text-align-last: left;
}

.copy-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}
.copy-button span {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.copy-status {
  background: #FFFFFF;
  width: 100%;
  max-width: 510px;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 16px;
  line-height: 24px;
  color: #000C1F;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0px 2px 0px #02963D;
}
.copy-status img {
  width: 24px;
  margin-right: 12px;
}

.copy-block {
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}

.copy-status.show {
  opacity: 1;
  visibility: visible;
}

.cta-button-an {
  animation: pulse-none 1.5s infinite ease-in-out;
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .main-title {
    font-size: 28px;
  }
  .stats-section {
    flex-direction: column;
    gap: 8px;
  }
  .stat-card {
    max-width: none;
  }
  .image-placeholder {
    height: 250px;
  }
  .highlight-db {
    display: block;
  }
}
@media (max-width: 360px) {
  .main-title {
    font-size: 24px;
  }
  .description {
    font-size: 14px;
  }
  .cta-button {
    font-size: 16px;
    padding: 14px 24px;
  }
}/*# sourceMappingURL=style.css.map */


.main-content_landing .top-block .top-block-rt {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.main-content_landing .top-block .top-block-rt .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
.main-content_landing .top-block .top-block-rt .items .fg {
  background-color: #F0F0E3;
  width: 100%;
  height: 1px;
}
.main-content_landing .top-block .top-block-rt .items .item {
  text-align: left;
}
.main-content_landing .top-block .top-block-rt .items .item h5 {
  color: #1F2000;
  font-weight: 900;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 6px;
}
.main-content_landing .top-block .top-block-rt .items .item img {
  width: 100%;
  margin-bottom: 4px;
}
.main-content_landing .top-block .top-block-rt .items .item h6 {
  color: #1F2000;
  font-weight: 900;
  font-size: 12px;
  line-height: 16px;
}

.main-content_landing .landing-block {
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  border-bottom-left-radius: 99px;
  border-bottom-right-radius: 99px;
  padding-top: 24px;
  margin-top: 16px;
}
.main-content_landing .landing-block h3 {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 26px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
}
.main-content_landing .landing-block img {
  width: 100%;
  margin-bottom: -8px;
  border: none;
}
.main-content_landing .landing-block_items {
  padding: 24px 20px;
  border-radius: 12px;
  text-align: left;
}
.main-content_landing .landing-block_items .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.main-content_landing .landing-block_items .items .item {
  padding: 16px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 10px;
}
.main-content_landing .landing-block_items .items .item .b-text {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 0;
  text-align: left;
}
.main-content_landing .landing-block_items .items .item .m-text {
  font-size: 16px;
  line-height: 24px;
  color: #1F2000;
  text-align: left;
}
.main-content_landing .landing-block_items .items .item-1 {
  background-color: #FFF1E9;
}
.main-content_landing .landing-block_items .items .item-1 .b-text {
  color: #FF6410;
}
.main-content_landing .landing-block_items .items .item-2 {
  background-color: #FFF8D8;
}
.main-content_landing .landing-block_items .items .item-2 .b-text {
  color: #CC9D04;
}
.main-content_landing .landing-block_items .items .item-3 {
  background-color: #E8F2D8;
}
.main-content_landing .landing-block_items .items .item-3 .b-text {
  color: #69A008;
}
.main-content_landing .landing-block_items .dec {
  color: #5E5E59;
  font-size: 12px;
  line-height: 18px;
}
.main-content_landing .reviews-landing {
  border-radius: 12px;
  background-color: #ECFBF2;
  padding: 24px 16px;
  margin-top: 16px;
  border: 1px solid #FFFFFF;
}
.main-content_landing .reviews-landing h2 {
  margin-bottom: 8px;
}
.main-content_landing .reviews-landing h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}

.main-content_landing .reviews-landing {
  border-radius: 12px;
  background-color: #ECFBF2;
  padding: 24px 16px;
  margin-top: 16px;
  border: 1px solid #FFFFFF;
}
.main-content_landing .reviews-landing h2 {
  margin-bottom: 8px;
}
.main-content_landing .reviews-landing h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}
.main-content_landing .reviews-landing h3 span {
  color: #CC9D04;
  font-weight: 600;
}
.main-content_landing .reviews-landing .rev-top {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background-color: #fff;
  margin-bottom: 12px;
}
.main-content_landing .reviews-landing .rev-top img {
  width: 36px;
}
.main-content_landing .reviews-landing .rev-top .txt {
  display: flex;
  flex-direction: column;
}
.main-content_landing .reviews-landing .rev-top .txt h4 {
  font-size: 15px;
  line-height: 22px;
  color: #1F2000;
  margin-bottom: 2px;
}
.main-content_landing .reviews-landing .rev-top .txt h4 span {
  color: #0B61E5;
}
.main-content_landing .reviews-landing .rev-top .txt h4 .tr {
  color: #00A56E;
}
.main-content_landing .reviews-landing .rev-top .txt p {
  color: #5E5E59;
  font-size: 14px;
  line-height: 20px;
}
.main-content_landing .reviews-landing .items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-content_landing .reviews-landing .items .item {
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
}
.main-content_landing .reviews-landing .items .item .star-img {
  width: 106px;
  margin-bottom: 12px;
}
.main-content_landing .reviews-landing .items .item p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 12px;
}
.main-content_landing .reviews-landing .items .item .bottom {
  display: flex;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.main-content_landing .reviews-landing .items .item .bottom img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 12px;
}
.main-content_landing .reviews-landing .items .item .bottom h6 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.challenge-review-card {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.review-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-stars {
  width: 127px;
  height: auto;
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-icon {
  width: 12px;
  height: 12px;
}

.verified-text {
  font-size: 12px;
  line-height: 16px;
  color: #1F2000;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.reviewer-name {
  font-size: 14px;
  line-height: 20px;
  color: #5E5E59;
}

.review-date {
  font-size: 14px;
  line-height: 20px;
  color: #5E5E59;
}

.review-text {
  font-size: 15px !important;
  line-height: 22px !important;
  color: #1F2000 !important;
  margin: 0;
  text-align: left;
}

.review-text strong {
  font-weight: 600;
  color: #1F2000;
}

/* Prepare Smarter Section */
.learning-video-container {
  margin-bottom: 24px;
}
.learning-video-container video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.learning-effectiveness {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.main-content_landing  .mail-block-bottom{
  background: transparent;
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.main-content_landing .landing-block_items{
  margin-top: 10px;
}

.main-content_landing .reviews-landing{
  background-color: #E8F2D8;
}

.main-content_landing .reviews-landing .rev-top .txt{
  text-align: left;
  align-items: start;
  justify-content: start;
}

.main-content_landing .reviews-landing .rev-top{
  justify-content: start;
}

.cta-button-paypal{
  background-color: #FFC43A;
}

.cta-button-apple{
  background-color: #000;
}

.sp-now{
  color: #00A56E !important;
}
