/* ----------------------------------------------------------
   WEB DEVELOPMENT HERO
----------------------------------------------------------- */

.web-hero {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4.8rem;
  background-color: #ffffff;
}

.web-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: center;
  column-gap: 4.5rem;
}

/* Left content */

.web-hero__content {
  max-width: 32rem;
}

.web-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 1.4rem;
  margin-bottom: 1.4rem;
  border-radius: var(--radius-pill);
  background-color: var(--color-bg-soft);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black);
  font-weight: 600;
}

.web-hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.web-hero__lead {
  margin-top: 1.4rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.web-hero__subcopy {
  margin-top: 1.2rem;
}

.web-hero__subcopy p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Steps (2 cards) */

.web-steps {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.web-step {
  border-radius: 26px;
  padding: 1.6rem 1.8rem;
  background-color: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
}

.web-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

.web-step__title {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.web-step__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4b5563;
}

/* ----------------------------------------------------------
   RESPONSIVE – WEB PAGE
----------------------------------------------------------- */

@media (max-width: 960px) {
  .web-hero {
    padding-top: 3rem;
    padding-bottom: 4.2rem;
  }

  .web-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 3rem;
  }
}

@media (max-width: 768px) {
  .web-hero__content {
    text-align: center;
  }

  .web-hero__eyebrow {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.1rem;
  }

  .web-hero__lead,
  .web-hero__subcopy {
    margin-left: auto;
    margin-right: auto;
  }

  .web-steps {
    margin-top: 2.1rem;
  }
}

@media (max-width: 480px) {
  .web-hero__title {
    font-size: 2.3rem;
  }

  .web-step {
    padding: 1.35rem 1.45rem;
  }
}

/* ----------------------------------------------------------
   PACKAGES (ADDED)
----------------------------------------------------------- */

.web-packages {
  margin-top: 3.2rem;
}

.web-packages__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.web-packages__lead {
  margin-top: 0.6rem;
  max-width: 46rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.web-packages__grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.web-package {
  border-radius: 26px;
  padding: 1.6rem 1.8rem;
  background-color: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
}

.web-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

.web-package__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.web-package__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.web-package__meta {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.web-package__list {
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.web-package__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4b5563;
}

.web-package__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-bg-soft);
}

/* Responsive for packages only */

@media (max-width: 960px) {
  .web-packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .web-packages__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
