.lms-page-wrapper {
  font-family: "Mulish", sans-serif;
}

/* Scope headings to main content sections only */
.lms-main-section h1,
.lms-main-section h2,
.lms-main-section h3,
.lms-main-section h4,
.lms-main-section h5,
.lms-main-section h6 {
  color: #0d5e73 !important;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 38px !important;
}

/* Scroll Animation Styles */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Unique Sticky Sub-Nav for LMS */
#lms-sticky-subnav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 999;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
}

#lms-sticky-subnav.lms-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lms-subnav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lms-subnav-logo img {
  height: 40px;
  width: auto;
}

.lms-subnav-links {
  display: flex;
  gap: 25px;
}

.lms-subnav-link {
  text-decoration: none !important;
  color: #475569;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.lms-subnav-link:hover,
.lms-subnav-link.lms-active {
  color: #0d5e73;
}

.lms-subnav-link.lms-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0d5e73;
}

/* Comparison Section Redesign - Direct Table */
.comparison-container {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(13, 94, 115, 0.08);
  border: 1px solid rgba(13, 94, 115, 0.05);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table thead th {
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  border: none;
}

.comp-table thead th.feature-col {
  text-align: left;
  background: #f8fafc;
  color: #64748b;
  width: 30%;
}

.comp-table thead th.saas-col {
  background: #fff5f5;
  color: #c53030;
  width: 35%;
}

.comp-table thead th.private-col {
  background: #0d5e73;
  color: #fff;
  width: 35%;
  position: relative;
}

.comp-table thead th.private-col::after {
  content: "MOST RECOMMENDED";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #000;
  font-size: 0.65rem;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 1px;
}

.comp-table tbody td {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
}

.comp-table tbody td.feature-name {
  text-align: left;
  background: #f8fafc;
  color: #0d5e73;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comp-table tbody td.feature-name i {
  width: 32px;
  height: 32px;
  background: rgba(13, 94, 115, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.comp-table tbody td.saas-val {
  color: #e53e3e;
  background: #fffcfc;
}

.comp-table tbody td.private-val {
  color: #0d5e73;
  background: #f0f9ff;
  font-size: 1.1rem;
  font-weight: 800;
}

.comp-table td i.fa-times-circle {
  color: #feb2b2;
  margin-right: 8px;
}
.comp-table td i.fa-check-circle {
  color: #0d5e73;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .comparison-container {
    border-radius: 15px;
    overflow-x: auto;
  }
  .comp-table {
    min-width: 600px;
  }
  .comp-table thead th,
  .comp-table tbody td {
    padding: 1rem;
  }
}

/* Hero Section Styles */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(13, 94, 115, 0.08) 0%,
    rgba(13, 94, 115, 0.02) 100%
  );
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
  animation: float-blob 20s infinite alternate ease-in-out;
}
.blob-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
}
.blob-2 {
  bottom: -10%;
  left: -10%;
  width: 700px;
  height: 700px;
  animation-delay: -5s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(50px, -30px) rotate(10deg) scale(1.05);
  }
  66% {
    transform: translate(-30px, 50px) rotate(-10deg) scale(0.95);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.hero-circle {
  position: absolute;
  border: 1px solid rgba(13, 94, 115, 0.1);
  border-radius: 50%;
  z-index: 0;
  animation: pulse-circle 10s infinite ease-in-out;
}
.circle-1 {
  width: 300px;
  height: 300px;
  top: 15%;
  left: -5%;
  animation-delay: 0s;
}
.circle-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: 5%;
  animation-delay: -3s;
}

@keyframes pulse-circle {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

.hero-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(
    rgba(13, 94, 115, 0.15) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  z-index: 0;
  animation: float-dots 20s infinite linear;
}
.dots-1 {
  top: 25%;
  right: 10%;
}
.dots-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: -7s;
}

@keyframes float-dots {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, 20px);
  }
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: rgba(240, 249, 255, 0.5);
  z-index: 0;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
}
.hero-waves svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wave-anim {
  animation: wave-move 10s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.wave-anim-delay {
  animation: wave-move 15s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-delay: -2s;
}
@keyframes wave-move {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #4a5a6a;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4a5a6a;
}
.check-item i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Pricing Section Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.pricing-card {
  background: white;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  padding: 45px 35px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.pricing-card.featured {
  border: 2px solid var(--secondary);
}
.pricing-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 5px;
}
.price-sub {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 25px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
  flex-grow: 1;
}
.pricing-card ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul li i {
  color: #22c55e;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}
/* FAQ Section Styles */
#faq {
  background-color: #f8fafc !important;
}
.accordion-button:not(.collapsed) {
  color: #0d5e73;
  background-color: transparent;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 1rem !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.accordion-button {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  color: #1e293b;
  background-color: #fff;
}
.accordion-button::after {
  background-image: none !important;
  content: "+";
  font-family: "Mulish", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0d5e73;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
  color: #0d5e73;
}
.accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Button Styles */
.btn-lms-preview {
  background: #0d5e73 !important;
  color: white !important;
  padding: 15px 35px !important;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
}
.btn-lms-preview:hover {
  background: #0a4a5a !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 94, 115, 0.2);
}

.btn-outline-lms {
  border: 2px solid #0d5e73;
  color: #0d5e73;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-lms:hover {
  background: #0d5e73;
  color: #fff !important;
  border-color: #0d5e73;
  transform: translateY(-3px);
}
