.page-dominios main {
  padding-top: 0;
}

/* —— Hero —— */
.page-dominios .dom-hero {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.dom-hero-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.dom-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.dom-hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.dom-hero .badge strong {
  color: var(--primary);
}

.dom-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.dom-jump a {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.dom-jump a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

/* Search panel */
.dom-search-panel {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dom-search-block {
  padding: 1.75rem 2rem;
}

.dom-search-block-head {
  margin-bottom: 1.25rem;
}

.dom-search-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.dom-search-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.dom-search-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.dom-search-divider::before,
.dom-search-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.dom-search-divider span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}

.dom-search-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}

.dom-www {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.95rem;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.dom-search-row input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem;
  color: var(--text);
  font-family: var(--mono);
  font-size: 1.05rem;
  min-width: 0;
}

.dom-search-row input:focus {
  outline: none;
}

.dom-search-row .btn {
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.dom-tld-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}

.tld-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tld-chip {
  cursor: pointer;
}

.tld-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tld-chip span {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.85rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}

.tld-chip input:checked + span {
  background: rgba(5, 153, 128, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.dom-single-form {
  margin: 0;
}

.dom-single-row {
  display: flex;
  gap: 0.5rem;
}

.dom-single-row input {
  flex: 1;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 1rem;
}

.dom-single-row input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 153, 128, 0.12);
}

.dom-single-row .btn {
  flex-shrink: 0;
  align-self: stretch;
}

/* API status & results */
.api-status {
  max-width: 760px;
  margin: 1.25rem auto 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: left;
}

.api-status.ok {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--success);
}

.api-status.warn {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fbbf24;
}

.search-results {
  max-width: 760px;
  margin: 1.25rem auto 0;
  text-align: left;
}

.search-results h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.result-item.available {
  border-color: rgba(52, 211, 153, 0.35);
}

.result-item.unavailable {
  opacity: 0.8;
}

.result-domain {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.05rem;
}

.result-domain .tld-part {
  color: var(--primary);
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.result-price {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.result-status {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.result-status.avail {
  background: rgba(52, 211, 153, 0.15);
  color: var(--success);
}

.result-status.taken {
  background: rgba(248, 113, 113, 0.12);
  color: var(--danger);
}

.result-status.check {
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-muted);
}

.result-loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.result-loading .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: dom-spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes dom-spin {
  to {
    transform: rotate(360deg);
  }
}

/* —— Features —— */
.dom-features {
  padding: 4rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.dom-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dom-feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.dom-feature-card:hover {
  border-color: rgba(5, 153, 128, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.dom-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
}

.dom-feature-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.dom-feature-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* —— Pricing —— */
.dom-pricing {
  padding: 4rem 0;
  background: var(--bg);
}

.dom-pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.dom-pricing .tld-table-scroll {
  border: none;
  box-shadow: none;
  border-radius: var(--radius-lg);
}

.tld-pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.tld-pricing-search {
  flex: 1 1 280px;
  max-width: 420px;
}

.tld-pricing-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Ccircle cx='8' cy='8' r='5'/%3E%3Cpath d='M12 12l4 4'/%3E%3C/svg%3E")
    no-repeat 0.85rem center;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.95rem;
}

.tld-pricing-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 153, 128, 0.12);
}

.tld-pricing-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.tld-pricing-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 1.5rem 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tld-table-scroll {
  overflow-x: auto;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.tld-pricing-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.tld-pricing-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.tld-pricing-table thead {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1;
}

.tld-pricing-table th,
.tld-pricing-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
}

.tld-pricing-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.tld-pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.tld-pricing-table tbody tr:last-child {
  border-bottom: none;
}

.tld-pricing-row {
  cursor: pointer;
}

.tld-pricing-row:hover,
.tld-pricing-row:focus-visible {
  background: rgba(5, 153, 128, 0.06);
  outline: none;
}

.tld-pricing-table .tld-ext {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.tld-pricing-table td {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.loading-tlds {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}

/* —— Transfer —— */
.dom-transfer {
  padding: 4rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.section-head--left {
  text-align: left;
  margin-bottom: 1.5rem;
}

.section-head--left h2 {
  margin-bottom: 0.5rem;
}

.section-head--left p {
  margin-inline: 0;
  max-width: 36rem;
}

.transfer-box {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.transfer-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: dom-step;
}

.transfer-steps li {
  counter-increment: dom-step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 1rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.transfer-steps li::before {
  content: counter(dom-step);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
}

.transfer-form-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.transfer-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.transfer-form input {
  padding: 0.9rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 1rem;
}

.transfer-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 153, 128, 0.12);
}

/* —— FAQ —— */
.dom-faq {
  padding: 4rem 0;
  background: var(--bg);
}

.dom-faq-inner {
  max-width: 48rem;
  margin-inline: auto;
}

.dom-faq .faq-list {
  margin-top: 0;
}

/* —— CTA —— */
.dom-cta {
  padding: 4rem 0 5rem;
  background: var(--bg-white);
}

.dom-cta-inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(5, 153, 128, 0.1), rgba(5, 153, 128, 0.03));
  border: 1px solid rgba(5, 153, 128, 0.2);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
}

.dom-cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.dom-cta-inner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-inline: auto;
}

.dom-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .dom-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-dominios .dom-hero {
    padding: 1.5rem 0 2.5rem;
  }

  .dom-search-block {
    padding: 1.25rem 1.25rem;
  }

  .dom-search-divider {
    padding: 0 1.25rem;
  }

  .dom-search-row {
    flex-wrap: wrap;
  }

  .dom-www {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: center;
  }

  .dom-search-row input {
    width: 100%;
  }

  .dom-search-row .btn {
    width: 100%;
  }

  .dom-single-row {
    flex-direction: column;
  }

  .dom-single-row .btn {
    width: 100%;
  }

  .dom-features-grid {
    grid-template-columns: 1fr;
  }

  .transfer-box {
    grid-template-columns: 1fr;
  }

  .section-head--left {
    text-align: center;
  }

  .section-head--left p {
    margin-inline: auto;
  }

  .dom-cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
