@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Orbitron:wght@400;800&display=swap');

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 0.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}
.text-center {
  text-align: center;
}
.w-100 {
  width: 100%;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-content-center {
  justify-content: center;
}
.mb-lg-5 {
  margin-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.position-relative {
  position: relative;
}
.gap-lg-0 {
  gap: 0;
}
.gap-4 {
  gap: 1.5rem;
}

h2 {
  font-size: 50px;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-out;
}

.text-muted {
  color: #a0a0a0;
  font-size: 1rem;
}

.content-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  position: relative;
}
.col-left {
  flex: 3;
}
.col-right {
  flex: 2;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 150px;
  align-self: flex-start;
  height: fit-content;
}

.overview-title {
  color: #73de21; 
  border-bottom: 2px solid #2e7d32;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.65rem;
}

.selected-membership-info {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #e0e0e0;
}
.selected-membership-info strong {
  color: #ffffff;
}
.membership-card.selected {
  border-color: #2d752f;
  box-shadow: 0 0 10px rgba(45, 117, 47, 0.5);
}

.main-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 0.5rem;
}

.main-option-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-align: center;
  min-height: 200px;
  animation: slideUpFade 0.8s ease-out;
}

.main-option-card:nth-child(1) {
  animation-delay: 0.1s;
}
.main-option-card:nth-child(2) {
  animation-delay: 0.2s;
}
.main-option-card:nth-child(3) {
  animation-delay: 0.3s;
}

.main-option-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.main-option-card.active {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-color: #2e7d32;
}

.option-title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.option-subtitle {
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 300;
}

.memberships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.membership-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 190px;
  text-align: center;
}

.membership-card:nth-child(1) {
  animation-delay: 0.1s;
}
.membership-card:nth-child(2) {
  animation-delay: 0.2s;
}
.membership-card:nth-child(3) {
  animation-delay: 0.3s;
}
.membership-card:nth-child(4) {
  animation-delay: 0.4s;
}

.membership-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-header h3 {
  font-size: 35px;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

.card-description p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  width: 100%;
}

.card-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 80px;
}

.card-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #73de21;
  margin-bottom: 1rem !important;
  text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
  animation: pricePulse 2s infinite;
  text-align: center;
  width: 100%;
  line-height: 1;
}

.payment-period {
  font-size: 1rem;
  color: #a0a0a0;
  font-weight: 400;
  display: block;
  margin: 0;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

.divider {
  background-blend-mode: normal;
  background-image: linear-gradient(270deg,rgba(255,255,255,0.00) 0%,rgba(255,255,255,0.40) 50%,rgba(255,255,255,0.00) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1px;
  width: 100%;
}

.usps-list {
  font-family: "Inter", sans-serif;
  list-style: none;
  max-width: 325px;
  line-height: 2em;
  margin: 2em auto;
}
.usps-list li {
  position: relative;
  padding-left: 40px;
  text-align: left;
}
.usps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;

  width: 30px;
  height: 30px;

  background-image: url('/img/checkmark.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.usps-list li.not-active::before {
  background-image: url('/img/crossmark.svg');
  width: 15px;
  left: 8px;
  top: 10px;
}



.select-button {
  background: #ff4c00;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.select-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(76, 175, 80, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.select-button:hover::before {
  left: 100%;
}

.select-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.back-button {
  background: linear-gradient(135deg, #2e7d32 0%, #73de21 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.memberships-section {
  display: none;
  animation: fadeIn 0.6s ease;
}

.memberships-section.active {
  display: block;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.alert {
  background-color: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  color: #2e7d32;
  backdrop-filter: blur(10px);
}

.alert h4 {
  margin-top: 0;
  color: #2e7d32;
  font-weight: 500;
}

.border-top-accent {
  border-top: 3px solid #2e7d32;
  padding-top: 2rem;
}

.duration-badge {
  background: linear-gradient(135deg, #2e7d32 0%, #73de21 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8em;
  margin-left: 8px;
  font-weight: 600;
}

#overview-content {
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.summary-divider-bottom {
  margin: 20px 0 0 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.basket-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  animation: fadeIn 0.5s ease-out;
}

.basket-item:last-of-type {
  border-bottom: none;
}

.basket-item > div:first-child {
  flex: 1;
  text-align: left;
}

.basket-item > div:first-child > span:first-child {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff !important; 
  display: block;
  margin-bottom: 4px;
}

.period-info {
  font-size: 1.1rem;
  color: #a0a0a0;
  font-weight: 400;
  margin-top: 4px;
}

.basket-item > span:last-child {
  font-size: 1.3rem;
  font-weight: 500;
  color: #73de21 !important;
  text-align: right;
  min-width: 100px;
  margin-left: 20px;
  flex-shrink: 0;
}

.basket-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0 0;
  margin-top: 15px;
  border-top: 2px solid #73de21;
  width: 100%;
}

.basket-total span:first-child {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff !important;
}

.basket-total span:last-child {
  font-size: 1.8rem;
  font-weight: 700;
  color: #73de21 !important;
  min-width: 100px;
  text-align: right;
}

.text-danger {
  color: #ff6b6b;
}

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

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

@keyframes pricePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

.centered-list-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.card-description ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
  text-align: left;
  width: max-content;
}
.card-description ul li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
}
.card-description ul li:before {
  content: "• ";
  color: #73de21;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

#durationProDuo,
#durationProMax,
#durationProFlex {
  display: none;
}
.memberships-section {
  padding-top: 20px;
}

@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .col-left,
  .col-right {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
  
  .col-right {
    position: static;
    top: 0;
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 16px;
    box-sizing: border-box;
  }
  
  .memberships-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .membership-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 2rem;
    box-sizing: border-box;
    min-height: 190px;
  }
  
  .main-options-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .main-option-card {
    width: 100%;
    max-width: 100%;
    padding: 2.5rem 1.5rem;
    min-height: 180px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .col-left,
  .col-right {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .col-right {
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 12px;
  }
  
  .memberships-grid {
    width: 100%;
    max-width: 100%;
    gap: 1rem;
  }
  
  .membership-card {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    min-height: 180px;
    margin: 0;
  }
  
  .main-option-card {
    padding: 2rem 1.5rem;
    min-height: 160px;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .option-title {
    font-size: 1.6rem;
  }
  
  .card-price {
    font-size: 2rem;
  }
  
  .card-header h3 {
    font-size: 1.2rem;
  }
  
  .basket-item {
    width: 100%;
    padding: 10px 0;
  }
  
  .basket-item > div:first-child > span:first-child {
    font-size: 1.2rem;
  }
  
  .period-info {
    font-size: 1rem;
  }
  
  .basket-item > span:last-child {
    font-size: 1.2rem;
    min-width: 90px;
    margin-left: 10px;
  }
  
  .basket-total {
    width: 100%;
    padding: 15px 0 0 0;
  }
  
  .basket-total span:first-child {
    font-size: 1.4rem;
  }
  
  .basket-total span:last-child {
    font-size: 1.6rem;
    min-width: 90px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 1rem;
  }
  
  .col-right {
    padding: 1.25rem;
    margin-top: 1rem;
    border-radius: 10px;
  }
  
  .membership-card {
    padding: 1.25rem;
    min-height: 170px;
  }
  
  .main-option-card {
    padding: 1.5rem 1rem;
    min-height: 140px;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .overview-title {
    font-size: 1.4rem;
  }
  
  .card-price {
    font-size: 1.8rem;
  }
  
  .card-header h3 {
    font-size: 1.1rem;
  }
  
  .select-button,
  .back-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .basket-item {
    flex-direction: row;
    align-items: center;
    padding: 12px 0;
  }
  
  .basket-item > div:first-child {
    width: 70%;
  }
  
  .basket-item > span:last-child {
    width: 30%;
    text-align: right;
    margin-left: 0;
    min-width: auto;
    font-size: 1.2rem;
  }
  
  .basket-total {
    flex-direction: row;
    align-items: center;
    padding: 15px 0 0 0;
  }
  
  .basket-total span:first-child {
    width: 60%;
  }
  
  .basket-total span:last-child {
    width: 40%;
    text-align: right;
    margin-top: 0;
    min-width: auto;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0.75rem;
  }
  
  .col-right {
    padding: 1rem;
    border-radius: 8px;
  }
  
  .membership-card {
    padding: 1rem;
    min-height: 160px;
  }
  
  .main-option-card {
    padding: 1.25rem 0.75rem;
    min-height: 130px;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .card-price {
    font-size: 1.6rem;
  }
  
  .basket-item > div:first-child > span:first-child {
    font-size: 1.1rem;
  }
  
  .period-info {
    font-size: 0.95rem;
  }
  
  .basket-item > span:last-child {
    font-size: 1.1rem;
  }
  
  .basket-total span:first-child {
    font-size: 1.3rem;
  }
  
  .basket-total span:last-child {
    font-size: 1.4rem;
  }
}

.membership-card.selected {
    border: 2px solid #2d752f !important; 
    background-color: rgba(45, 117, 47, 0.05) !important; 
    position: relative;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.membership-card.selected .select-button {
    background-color: #2d752f !important;
    color: #fff !important;
    border-color: #2d752f !important;
}

.membership-card {
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
}