* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #666;
}

.container {
  width: 1150px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.hosting-features {
  padding: 45px 0 55px;
  background: #f5f5f5;
}

.section-title {
  text-align: center;
  max-width: 1180px;
  margin: 0 auto 55px;
}

.section-title h2 {
  color: #0d8adf;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.4;
}

.section-title p {
  color: #777;
  font-size: 17px;
  line-height: 1.9;
  max-width: 1120px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 70px;
  row-gap: 42px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.feature-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d8adf;
  font-size: 42px;
  line-height: 1;
  margin-top: 2px;
}

.feature-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #7a7a7a;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 35px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .section-title p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .feature-content h3 {
    font-size: 20px;
  }

  .feature-content p {
    font-size: 15px;
  }

  .feature-icon {
    font-size: 34px;
    width: 46px;
    min-width: 46px;
    height: 46px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: calc(100% - 24px);
  }

  .hosting-features {
    padding: 35px 0 45px;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.8;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f3f3f3;
}

.container {
  width: 1110px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.pricing-section {
  padding: 85px 0 60px;
  background: #f3f3f3;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}

.price-card {
  background: #f7f7f7;
  border: 1px solid #dfdfdf;
  text-align: center;
  position: relative;
}

.price-head {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.price-head.dark {
  background: linear-gradient(90deg, #1f242b, #20262d, #1f242b);
}

.price-head.blue {
  background: #0d8ed8;
}

.price-box {
  background: #f1f1f1;
  padding: 28px 10px 25px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.currency {
  display: inline-block;
  font-size: 28px;
  color: #252b33;
  vertical-align: top;
  line-height: 1;
  margin-bottom: -10px;
}

.amount {
  font-size: 58px;
  line-height: 1;
  color: #252b33;
  font-weight: 300;
}

.period {
  font-size: 13px;
  color: #7c7c7c;
  margin-top: 6px;
  text-transform: uppercase;
}

.features {
  list-style: none;
  padding: 14px 22px 10px;
}

.features li {
  font-size: 14px;
  color: #7e7e7e;
  padding: 15px 0;
  border-bottom: 1px solid #e3e3e3;
  line-height: 1.5;
  text-transform: uppercase;
}

.features li:last-child {
  border-bottom: none;
}

.card-btn {
  padding: 18px 0 38px;
}

.card-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 97px;
  height: 38px;
  border: 2px solid #333;
  color: #222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s ease;
  background: transparent;
}

.card-btn a:hover {
  background: #222;
  color: #fff;
}

.card-btn a.active-btn {
  background: #0d8ed8;
  border-color: #0d8ed8;
  color: #fff;
}

.card-btn a.active-btn:hover {
  background: #0b7fc3;
  border-color: #0b7fc3;
}

.price-card.featured {
  margin-top: -40px;
  z-index: 2;
  background: #f8f8f8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.price-card.featured .price-box {
  padding-top: 36px;
  padding-bottom: 30px;
  min-height: 138px;
}

.price-card.featured .card-btn {
  padding-bottom: 46px;
}

/* Responsive */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .price-card.featured {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: calc(100% - 24px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 40px 0;
  }

  .amount {
    font-size: 48px;
  }

  .features {
    padding: 10px 16px 6px;
  }

  .features li {
    font-size: 13px;
    padding: 13px 0;
  }
}