* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "BPG Arial Caps", sans-serif;
  background-color: #fafbfc;
  color: #2c3e50;
  line-height: 1.6;
  font-weight: 400;
}

.hosting-container {
  max-width: 1000px;
 
  padding: 40px 20px;
}

.hosting-header {
  text-align: center;
  margin-bottom: 40px;
}

.hosting-header h1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.hosting-header p {
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.hosting-pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.hosting-pricing-plan {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hosting-pricing-plan:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.hosting-pricing-plan.hosting-featured {
  border: 2px solid #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.hosting-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.hosting-plan-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.hosting-plan-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.hosting-plan-subtitle {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hosting-plan-pricing {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.hosting-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.hosting-price-row:last-child {
  margin-bottom: 0;
}

.hosting-price-row.hosting-featured {
  padding: 10px;
  background: #dbeafe;
  border-radius: 6px;
  margin: 8px -8px 0;
}

.hosting-price-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.hosting-price-value {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}

.hosting-price-value.hosting-original {
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.9rem;
}

.hosting-price-row.hosting-featured .hosting-price-value {
  color: #1d4ed8;
  font-size: 1.1rem;
}

.hosting-plan-features {
  margin-bottom: 28px;
}

.hosting-feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.hosting-feature-item:last-child {
  border-bottom: none;
}

.hosting-feature-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.hosting-feature-value {
  font-size: 0.8rem;
  color: #1e293b;
  font-weight: 600;
  text-align: right;
}

.hosting-plan-button {
  width: 100%;
  background: #1e293b;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hosting-plan-button:hover {
  background: #334155;
  transform: translateY(-1px);
}

.hosting-featured .hosting-plan-button {
  background: #3b82f6;
}

.hosting-featured .hosting-plan-button:hover {
  background: #2563eb;
}

.hosting-guarantee {
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.hosting-guarantee h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.hosting-guarantee p {
  font-size: 0.8rem;
  color: #64748b;
}

.my-btn {
    outline: none;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-weight: 600;
    border-radius: 5px;
}
.my-fw-bold {
    font-weight: 700 !important;
}







.my-btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffc107;
    --bs-btn-border-color: #ffc107;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ffca2c;
    --bs-btn-hover-border-color: #ffc720;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffcd39;
    --bs-btn-active-border-color: #ffc720;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc107;
    --bs-btn-disabled-border-color: #ffc107;
}
.my-btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}
button, select {
    text-transform: none;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}


.my-order-btn {
    font-size: 14px;   /* ტექსტის ზომა */
    padding: 6px 14px; /* შიგთავსის ზომა */
    border-radius: 4px; /* კუთხეების მომრგვალება */
}
.my-order-btn i {
    font-size: 12px; /* აიქონი პატარა */
}

.my-bg-primary {
	background-color: #ff0766 !important;
}

























@media (max-width: 768px) {
  .hosting-container {
    padding: 40px 16px;
  }
  
  .hosting-header h1 {
    font-size: 2rem;
  }
  
  .hosting-header p {
    font-size: 1rem;
  }
  
  .hosting-pricing-table {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hosting-pricing-plan {
    padding: 30px 24px;
  }
  
  .hosting-plan-pricing {
    padding: 16px;
  }
  
  .hosting-price-row.hosting-featured {
    margin: 8px -8px 0;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .hosting-header h1 {
    font-size: 1.75rem;
  }
  
  .hosting-pricing-plan {
    padding: 24px 20px;
  }
  
  .hosting-plan-name {
    font-size: 1.25rem;
  }
  
  .hosting-price-value {
    font-size: 1rem;
  }
  
  .hosting-price-row.hosting-featured .hosting-price-value {
    font-size: 1.125rem;
  }
}

/* Subtle animations */
.hosting-pricing-plan {
  animation: hostingFadeInUp 0.6s ease-out;
}

.hosting-pricing-plan:nth-child(1) {
  animation-delay: 0.1s;
}

.hosting-pricing-plan:nth-child(2) {
  animation-delay: 0.2s;
}

.hosting-pricing-plan:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes hostingFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}