/* ========== global ========== */
body {
  background: #ffffff;
  color: #111111;
}

section {
  padding: 100px 0;
}

.main-header {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.eyebrow {
  color: #d72638;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.section-head {
  margin-bottom: 60px;
}

.section-head p {
  color: #666666;
  line-height: 1.8;
}

p {
  color: #666666;
  line-height: 1.8;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ========== banner ========== */
#web-development-banner {
  margin-top:-120px;
  padding-top: 80px;
  padding-bottom: 120px;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

#web-development-banner .left p {
  font-size: 18px;
  margin-bottom: 40px;
}

.banner-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #d72638;
  color: #ffffff;
}

.primary-btn:hover {
  background: #b71d2d;
  color: #ffffff;
}

.secondary-btn {
  border: 1px solid #dddddd;
  color: #111111;
}

.secondary-btn:hover {
  border-color: #d72638;
  color: #d72638;
}

.web-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.web-card h3 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
}

.web-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  color: #444444;
}

.web-card ul li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #d72638;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* ========== launch faster ========== */
#launch-faster {
  background: #111111;
}

#launch-faster .main-header,
#launch-faster p {
  color: #ffffff;
}

/* ========== feature cards ========== */
.feature-card,
.included-item,
.process-card,
.faq-item {
  height: 100%;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 24px;
  padding: 36px;
  transition: all 0.3s ease;
}

.feature-card:hover,
.included-item:hover,
.process-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.cards-row,
.included-list,
.process-row,
.package-row {
  row-gap: 30px;
}

.feature-card h3,
.included-item h3,
.process-card h3,
.faq-item h3 {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 700;
}

.feature-card p,
.included-item p,
.process-card p,
.faq-item p {
  margin-bottom: 0;
}

/* ========== package cards ========== */
.package-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 28px;
  padding: 50px 40px;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.package-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.package-card .product-count {
  color: #d72638;
  font-weight: 600;
  margin-bottom: 12px;
}

.package-card .price {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 36px;
}

.package-card ul {
  margin-bottom: 40px;
}

.package-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: #444444;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #d72638;
  font-weight: 700;
}

.package-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d72638;
  font-weight: 700;
  text-decoration: none;
}

.package-card a img {
  width: 18px;
}

.ecommerce-card {
  border: 2px solid #f3f3f3;
}

/* ========== process ========== */
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d72638;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ========== notes ========== */
#important-notes {
  background: #f8f9fb;
}

#important-notes .right p {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #dddddd;
}

#important-notes .right p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* ========== faq ========== */
#web-faq {
  padding-bottom: 120px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========== responsive ========== */
@media (max-width: 1199px) {
  .main-header {
    font-size: 44px;
  }

  .package-card {
    padding: 40px 30px;
  }
}

@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }

  #web-development-banner {
    padding-top: 120px;
    text-align: center;
  }

  .main-header {
    font-size: 38px;
  }

  .banner-actions {
    justify-content: center;
    margin-bottom: 50px;
  }

  .web-card {
    padding: 36px;
  }

  .section-head {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 70px 0;
  }

  .main-header {
    font-size: 32px;
  }

  .feature-card,
  .included-item,
  .process-card,
  .faq-item,
  .package-card {
    padding: 28px;
  }

  .package-card .price {
    font-size: 34px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .banner-actions {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  #web-development-banner {
    padding-top: 100px;
  }

  .main-header {
    font-size: 28px;
  }

  .web-card h3,
  .feature-card h3,
  .included-item h3,
  .process-card h3,
  .faq-item h3,
  .package-card h3 {
    font-size: 22px;
  }
}