/* ======================================
      Pricing Plans Section Css
========================================= */

.sis-pricing-plans-section {
  overflow: hidden;
}

.pricing-leitz-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  padding-left: 2em;
  align-items: baseline;
  justify-items: center;
}

.pricing-leitz-sidebar {
  position: relative;
  z-index: 2;  
}

.pricing-leitz-sidebar-inner {
  position: sticky;
  top: 120px;
}

.pricing-leitz-toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  margin-bottom: 34px;
  border: 1px solid var(--main-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--white-color);
}

.pricing-toggle-btn {
  min-width: 145px;
  height: 52px;
  padding: 0 24px;
  border: 0;
  background-color: transparent;
  color: var(--main-color);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.2s ease;
}

.pricing-toggle-btn.active {
  background: var(--main-color);
  color: var(--white-color);
}

.pricing-toggle-btn:not(.active):hover {
  background: rgba(0,0,0,0.05);
}

.pricing-leitz-points {
  padding-left: 20px;
}

.pricing-leitz-points li {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.2em;
  line-height: 1.55;
  list-style: disc;
}

.pricing-leitz-content {
  min-width: 0;
  margin-left: 3em;
}

.pricing-leitz-cards {
  display: flex;
  gap: 40px;
}

.pricing-leitz-card {
  display: flex;
  flex-direction: column;  
  border-radius: 10px;
  background-color: var(--white-color);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.125);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.pricing-leitz-card:hover {
  transform: translateY(-6px);
  border-color: rgba(28, 111, 184, 0.14);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.pricing-leitz-card-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 9em;
  padding: 1.4em 1.1em;
  text-align: center;
  background: var(--main-gradient-soft);
}

.pricing-leitz-card-head h3 {
  margin: 0 0 10px;
  color: var(--main-color);
  font-size: clamp(1.8rem, 3.2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1em;
}

.pricing-period-label {
  opacity: 0;
  transform: translateY(4px);
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + 10px);

  margin: 0;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.pricing-period-label.active {
  opacity: 1;
  transform: translateY(0);
}

.pricing-leitz-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px;
}

.pricing-leitz-price {
  position: relative;
  min-height: 72px;
  margin-bottom: 34px;
  text-align: center;
}

.pricing-value-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;

  position: absolute;
  top: 50%;
  left: 0;
  right: 0;

  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.pricing-value-wrap.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pricing-value {
  color: var(--primary-color);
  font-size: clamp(2.3rem, 3.6vw, 3rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pricing-unit {
  color: var(--main-color);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.pricing-leitz-features {
  text-align: center;
}

.pricing-leitz-features li {
  margin-bottom: 11px;
  color: var(--primary-color);
  font-size: 17px;
  line-height: 1.55;
}

.pricing-leitz-features li:last-child {
  margin-bottom: 0;
}

.pricing-leitz-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pricing-leitz-actions .sis-btn-default {
  min-width: 180px;
  justify-content: center;
}
