/* ═══ Hosting page · Domains tab — Hostinger-inspired redesign ═══
   Light, clean and organized: centered search hero on white with a subtle
   grid, price chips, popular TLD cards, transfer banner, results, features & FAQ. */

.lp-dom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ═══ Hero / search ═══ */

.lp-dom-hero {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.75rem);
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.lp-dom-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(10, 10, 10, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 82% 70% at 50% 0%, #000 18%, transparent 72%);
  mask-image: radial-gradient(ellipse 82% 70% at 50% 0%, #000 18%, transparent 72%);
}

.lp-dom-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}

.lp-dom-hero__glow--1 {
  width: 320px;
  height: 320px;
  top: -130px;
  inset-inline-start: 50%;
  margin-inline-start: -160px;
  background: rgba(249, 115, 22, 0.16);
}

.lp-dom-hero__glow--2 {
  width: 260px;
  height: 260px;
  bottom: -120px;
  inset-inline-end: -80px;
  background: rgba(234, 88, 12, 0.08);
}

.lp-dom-hero__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.15rem;
}

.lp-dom-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.28);
  color: #C2410C;
  font-size: 0.8rem;
  font-weight: 800;
}

.lp-dom-hero__badge i {
  color: #F97316;
}

.lp-dom-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.1);
  color: #475569;
  font-size: 0.76rem;
  font-weight: 800;
}

.lp-dom-hero__live i {
  font-size: 0.55rem;
  color: #00b67a;
  animation: lpDomPulse 2s ease-in-out infinite;
}

@keyframes lpDomPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.lp-dom-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto 1.6rem;
}

.lp-dom-hero__copy h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.75rem, 4.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0A0A0A;
}

.lp-dom-hero__copy p {
  margin: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.8;
}

.lp-dom-search {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.lp-dom-search__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: #94a3b8;
}

.lp-dom-search__label i {
  color: #F97316;
  font-size: 0.8rem;
}

.lp-dom-search__row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 2px solid rgba(10, 10, 10, 0.12);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-dom-search__row:focus-within {
  border-color: #F97316;
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.16), 0 14px 40px rgba(15, 23, 42, 0.1);
}

.lp-dom-search__prefix {
  color: #94a3b8;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.lp-dom-search__input {
  flex: 1 1 160px;
  min-width: 0;
  padding: 0.9rem 0.25rem;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A0A0A;
}

.lp-dom-search__input::placeholder {
  color: #94a3b8;
  font-weight: 700;
}

.lp-dom-search__input:focus {
  outline: none;
  box-shadow: none;
}

.lp-dom-search__btn {
  border-radius: 14px;
  padding-inline: 1.6rem;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32);
}

.lp-dom-search__btn:hover {
  background: linear-gradient(135deg, #EA580C 0%, #D9480F 100%);
}

.lp-dom-search__tlds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.lp-dom-search__tlds-label {
  margin-inline-end: 0.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #94a3b8;
}

.lp-dom-tld {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1.5px solid rgba(10, 10, 10, 0.14);
  color: #0A0A0A;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.lp-dom-tld b {
  font-weight: 900;
}

.lp-dom-tld:hover {
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.06);
}

.lp-dom-tld input {
  appearance: none;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.lp-dom-tld:has(input:checked) {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.lp-dom-tld:has(input:focus-visible) {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

.lp-dom-hero__trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.lp-dom-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.09);
  color: #475569;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.lp-dom-hero__trust li i {
  color: #F97316;
  font-size: 0.82rem;
}

.lp-dom-hint {
  margin: 0.1rem auto 0;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 600;
}

.lp-dom-hint[hidden] {
  display: none;
}

/* ═══ Transfer banner ═══ */

.lp-dom .lp-dt-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0;
  padding: 1.05rem 1.3rem;
  border-radius: 20px;
  border: 1px solid rgba(10, 10, 10, 0.09);
  background: linear-gradient(120deg, #ffffff 0%, #FFF7ED 60%, #FFF1E0 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.lp-dom .lp-dt-banner__copy {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0A0A0A;
}

.lp-dom .lp-dt-banner__icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.32);
  flex-shrink: 0;
}

.lp-dom .lp-dt-banner .lp-btn {
  border-radius: 12px;
  color: #EA580C;
  border-color: rgba(249, 115, 22, 0.4);
}

.lp-dom .lp-dt-banner .lp-btn:hover {
  background: rgba(249, 115, 22, 0.08);
}

/* ═══ Results ═══ */

.lp-dom-results {
  margin-top: 0;
}

.lp-dom-results .lp-hosting-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}

.lp-dom-results .lp-hosting-results__head h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0A0A0A;
}

.lp-dom-results .lp-hosting-results__head h3 i {
  color: #F97316;
  font-size: 0.85rem;
}

.lp-dom-results .lp-hosting-results__count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.36rem 0.85rem;
  border-radius: 999px;
  background: #FFF7ED;
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #C2410C;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.lp-dom-results .lp-hosting-results__count b {
  color: #0A0A0A;
}

.lp-dom-results .lp-hosting-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.lp-dom-results .lp-hosting-result {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.25rem 1.3rem;
  border-radius: 20px;
  border: 1.5px solid rgba(10, 10, 10, 0.09);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-dom-results .lp-hosting-result::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #F97316, #EA580C);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lp-dom-results .lp-hosting-result:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.45);
}

.lp-dom-results .lp-hosting-result:hover::before {
  opacity: 1;
}

.lp-dom-results .lp-hosting-result.is-available {
  border-color: rgba(0, 182, 122, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #F3FDF9 100%);
}

.lp-dom-results .lp-hosting-result.is-available::before {
  background: linear-gradient(90deg, #00b67a, #00a86b);
}

.lp-dom-results .lp-hosting-result__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.lp-dom-results .lp-hosting-result__tld {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.26rem 0.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFE4CC 100%);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #C2410C;
  font-size: 0.74rem;
  font-weight: 900;
  flex-shrink: 0;
}

.lp-dom-results .lp-hosting-result__head h4 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 900;
  color: #0A0A0A;
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

.lp-dom-results .lp-hosting-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-dom-results .lp-hosting-status i {
  font-size: 0.7rem;
}

.lp-dom-results .lp-hosting-status--ok {
  background: linear-gradient(135deg, #00b67a 0%, #00a86b 100%);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 182, 122, 0.28);
}

.lp-dom-results .lp-hosting-status--no {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.lp-dom-results .lp-hosting-result__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.lp-dom-results .lp-hosting-result__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.lp-dom-results .lp-hosting-result__price .rh-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}

.lp-dom-results .lp-hosting-result__price small {
  color: #64748b;
  font-weight: 700;
  font-size: 0.78rem;
}

.lp-dom-results .hs-order-btn {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
  padding-inline: 1.05rem;
}

.lp-dom-results .hs-order-btn:hover {
  background: linear-gradient(135deg, #EA580C 0%, #D9480F 100%);
}

.lp-dom-results .lp-hosting-loading,
.lp-dom-results .lp-hosting-empty,
.lp-dom-results .lp-hosting-error {
  text-align: center;
  padding: 2.4rem 1rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1.5px dashed rgba(10, 10, 10, 0.16);
  color: #64748b;
  font-weight: 700;
}

.lp-dom-results .lp-hosting-loading i {
  color: #F97316;
  margin-inline-end: 0.4rem;
}

/* ═══ Features ═══ */

.lp-dom-features {
  padding: 0.4rem 0.35rem 0;
}

.lp-dom-features__head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.lp-dom-features__head h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 900;
  color: #0A0A0A;
}

.lp-dom-features__head p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.lp-dom-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.lp-dom-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.3rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-dom-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.lp-dom-feature__icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.95rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.3);
}

.lp-dom-feature h4 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 900;
  color: #0A0A0A;
}

.lp-dom-feature p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #64748b;
}

/* ═══ FAQ ═══ */

.lp-dom-faq {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.lp-dom-faq > h3 {
  text-align: center;
  margin: 0 0 1.15rem;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  font-weight: 900;
  color: #0A0A0A;
}

.lp-dom-faq__item {
  margin-bottom: 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 10, 0.09);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-dom-faq__item[open] {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.08);
}

.lp-dom-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  list-style: none;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0A0A0A;
}

.lp-dom-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-dom-faq__item summary::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #F97316;
  transition: transform 0.2s ease;
}

.lp-dom-faq__item[open] summary::after {
  transform: rotate(180deg);
}

.lp-dom-faq__item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  font-size: 0.86rem;
  line-height: 1.8;
  color: #64748b;
}

/* ═══ Responsive ═══ */

@media (max-width: 620px) {
  .lp-dom-search__row {
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.5rem;
  }

  .lp-dom-search__prefix {
    padding-inline-start: 0.35rem;
  }

  .lp-dom-search__input {
    flex: 1 1 180px;
  }

  .lp-dom-search__btn {
    flex: 1 1 100%;
    justify-content: center;
    padding-block: 0.95rem;
  }

  .lp-dom-hero__trust {
    justify-content: flex-start;
  }

  .lp-dom-results .lp-hosting-results__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-dom-results .lp-hosting-result__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-dom-results .lp-hosting-result__foot .hs-order-btn {
    width: 100%;
  }
}

/* ═══ Domain step page (hosting-domain.php) ═══ */

.lp-domain-step__card {
  max-width: 1060px;
  margin-inline: auto;
}

.lp-domain-step .lp-hosting-results {
  margin-top: 1.25rem;
}

.lp-domain-step__results .lp-hosting-result.is-selected {
  border-color: #EA580C;
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.14);
}

.lp-domain-step__results .lp-hosting-result.is-selected::before {
  opacity: 1;
}

.lp-domain-step__cta {
  margin-top: 1.1rem;
}

.lp-domain-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.lp-domain-options__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  color: #0A0A0A;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lp-domain-options__btn i {
  color: #EA580C;
}

.lp-domain-options__btn:hover {
  border-color: rgba(234, 88, 12, 0.45);
}

.lp-domain-options__btn.is-active {
  border-color: #EA580C;
  background: #FFF7ED;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.12);
}

.lp-domain-panel {
  display: none;
}

.lp-domain-panel.is-active {
  display: block;
  animation: lp-domain-fade 0.25s ease;
}

@keyframes lp-domain-fade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.lp-domain-panel__desc {
  margin: 0 0 1rem;
  color: #57534E;
  font-size: 0.95rem;
  line-height: 1.7;
}

.lp-domain-exist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lp-domain-exist select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 12px;
  background: #ffffff;
  font: inherit;
  font-size: 0.95rem;
  color: #0A0A0A;
  direction: ltr;
  text-align: left;
}

.lp-domain-exist select:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}

.lp-domain-exist__empty {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  color: #7C2D12;
  font-size: 0.92rem;
  line-height: 1.7;
}

.lp-domain-exist__empty i {
  margin-top: 0.15rem;
  color: #EA580C;
}

.lp-domain-step__price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0A0A0A;
}

@media (max-width: 560px) {
  .lp-domain-options {
    grid-template-columns: 1fr;
  }
}

/* ═══ Domain step page — premium redesign (hosting-domain.php) ═══ */

.lp-page--checkout .lp-dstep__inner {
  max-width: 1100px;
}

/* ── Hero ── */

.lp-dstep-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.35rem;
  padding: clamp(1.6rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.6rem);
  border-radius: 26px;
  background:
    radial-gradient(ellipse 60% 90% at 100% 0%, rgba(249, 115, 22, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(234, 88, 12, 0.18), transparent 55%),
    linear-gradient(135deg, #0A0A0A 0%, #17130E 100%);
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(10, 10, 10, 0.3);
}

.lp-dstep-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 15%, transparent 72%);
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 15%, transparent 72%);
}

.lp-dstep-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.lp-dstep-hero__glow--1 {
  width: 300px;
  height: 300px;
  top: -140px;
  inset-inline-start: 45%;
  background: rgba(249, 115, 22, 0.35);
}

.lp-dstep-hero__glow--2 {
  width: 240px;
  height: 240px;
  bottom: -130px;
  inset-inline-end: -70px;
  background: rgba(234, 88, 12, 0.22);
}

.lp-dstep-hero__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.lp-dstep-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: #FDBA74;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-dstep-hero__badge i {
  color: #F97316;
}

.lp-dstep-hero__step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #E7E5E4;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-dstep-hero__step::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #F97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.25);
}

.lp-dstep-hero__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.lp-dstep-hero__sub {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 40rem;
  color: #A8A29E;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Steps indicator ── */

.lp-dstep-steps {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 30rem;
}

.lp-dstep-steps li {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.lp-dstep-steps li:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  margin-inline: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.lp-dstep-steps li.is-done:not(:last-child)::after {
  background: linear-gradient(90deg, #F97316, rgba(249, 115, 22, 0.35));
}

.lp-dstep-steps__dot {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #E7E5E4;
}

.lp-dstep-steps li.is-done .lp-dstep-steps__dot {
  background: linear-gradient(135deg, #F97316, #EA580C);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.4);
}

.lp-dstep-steps li.is-current .lp-dstep-steps__dot {
  background: #ffffff;
  border-color: transparent;
  color: #0A0A0A;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.3);
}

.lp-dstep-steps__label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #E7E5E4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-dstep-steps li.is-current .lp-dstep-steps__label {
  color: #FDBA74;
}

/* ── Hero trust chips ── */

.lp-dstep-hero__trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.lp-dstep-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #D6D3D1;
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-dstep-hero__trust li i {
  color: #F97316;
}

/* ── Order summary sidebar ── */

.lp-page--checkout .lp-dstep-summary {
  background: linear-gradient(165deg, #FFF7ED 0%, #ffffff 45%, #FFE8D6 100%);
  gap: 1.1rem;
}

.lp-page--checkout .lp-dstep-summary__plan {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(234, 88, 12, 0.22);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(234, 88, 12, 0.1);
}

.lp-page--checkout .lp-dstep-summary__plan-icon {
  flex-shrink: 0;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.32);
}

.lp-page--checkout .lp-dstep-summary__plan-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lp-page--checkout .lp-dstep-summary__plan-copy b {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0A0A0A;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-page--checkout .lp-dstep-summary__plan-copy small {
  color: #78716C;
  font-size: 0.78rem;
  font-weight: 700;
}

.lp-page--checkout .lp-dstep-summary__plan-price {
  flex-shrink: 0;
  font-size: 1.08rem;
  font-weight: 900;
  color: #0A0A0A;
  letter-spacing: -0.01em;
}

.lp-page--checkout .lp-dstep-summary__row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 0.1rem;
  border-top: 1px dashed rgba(234, 88, 12, 0.28);
}

.lp-page--checkout .lp-dstep-summary__row-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #78716C;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.lp-page--checkout .lp-dstep-summary__row-label i {
  color: #EA580C;
}

.lp-page--checkout .lp-dstep-summary__row-value {
  flex: 1;
  min-width: 0;
  color: #0A0A0A;
  font-size: 0.9rem;
  font-weight: 800;
  direction: ltr;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-page--checkout .lp-dstep-summary__state {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  white-space: nowrap;
}

.lp-page--checkout .lp-dstep-summary__state.is-new {
  background: #FFF7ED;
  color: #C2410C;
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.lp-page--checkout .lp-dstep-summary__state.is-linked {
  background: #F0FDF9;
  color: #047857;
  border: 1px solid rgba(0, 182, 122, 0.35);
}

.lp-page--checkout .lp-dstep-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 2px solid #0A0A0A;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0A0A0A;
}

.lp-page--checkout .lp-dstep-summary__total strong {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #EA580C;
}

.lp-page--checkout .lp-dstep-summary__hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.15rem 0 0;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.14);
  color: #7C2D12;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.6;
}

.lp-page--checkout .lp-dstep-summary__hint i {
  color: #EA580C;
  margin-top: 0.15rem;
}

/* ── Layout ── */

.lp-page--checkout .lp-hpay-layout--page.lp-dstep-layout {
  grid-template-columns: minmax(280px, 330px) 1fr;
}

.lp-page--checkout .lp-hpay-layout--page.lp-dstep-layout .lp-hpay-main {
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.lp-dstep-main__head {
  margin-bottom: 1.25rem;
}

.lp-dstep-main__head .lp-hpay-main__title {
  margin-bottom: 0.3rem;
}

.lp-dstep-main__sub {
  margin: 0;
  color: #78716C;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Option cards ── */

.lp-domain-step .lp-domain-options {
  gap: 1rem;
  margin: 0 0 1.4rem;
}

.lp-domain-options__btn {
  justify-content: flex-start;
  text-align: start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border-width: 1.5px;
}

.lp-domain-options__icon {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  color: #EA580C;
  font-size: 1rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.lp-domain-options__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.lp-domain-options__copy b {
  font-size: 0.97rem;
  font-weight: 900;
  color: #0A0A0A;
}

.lp-domain-options__copy small {
  color: #78716C;
  font-size: 0.78rem;
  font-weight: 600;
}

.lp-domain-options__btn:hover .lp-domain-options__icon {
  border-color: rgba(249, 115, 22, 0.45);
  color: #C2410C;
}

.lp-domain-options__btn.is-active {
  border-color: #EA580C;
  background: linear-gradient(135deg, #FFF7ED 0%, #ffffff 100%);
  box-shadow: 0 14px 34px rgba(234, 88, 12, 0.14);
}

.lp-domain-options__btn.is-active .lp-domain-options__icon {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.32);
}

/* ── Panels ── */

.lp-domain-panel__desc {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #FAFAF9;
  border: 1px solid rgba(10, 10, 10, 0.06);
  color: #57534E;
  font-size: 0.88rem;
  line-height: 1.7;
}

.lp-domain-panel__desc i {
  color: #EA580C;
  margin-top: 0.2rem;
}

.lp-domain-step .lp-dom-search {
  max-width: none;
  margin: 0 0 0.85rem;
}

.lp-domain-step .lp-dom-search__row {
  border-radius: 16px;
}

.lp-domain-step .lp-dom-search__tlds {
  justify-content: flex-start;
}

.lp-dstep-note {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: #78716C;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.6;
}

.lp-dstep-note i {
  color: #F97316;
  margin-top: 0.15rem;
}

.lp-domain-step .lp-domain-step__results .lp-hosting-results__grid {
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
}

.lp-domain-step .lp-domain-step__cta {
  width: 100%;
  margin-top: 1.25rem;
  padding-block: 0.95rem;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.32);
}

.lp-domain-step .lp-domain-step__cta:hover {
  background: linear-gradient(135deg, #EA580C 0%, #D9480F 100%);
}

.lp-domain-step .lp-domain-step__cta[hidden] {
  display: none;
}

.lp-domain-step .lp-domain-step__cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.lp-dstep-free {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #F0FDF9;
  border: 1px solid rgba(0, 182, 122, 0.25);
  color: #047857;
  font-size: 0.82rem;
  font-weight: 800;
}

.lp-dstep-free i {
  color: #00b67a;
}

.lp-domain-exist {
  gap: 1rem;
}

.lp-domain-exist__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: #57534E;
}

.lp-domain-exist__label i {
  color: #EA580C;
}

.lp-domain-exist select {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border-color: rgba(10, 10, 10, 0.14);
  font-weight: 700;
}

.lp-domain-exist__empty {
  padding: 1.1rem;
  border-radius: 14px;
}

/* ── Responsive ── */

@media (max-width: 560px) {
  .lp-dstep-steps__label {
    display: none;
  }

  .lp-dstep-hero__top {
    justify-content: center;
  }
}


/* ═══ Professional email hosting (domains tab) ═══ */

.lp-emh {
  width: 100%;
  margin-top: 2.5rem;
  padding: 1.6rem 1.4rem 1.7rem;
  border-radius: 24px;
  background:
    radial-gradient(480px 220px at 90% -10%, rgba(249, 115, 22, 0.12), transparent 60%),
    radial-gradient(420px 200px at 8% 110%, rgba(14, 165, 233, 0.1), transparent 60%),
    linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(10, 10, 10, 0.07);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.lp-emh__head {
  text-align: center;
  margin-bottom: 1.15rem;
}

.lp-emh__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #EA580C;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.lp-emh__head h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  font-weight: 900;
  color: #0A0A0A;
}

.lp-emh__head p {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #64748b;
}

.lp-emh__toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.lp-emh__toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid rgba(10, 10, 10, 0.07);
}

.lp-emh__toggle-btn {
  padding: 0.42rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lp-emh__toggle-btn.is-active {
  background: #0A0A0A;
  color: #ffffff;
}

.lp-emh__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lp-emh-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lp-emh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.lp-emh-card.is-featured {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.14);
}

.lp-emh-card__badge {
  position: absolute;
  top: -0.6rem;
  inset-inline-end: 1rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.35);
}

.lp-emh-card__icon {
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0.9rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.3);
}

.lp-emh-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 900;
  color: #0A0A0A;
}

.lp-emh-card__desc {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  line-height: 1.65;
  color: #64748b;
  min-height: 2.6em;
}

.lp-emh-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.lp-emh-card__amount {
  font-size: 1.55rem;
  font-weight: 900;
  color: #0A0A0A;
}

.lp-emh-card__period {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
}

.lp-emh-card__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.lp-emh-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
}

.lp-emh-card__features li i {
  margin-top: 0.12rem;
  color: #16a34a;
  font-size: 0.72rem;
}

.lp-emh-card__cta {
  width: 100%;
}

.lp-emh-card--placeholder {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.6);
  justify-content: center;
}

.lp-emh-card--placeholder .lp-emh-card__icon {
  background: #e2e8f0;
  color: #64748b;
  box-shadow: none;
}

.lp-emh-card--placeholder h4 {
  color: #475569;
}

@media (max-width: 1024px) {
  .lp-emh__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .lp-emh {
    padding: 1.2rem 1rem;
  }

  .lp-emh__grid {
    grid-template-columns: 1fr;
  }
}
