/* ═══ Hosting page · Domains tab — 2026 redesign ═══
   New cohesive design: dark search hero + light cards,
   popular TLDs, transfer banner, results, features & FAQ. */

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

/* ── Hero / search (dark panel) ── */

.lp-dom-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(1.35rem, 3.2vw, 2.2rem);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(ellipse 60% 85% at 12% -12%, rgba(249, 115, 22, 0.34), transparent 55%),
    radial-gradient(ellipse 55% 75% at 96% 112%, rgba(249, 115, 22, 0.2), transparent 60%),
    linear-gradient(160deg, #0A0A0A 0%, #131418 55%, #1a1b21 100%);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.26);
}

.lp-dom-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 0%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 85% 80% at 50% 0%, #000 25%, transparent 78%);
}

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

.lp-dom-hero__glow--1 {
  width: 260px;
  height: 260px;
  top: -90px;
  inset-inline-start: -40px;
  background: rgba(249, 115, 22, 0.3);
}

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

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

.lp-dom-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.4);
}

.lp-dom-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
}

.lp-dom-hero__live i {
  font-size: 0.55rem;
  color: #4ade80;
  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: 44rem;
  margin-bottom: 1.4rem;
}

.lp-dom-hero__copy h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.lp-dom-hero__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.8;
}

.lp-dom-search {
  position: relative;
  z-index: 1;
}

.lp-dom-search__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
}

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

.lp-dom-search__row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  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.22), 0 16px 44px rgba(0, 0, 0, 0.35);
}

.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.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.lp-dom-search__tlds-label {
  margin-inline-end: 0.15rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
}

.lp-dom-tld {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

.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;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

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

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

.lp-dom-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
}

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

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

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

/* ── Popular TLDs ── */

.lp-dom-popular {
  padding: clamp(1.15rem, 2.6vw, 1.6rem);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.lp-dom-popular__head {
  margin-bottom: 1rem;
}

.lp-dom-popular__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #C2410C;
  font-size: 0.74rem;
  font-weight: 900;
}

.lp-dom-popular__head h4 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: #0A0A0A;
}

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

.lp-dom-popular__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.7rem;
}

.lp-dom-popular__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.09);
  background: #ffffff;
  font: inherit;
  text-align: start;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lp-dom-popular__card:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.lp-dom-popular__card:focus-visible {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

.lp-dom-popular__ext {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0A0A0A;
  letter-spacing: -0.01em;
}

.lp-dom-popular__ext b {
  color: #F97316;
}

.lp-dom-popular__price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
}

.lp-dom-popular__price i {
  color: #F97316;
  font-size: 0.7rem;
}

.lp-dom-popular__card.is-on {
  border-color: transparent;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFE4CC 100%);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.14);
}

.lp-dom-popular__card.is-on .lp-dom-popular__ext {
  color: #C2410C;
}

.lp-dom-popular__card.is-on .lp-dom-popular__price {
  color: #EA580C;
}

/* ── Transfer banner ── */

.lp-dom .lp-dt-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: linear-gradient(120deg, #FFF7ED 0%, rgba(255, 228, 204, 0.35) 100%);
}

.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.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: #0A0A0A;
  color: #F97316;
  box-shadow: 0 6px 16px rgba(10, 10, 10, 0.22);
  flex-shrink: 0;
}

.lp-dom .lp-dt-banner .lp-btn {
  border-radius: 12px;
}

/* ── 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.02rem;
  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.34rem 0.8rem;
  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.2rem 1.25rem;
  border-radius: 20px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  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(249, 115, 22, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #FFFDF8 100%);
}

.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, #F97316 0%, #EA580C 100%);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.3);
}

.lp-dom-results .lp-hosting-status--no {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid rgba(15, 23, 42, 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.2rem 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1.5px dashed rgba(15, 23, 42, 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.3rem 0.35rem 0;
}

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

.lp-dom-features__head h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  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.6rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 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.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #2b2b2b 100%);
  color: #F97316;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(10, 10, 10, 0.2);
}

.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: 48rem;
  margin: 0 auto;
}

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

.lp-dom-faq__item {
  margin-bottom: 0.7rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 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 10px 26px rgba(249, 115, 22, 0.08);
}

.lp-dom-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  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.15rem 1.1rem;
  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-popular__grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .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%;
  }
}
