/* hero section========================================================================================== */
.customize-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #120b08;
}
.customize-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.customize-hero__bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.02);
}

.customize-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    90deg,
    rgba(18, 11, 8, 0.94) 0%,
    rgba(18, 11, 8, 0.72) 40%,
    rgba(18, 11, 8, 0.1) 100%
  );
}

.customize-hero .lux-container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;

  position: relative;
  z-index: 5;
}

.customize-hero__content {
  max-width: 620px;
  color: #fff;
}

.customize-hero .lux-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #f97316;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;
}

.customize-hero .lux-eyebrow::before {
  content: "";

  width: 46px;
  height: 1px;

  background: #f97316;
}

.customize-hero__content h1 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-family: var(--f1);
  margin-bottom: 14px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.customize-hero__content h1 span {
  color: #f97316;
}

.customize-hero__content p:not(.lux-eyebrow) {
  max-width: 520px;

  font-size: 16px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.8);

  margin-bottom: 38px;

  font-family: "Inter", sans-serif;
}

.customize-hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.customize-btn {
  height: 50px;
  padding: 0 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: 0.35s ease;

  font-family: "Poppins", sans-serif;
}

.primary-btn {
  background: linear-gradient(135deg, #f97316, #ea580c);

  color: #fff;

  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.24);
}

.primary-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 25px 45px rgba(249, 115, 22, 0.35);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #111827;
}

@media (max-width: 480px) {
  .customize-hero {
    min-height: 550px;
    align-items: flex-end;
  }

  .customize-hero__bg img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .customize-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(18, 11, 8, 0.2) 0%,
      rgba(18, 11, 8, 0.85) 100%
    );
  }

  .customize-hero .lux-container {
    width: 100%;
  }

  .customize-hero__content {
    max-width: 100%;
    padding: 0 20px 50px;
  }

  .customize-hero .lux-eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
    gap: 8px;
  }

  .customize-hero .lux-eyebrow::before {
    width: 30px;
  }

  .customize-hero__content h1 {
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

  .customize-hero__content h1 br {
    display: none;
  }

  .customize-hero__content p:not(.lux-eyebrow) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .customize-hero__buttons {
    gap: 12px;
  }

  .customize-btn {
    height: 50px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 13px;
  }
}
/* steps for customization==================================================================================== */
.custom-steps {
  padding-top: 100px;
  background: #fff;
  position: relative;
}

.custom-steps__head {
  max-width: 650px;
  margin-bottom: 55px;
}

.custom-steps__head h2 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #111827;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
}

.custom-steps__head h2 span {
  color: #f97316;
}

.custom-steps__head p {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 560px;
  font-family: "Inter", sans-serif;
}

.custom-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-card {
  background: #fff;

  border: 1px solid rgba(249, 115, 22, 0.28);
  margin-top: -20px;
  border-radius: 24px;

  padding: 34px 28px;

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-8px);

  border-color: #f97316;

  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.step-icon {
  width: 62px;
  height: 62px;

  border-radius: 18px;

  background: rgba(249, 115, 22, 0.08);

  border: 1px solid rgba(249, 115, 22, 0.22);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;
}

.step-icon i {
  font-size: 24px;
  color: #f97316;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}

.step-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #6b7280;
  font-family: "Inter", sans-serif;
}
.lux-eyebrow {
  color: #f97316 !important;
}
@media (max-width: 480px) {
  .custom-steps {
    padding-top: 70px;
  }

  .custom-steps__head {
    margin-bottom: 35px;
  }

  .custom-steps__head h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .custom-steps__head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .custom-steps__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-card {
    padding: 28px 22px;
    margin-top: 0;
    border-radius: 20px;
  }

  .step-card h3 {
    font-size: 20px;
  }

  .step-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* customize covers ==================================================================================================== */

.customize-covers {
  background: #fff;
  padding-top: 140px;
}

.customize-head {
  text-align: left;
  margin-bottom: 42px;
}

.customize-head h2 {
  font-family: var(--f1);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 10px 0 14px;
  letter-spacing: -0.03em;
}

.customize-head h2 span {
  color: var(--orange);
}

.customize-desc {
  max-width: 650px;
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

.customize-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.customize-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.07);
  transition: 0.4s ease;
  height: 450px;
}

.customize-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.12);
}

.customize-card__img {
  height: 250px;
  overflow: hidden;
  background: #f8fafc;
}

.customize-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--lux-ease);
}

.customize-card__content {
  padding: 22px;
}

.customize-card__content h3 {
  font-family: var(--f1);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.customize-card__content p {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 18px;
}

.customize-card__content button {
  border: none;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: var(--f1);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.customize-card__content button:hover {
  background: #ea580c;
}
@media (max-width: 480px) {
  .customize-covers {
    padding-top: 80px;
    padding-bottom: 110px;
  }

  .customize-head {
    margin-bottom: 30px;
  }

  .customize-head h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .customize-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .customize-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .customize-card {
    height: auto;
    border-radius: 16px;
  }

  .customize-card__img {
    height: 320px;
  }

  .customize-card__content {
    padding: 20px;
  }

  .customize-card__content h3 {
    font-size: 20px;
  }

  .customize-card__content p {
    font-size: 13px;
    line-height: 1.7;
  }
}
.brand-strip {
  margin-top: 60px !important;
}
