* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --primary: #6e7988;
  --dosen-brand: #f7941f;
  --dosen-brand2: #F15A26;
  --dosen-brand3: #F79420;
  --solid-dark-gray: #3f3f42;
  --primary2: #0f0f0f;
  --primary3: #43434c;
  --primary4: #a9b2be;
  --solids-white: #fdfdfd;
  --primary5: #f5f5f5;
  --ui-warning: #f8db00;
  --F7B921: #f7b921;
  --FFFFFF: #ffffff;
}
.ajcal-calculator-container {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
}

.ajcal-calculator-grid {
  display: grid;
  grid-template-columns: 0.22fr .78fr;
  background-color: white;
  border-radius: 16px;
  border: 2px solid #f79420;
  overflow: hidden;
}

.ajcal-calculator-grid.ajcal-lma-calculator-grid {
  grid-template-columns: 20.5fr 60fr;
}

/* Left Panel */
.ajcal-left-panel {
  background-color: var(--primary5);
  padding: 32px;
  border-right: 2px solid #f79420;
}

.ajcal-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/*.panel-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}*/

h1.ajcal-main-title {
  margin-top: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 30px;
}

p.ajcal-description {
  color: var(--primary3);
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 17px;
}

.ajcal-lma-calculator-grid .ajcal-description {
  /* font-size: 16px; */
  margin-bottom: 22px;
}

.ajcal-methodology {
  margin-top: -7px;
  text-decoration: underline;
  font-size: 10px;
  color: var(--primary);
  font-style: italic;
}
a.ajcal-methodology-text{
  color: var(--primary) !important;
}
/* Right Panel - Grouped panels */
.ajcal-right-panel {
  display: grid;
  grid-template-columns: 1.4fr 2.5fr 1fr;
  min-height: 100%;
  padding: 35px;
}

/* Sliders Panel */
.ajcal-sliders-panel {
  display: flex;
  flex-direction: column;
}

.ajcal-slider-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ajcal-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ajcal-slider-label,
.ajcal-currency-label {
  color: var(--primary2);
  font-weight: 500;
  font-size: 14px;
}

.ajcal-value-badge {
  position: absolute;
  top: -10px;
  padding: 2px 3px;
  background-color: var(--primary3);
  color: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  transform: translateX(-50%);
  transition: left 0.15s ease-out;
  z-index: 2;
  border: none;
  min-width: 40px;
  text-align: center;
}

button.ajcal-currency-btn {
  color: var(--primary2);
}

.ajcal-value-badge:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--primary3);
}

.ajcal-slider-container {
  position: relative;
  padding-top: 5px;
  width: 100%;
  /* margin-bottom: 42px; */
  margin-bottom: 35px;
}

.ajcal-jquery-slider {
  width: 100%;
  height: 8px;
  background: #e8e8e8;
  border: none;
  border-radius: 4px;
  outline: none !important;
}

.ui-slider-horizontal {
  height: 5px;
  background: var(--primary4);
}

.ui-slider-horizontal .ui-slider-handle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary3);
  border: none;
  outline: none !important;
  cursor: pointer;
  margin-left: -10px;
  top: -6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.ajcal-jquery-slider .ui-widget-header {
  background: var(--dosen-brand);
  border-radius: 4px 0 0 4px;
}

.ajcal-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 5px;
}

/* Chart and Legend Container */
.ajcal-chart-legend-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

/* Chart Panel */
.ajcal-chart-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ajcal-chart-container {
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s ease-out;
}

@keyframes chartPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.chart-container.animate {
  transform: scale(1.05);
}

.chart-container svg path {
  transform-origin: center;
}

.chart-container.animate svg path {
  animation: pathReveal 0.8s ease-out forwards;
}

@keyframes pathReveal {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-180deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes chartFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.donut-chart {
  transform: rotate(-90deg);
  animation: chartSpin 1.2s ease-out forwards;
}

@keyframes chartSpin {
  from {
    transform: rotate(-180deg);
  }

  to {
    transform: rotate(-90deg);
  }
}

.ajcal-chart-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ajcal-chart-text {
  text-align: center;
}

.ajcal-chart-text p,
.ajcal-legend-panel p {
  margin: 0;
}

.ajcal-benefits-label {
  color: var(--primary2);
  font-weight: bold;
  font-size: 14px;
}

.ajcal-benefits-value {
  color: var(--primary2);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px !important;
  line-height: 1em;
}

.ajcal-roi-label {
  color: var(--primary2);
  font-weight: bold;
  font-size: 14px;
}

.ajcal-roi-value {
  color: var(--primary);
  font-size: 32px;
}

/* Legend Panel */
.ajcal-legend-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ajcal-legend-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ajcal-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ajcal-legend-color {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: -4px;
}

.ajcal-legend-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ajcal-legend-title {
  font-size: 10px;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 4px;
}

.ajcal-legend-value {
  color: var(--primary4);
  font-size: 24px;
  text-align: right;
  line-height: 1em;
}

.ajcal-legend-subtitle {
  color: var(--primary4);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: end;
}

a.ajcal-button-result {
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  color: white !important;
  background: var(--dosen-brand);
  margin-bottom: 8px;
  border-radius: 30px;
}

/* Modal Form Styles */
.ajcal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.ajcal-modal.active {
  display: flex;
}

.ajcal-modal-content {
  background-color: white;
  padding: 35px;
  width: 90%;
  max-width: 490px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.ajcal-modal-close,.ajcal-info-close {
  position: absolute;
  background: none !important;
  top: 35px;
  right: 35px;
  border: none;
  font-size: 34px;
  padding: 0;
  color: var(--primary3);
  border-radius: 50%;
  height: 52px;
  width: 52px;
}
.ajcal-modal-close:hover,.ajcal-info-close:hover {
  color: var(--dosen-brand2);
}
.ajcal-modal-title {
  color: var(--dosen-brand);
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 16px;
}

.ajcal-modal-subtitle {
  color: var(--primary3);
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 22px;
}

.ajcal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ajcal-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ajcal-form-field label {
  color: var(--primary3);
  font-size: 14px;
  font-weight: 500;
  /*font-family: inter;*/
}

.ajcal-form-field input {
  padding: 8px 12px;
  border: 1px solid #959CA8;
  border-radius: 6px;
  font-size: 14px;
  color: var(--primary3);
}

.ajcal-form-field input::placeholder {
  color: var(--primary4);
}

.ajcal-form-field input:focus {
  outline: none;
  border-color: var(--dosen-brand);
}

button.ajcal-form-submit, button.ajcal-form-submit:hover {
  width: 100%;
  padding: 16px;
  background-color: #e8e8e8 ;
  color: var(--primary3);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ajcal-form-submit.active,.ajcal-form-submit.active:hover {
  background-color: var(--dosen-brand);
  color: white;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .calculator-container {
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
  }
}

.ajcal-calculations-note {
  color: var(--primary);
  font-size: 10px;
  font-style: italic;
  text-align: right;
}

.ajcal-retry-button {
  width: 100%;
  margin-top: 10px;
  background: var(--dosen-brand);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.ajcal-retry-button:hover {
  background: #f7ba20;
}

.ajcal-retry-button svg {
  transition: transform 0.3s;
}

.ajcal-retry-button:hover svg {
  transform: rotate(180deg);
}

.ajcal-slider-container.disabled {
  /* opacity: 0.6; */
  cursor: not-allowed;
}

.ui-widget.ui-widget-content {
  border: none !important
}

.ajcal-slider-container.disabled .ui-slider-handle {
  cursor: not-allowed;
}
.header-mobile{
  display: none;
}
@media (max-width: 900px) {
  .ajcal-modal-title{
    display: none;
  }
  .header-mobile {
    padding: 35px 35px 0;
    display: grid;
    grid-template-columns: 10fr 1fr;
}
.ajcal-modal-content .header-mobile {
  padding: 0;
}
.header-mobile h2{
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}
.ajcal-left-panel{
  padding: 35px;
}
  .ajcal-benefits-value{margin-bottom: 10px !important;}
  .ajcal-left-panel{border:none !important;}
  .calculator-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .chart-panel {
    order: -1;
  }

  .main-title {
    font-size: 20px;
  }

  .benefits-value {
    font-size: 24px;
  }

  .roi-value {
    font-size: 18px;
  }
  .ajcal-modal-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
  }
  .learning-maturity-assessment .rating-label{line-height: 1.2em; gap: 20px;}
  
}

/* Button Loading Animation */
@keyframes buttonProgress {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

#submitResults.loading {
  background: linear-gradient(90deg,
      var(--dosen-brand) 0%,
      var(--ui-warning) 50%,
      var(--dosen-brand) 100%);
  background-size: 200% 100%;
  animation: buttonProgress 1.5s infinite;
  pointer-events: none;
}

#submitResults:disabled {
  opacity: 0.7;
}

/* CTA Section */
.ajcal-cta-section {
  padding: 20px 0;
  display: none;
}

.ajcal-cta-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ajcal-cta-header {
  text-align: center;
  margin-bottom: 20px;
}

.ajcal-cta-main-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary2);
  margin-bottom: 0;
  line-height: 1.2;
}

.ajcal-cta-subtitle {
  font-size: 30px;
  color: #f79420;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ajcal-calculator-icon {
  color: #f79420;
}

.ajcal-intro-call-card {
  background-color: white;
  border: 2px solid #f79420;
  border-radius: 10px;
  padding: 20px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ajcal-card-content {
  flex: 1;
}

.ajcal-card-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary2);
  margin-bottom: 0;
}

.ajcal-cta-container .ajcal-intro-call-card {
  margin-bottom: 0;
}

.ajcal-card-description {
  font-size: 18px;
  color: #f79420;
  font-weight: 600;
  line-height: 1.2em;
  margin: 0;
  letter-spacing: .18px;
  /* max-width: 597px; */
}

.ajcal-intro-call-btn {
  background-color: #f79420 !important;
  color: white !important;
  border: none;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  margin-left: 24px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* .ajcal-intro-call-btn:hover {
  background-color: #e6850e;
} */

a.ajcal-maturity-link {
  color: #f79420 !important;
  text-decoration: underline;
  font-size: 12px;
  font-weight: bold;
  transition: color 0.2s;
}

/* a.ajcal-maturity-link:hover {
  color: #e6850e;
} */

/* Responsive Design for CTA Section */
@media (max-width: 1200px) {
  .cta-container {
    width: 100%;
    max-width: 1100px;
  }
}

@media (max-width: 900px) {
  .cta-main-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 20px;
    flex-direction: column;
    gap: 4px;
  }

  .intro-call-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .intro-call-btn {
    margin-left: 0;
    width: 100%;
    max-width: 200px;
  }

  .card-description {
    font-size: 16px;
  }
  .ajcal-cta-section{margin: 20px;}
  .ajcal-cta-container .ajcal-intro-call-card {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}
.lma_levels_level_sidebar{padding: 10px;}
h1.ajcal-main-title {
  max-width: 360px;
}
}

@media (max-width: 480px) {
  .cta-main-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 18px;
  }

  .intro-call-card {
    padding: 24px;
  }

  .card-question {
    font-size: 16px;
  }

  .card-description {
    font-size: 14px;
  }
}

.ajcal-button-result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ajcal-button-text {
  display: inline-block;
}

.ajcal-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: ajcal-spin 1s linear infinite;
}

.ajcal-button-result.loading .ajcal-button-text {
  display: none;
}

.ajcal-button-result.loading .ajcal-loader {
  display: inline-block;
}

.ajcal-button-result.loading,
#submitResults.loading {
  pointer-events: none;
  opacity: 0.8;
}

@keyframes ajcal-spin {
  to {
    transform: rotate(360deg);
  }
}

.ajcal-currency-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.ajcal-currency-buttons {
  display: flex;
}

.ajcal-currency-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  min-width: 40px;
}

.ajcal-currency-btn:hover {
  background: #f5f5f5;
  color: #0f0f0f;
}

.ajcal-currency-btn.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.ajcal-currency-group {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.ajcal-currency-btn {
  background-color: var(--primary5);
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.ajcal-currency-btn:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.ajcal-currency-btn:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.ajcal-currency-btn.active {
  background-color: var(--dosen-brand);
  color: white;
  border-color: var(--dosen-brand);
}

/* Info Toggle Button */
.ajcal-info-toggle {
  top: 20px;
  right: 20px;
  background: none !important;
  outline: none !important;
  border: none !important;
}

/* Backdrop */
.ajcal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1100;
  opacity: 0;
  animation: ajcal-fadeIn 0.3s ease forwards;
}

@keyframes ajcal-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* LMA Levels */

.lma-level {
  display: grid;
  grid-template-columns: 13fr 6fr;
  height: 100%;
  display: none;
}
.lma-level .level-container{
  padding: 35px;
}
.lma-level h2,.lma-level h3{
  font-weight: bold; margin-top: 0;
  text-align: center;
  color: var(--dosen-brand);
  margin-bottom: 20px;
}
.lma-level h2 {
  font-size: 24px;
  margin-bottom: 35px;
}
.lma-level h3 {
  font-size: 18px;
}
.lma-level .level-description-text {
  font-size: 16px;
  text-align: center;
  /* font-weight: bold; */
  max-width: 390px;
  margin: 0 auto;
  padding: 10px;
  line-height: 1.35em;
}
.lma_levels_container {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-left: 2px solid #f79420;
  padding: 32px 21px;
}

.lma_levels_level {
  display: flex;
  gap: 10px;
  margin-bottom: 7px;
}

.lma_levels_level_sidebar {
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.lma_levels_level_4 .lma_levels_level_sidebar {
  background-color: #22c55e;
}

.lma_levels_level_3 .lma_levels_level_sidebar {
  background-color: #eab308;
}

.lma_levels_level_2 .lma_levels_level_sidebar {
  background-color: #f97316;
}

.lma_levels_level_1 .lma_levels_level_sidebar {
  background-color: #ef4444;
}

.lma_levels_level_text {
  font-size: 10px;
  margin-bottom: 4px;
}

.lma_levels_level_number {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.lma_levels_content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 8px;
}

.lma_levels_description {
  font-size: 10px;
    color: #333;
    padding: 4px 0px;
    font-style: italic;
    line-height: 1.3em;
}

.lma_levels_percentage {
  font-size: 10px;
  color: #666;
  font-style: italic;
}
.level-circle{
  text-align: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  font-weight: bold;
  border-radius: 50%;
  FONT-SIZE: 18px;
  margin-bottom: 19px;
}
.level-circle.level-4{
  background-color: #23DC35;
}
.level-circle.level-3{
  background-color: #ECD000;
}
.level-circle.level-2{
  background-color: #F79420;
}
.level-circle.level-1{
  background-color: #E80800;
}
.level-number{
  font-size:44px;
  line-height: 1em;
}
/* Mobile Responsive */
@media(max-width: 1100px){
  .ajcal-right-panel {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px !important;
  }
}
@media (max-width: 900px) {
  .lma-level{
    grid-template-columns: 1fr;
  }
  .lma-level h2, .lma-level h3{text-align: left; margin-bottom: 10px;}
  .lma-level .level-description-text{font-size: 12px; font-weight: 600;}
  .lma-level .level-container {
    display: grid;
    grid-template-columns: 35% 65%;
    grid-template-rows: auto auto;
    gap: 1rem;
    align-items: center;
    padding: 20px 35px;
  }
  .lma_levels_container{ padding: 10px 35px 0;}
  .level-container h2 {
    grid-column: 1 / -1; /* Span full width */
  }
  
  .level-circle {
    grid-column: 1;
  }
  
  .level-description {
    grid-column: 2;
  }
  .lma-level .level-description-text{text-align: left;}
  .lma_levels_container{ border: none;}
  .ajcal-cta-header{display: none;}
  .ajcal-calculator-grid {
    grid-template-columns: 1fr;
    border: none;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
  }

  /* Left panel becomes slide-in drawer */
  #ajcal-leftPanel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    background: var(--primary5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1200;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.25);
  }

  #ajcal-leftPanel.open {
    transform: translateX(0);
  }

  /* Show close button on mobile */
  .ajcal-info-close {
    display: block;
  }

  /* Right panel mobile layout - reorder columns */
  .ajcal-right-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 30px;
    padding: 20px;
    overflow-y: auto;
    flex: 1;
  }

  /* Reorder: Chart first, then sliders, then legend */
  .ajcal-chart-legend-container {
    order: 1;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ajcal-sliders-panel {
    order: 2;
  }

  .ajcal-legend-panel {
    order: 3;
  }

  /* Chart panel adjustments */
  .ajcal-chart-panel {
    margin-bottom: 20px;
  }

  /* Legend items mobile layout */
  .ajcal-legend-items {
    gap: 20px;
  }

  /* Form modal mobile adjustments */
  .ajcal-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ajcal-modal-content {
    padding: 35px;
    margin: 0;
  }

  /* Slider adjustments */
  .ajcal-slider-group {
    gap: 20px;
  }

  /* Currency buttons mobile */
  .ajcal-currency-group {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  /* Chart text mobile sizing */
  .ajcal-benefits-value {
    font-size: 28px;
  }

  .ajcal-roi-value {
    font-size: 28px;
  }

  /* Legend values mobile */
  .ajcal-legend-value {
    font-size: 20px;
  }

  .ajcal-legend-items,
  .ajcal-calculations-note {
    display: none;
  }

  .ajcal-chart-container svg {
    transform: scale(0.8);
  }

  .ajcal-right-panel.results-shown .ajcal-sliders-panel {
    display: none;
  }

  .ajcal-right-panel.results-shown .ajcal-legend-items,
  .ajcal-right-panel.results-shown .ajcal-calculations-note {
    display: flex;
  }

  .ajcal-modal.active {
    justify-content: flex-end;
    height: 100vh;
  }

  .ajcal-modal-content {
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    transform: translateX(100%);
    animation: slideInFromRight 0.3s ease forwards;
  }
  .ajcal-methodology {
    padding-bottom: 60px;
    background: url(https://dosen.io/wp-content/uploads/elementor/thumbs/Dosen-Primary-Logo-qc3pou02d2oslsuypw60p07ms8do7det8nmxsurksg.png) no-repeat bottom center;
    margin-bottom: 20px;
}
  @keyframes slideInFromRight {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(0);
    }
  }
}

/* Hide elements on desktop */
@media (min-width: 901px) {

  .ajcal-info-toggle,
  .ajcal-info-close,
  .ajcal-backdrop {
    display: none !important;
  }
  .ajcal-modal-content {
    border-radius: 12px;
  }
}

.ajcal-right-panel.learning-maturity-assessment {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 24px;
}

.learning-maturity-assessment .ratings-panel {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 35px;
}
.ajcal-card-question{margin-bottom: 10px;}
.ajcal-intro-call-btn{margin-left: 0px;}
.ajcal-card-description,.ajcal-card-question{font-size: 16px;}

.learning-maturity-assessment .rating-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.learning-maturity-assessment .rating-label {
  flex: 1;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 600;
}

.learning-maturity-assessment .rating-stars {
  display: flex;
  flex-direction: row-reverse;
  gap: 6px;
}

.learning-maturity-assessment .rating-stars input[type="radio"] {
  display: none;
}

.learning-maturity-assessment .rating-stars label {
  cursor: pointer;
  transition: all 0.2s ease;
}

.learning-maturity-assessment .rating-stars label svg {
  width: 15px;
  height: 15px;
  transition: fill 0.2s ease;
}

.learning-maturity-assessment .rating-stars input[type="radio"]:checked~label svg path {
  fill: var(--dosen-brand2);
  stroke: var(--dosen-brand2);
}

.learning-maturity-assessment .rating-stars label:hover~label svg path,
.learning-maturity-assessment .rating-stars label:hover svg path {
  fill: var(--dosen-brand2);
  stroke: var(--dosen-brand2);
}

.learning-maturity-assessment .result-button-container {
  display: flex;
  justify-content: center;
  margin-top: 13px;
}

.learning-maturity-assessment .button-result {
  padding: 14px 32px;
  background-color: var(--dosen-brand);
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.2s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

/* .learning-maturity-assessment .button-result:hover {
  background-color: #e65c00;
} */



/* Very small screens */
@media (max-width: 480px) {
  .ajcal-chart-panel {
    margin-bottom: 0;
  }

  .ajcal-right-panel {
    padding: 35px;
  }

  .ajcal-benefits-value,
  .ajcal-roi-value {
    font-size: 24px;
  }

  .ajcal-legend-value {
    font-size: 18px;
  }

  .lma-level h2 {
    font-size: 24px;
  }

  .level-circle {
    width: 100px;
    height: 100px;
  }

  .level-number {
    font-size: 50px;
  }

  .level-description-text {
    font-size: 14px;
  }
}