.row[data-gap-y="30px"] .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.row[data-gap-y="30px"] .c-footer {
  margin-top: auto;
}
.custom-offer-section {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.custom-offer-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: -4px 4px 0 var(--primary-shadow);
  position: relative;
  overflow: hidden;
  transition: all .15s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.custom-offer-card:hover {
  box-shadow: 0 0 0 var(--primary-shadow);
}

.custom-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009DE1, #1F5F9F);
}

.custom-offer-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.custom-offer-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #009DE1, #1F5F9F);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-offer-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.custom-offer-text {
  flex: 1;
}

.custom-offer-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-bottom: 10px;
  line-height: 1.3;
}

.custom-offer-description {
  font-size: 16px;
  color: var(--lightBlue);
  margin: 0;
  line-height: 1.5;
}

.custom-offer-action {
  text-align: center;
}

@media (max-width: 992px) {
  .custom-offer-card {
    padding: 30px;
  }
  
  .custom-offer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .custom-offer-title {
    font-size: 22px;
  }
  
  .custom-offer-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .custom-offer-card {
    padding: 25px;
    margin: 0 15px;
  }
  
  .custom-offer-title {
    font-size: 20px;
  }
}

.config-section {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 24px !important;
  margin-bottom: 20px !important;
  border: 2px solid #e2e8f0 !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.config-section:hover {
  border-color: #009DE1;
  box-shadow: 0 4px 16px rgba(0, 157, 225, 0.12);
}

.config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.config-header img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.config-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
  flex: 1;
}

.config-value {
  font-size: 16px;
  font-weight: 700;
  color: #009DE1;
  background: #f0f9ff;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #bae6fd;
  min-width: 80px;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  margin: 16px 0;
  height: 40px;
  display: flex;
  align-items: center;
}

.custom-slider {
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #009DE1;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 157, 225, 0.3);
  cursor: grab;
  transition: all 0.2s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 157, 225, 0.4);
}

.custom-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.05);
}

.custom-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #009DE1;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 157, 225, 0.3);
  cursor: grab;
  transition: all 0.2s ease;
}

.custom-slider::-moz-range-track {
  height: 6px;
  border-radius: 6px;
  background: #e2e8f0;
  border: none;
}

.slider-track-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, #009DE1, #1F5F9F);
  border-radius: 6px;
  transform: translateY(-50%);
  transition: width 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.config-description {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .config-section {
    padding: 20px !important;
    margin-bottom: 16px !important;
  }

  .config-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .config-value {
    align-self: flex-end;
  }

  .config-title {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .slider-container {
    margin-bottom: 32px;
    min-height: 70px;
  }

  .slider-badge {
    top: -40px;
    font-size: 13px;
    padding: 6px 12px;
  }

  .slider-value {
    position: static;
    margin-top: 8px;
    display: inline-block;
  }

  .config-section {
    padding: 20px !important;
  }

  .slider-ticks {
    bottom: -28px;
  }

  .slider-tick-label {
    font-size: 11px;
    padding: 1px 4px;
  }
}

.summary-card-premium {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 157, 225, 0.15);
  border: 2px solid #f8fafc;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.summary-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 157, 225, 0.25);
  border-color: #009DE1;
}

.summary-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #009DE1, #1F5F9F);
}

.summary-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.summary-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #009DE1, #1F5F9F);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  flex-shrink: 0;
  font-size: 18px !important;
}

.summary-icon i {
  color: white !important;
  font-size: 18px !important;
}

.summary-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  line-height: 1.2;
}

.summary-content {
  padding: 24px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item-last {
  border-bottom: none !important;
}

.summary-item:hover {
  background: rgba(0, 157, 225, 0.02);
  border-radius: 8px;
  margin: 0 -12px;
  padding: 12px;
}

.item-icon {
  width: 32px;
  height: 32px;
  background: #f0f9ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #bae6fd;
  color: #009DE1 !important;
  font-size: 14px !important;
}

.item-icon i {
  color: #009DE1 !important;
  font-size: 14px !important;
}

.item-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-label {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.item-value {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  background: #f8fafc;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.summary-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 5px 0px 20px 0px;
}

.summary-included {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #059669;
  background: #f0fdf4;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #bbf7d0;
}

.included-item i {
  font-size: 12px !important;
  color: #059669 !important;
}

.price-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 24px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.price-label {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount #estimatedPrice {
  font-size: 36px;
  font-weight: 800;
  color: #009DE1;
  line-height: 1;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: #009DE1;
}

.price-subtitle {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.order-section {
  padding: 24px;
  text-align: center;
}

.btn-order-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #009DE1 0%, #1F5F9F 100%);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 157, 225, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-order-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-order-premium:hover::before {
  left: 100%;
}

.btn-order-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 225, 0.4);
  color: white;
  text-decoration: none;
}

.btn-order-premium:active {
  transform: translateY(0);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.btn-content i {
  font-size: 16px !important;
  color: white !important;
}

.order-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: #059669;
  font-weight: 500;
}

.order-guarantee i {
  font-size: 11px !important;
  color: #059669 !important;
}

@media (max-width: 992px) {
  .summary-card-premium {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .summary-header {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .summary-content,
  .price-section,
  .order-section {
    padding: 20px;
  }

  .summary-title {
    font-size: 16px;
  }

  .price-amount #estimatedPrice {
    font-size: 32px;
  }

  .price-currency {
    font-size: 20px;
  }

  .btn-order-premium {
    padding: 14px 20px;
    font-size: 15px;
  }

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

  .item-value {
    align-self: flex-end;
  }
}

/* Center OS labels */
.plans-table-sec.os-section .os-card .os-label {
  text-align: center;
}

@media (max-width: 991px) {
  .plans-table-sec.os-section .os-card .os-label {
    justify-content: center;
  }
}

@media (max-width: 1335px) and (min-width: 992px) {
  .plans-table-sec.os-section .os-card .os-label {
    justify-content: center;
  }
}