* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(29, 116, 245, 0.18), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(14, 165, 233, 0.16), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(13, 43, 92, 0.12), transparent 35%),
    #f6f8fc;
  color: #172033;
  overflow-x: hidden;
}

/* animated background glow */
body::before {
  content: "";
  position: fixed;
  inset: -200px;
  background:
    linear-gradient(120deg, transparent, rgba(29, 116, 245, 0.08), transparent);
  animation: backgroundMove 12s linear infinite;
  z-index: -1;
}

@keyframes backgroundMove {
  0% {
    transform: translateX(-10%) translateY(-5%);
  }
  50% {
    transform: translateX(10%) translateY(5%);
  }
  100% {
    transform: translateX(-10%) translateY(-5%);
  }
}

/* HEADER */

.header {
  height: 82px;
  padding: 0 7%;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 35px rgba(15, 35, 75, 0.06);
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: #0d2b5c;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: -0.5px;
}

.logo span {
  color: #1d74f5;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: #4c5870;
  font-weight: 700;
  position: relative;
  transition: 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  background: #1d74f5;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #0d2b5c;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn,
button {
  border: none;
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, #1d74f5, #0f4fd6);
  color: white;
  box-shadow: 0 12px 28px rgba(29, 116, 245, 0.28);
}

.primary:hover {
  box-shadow: 0 18px 38px rgba(29, 116, 245, 0.38);
}

.ghost {
  background: rgba(238, 243, 251, 0.9);
  color: #0d2b5c;
}

/* HERO */

.hero {
  padding: 100px 7%;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: 8%;
  top: 80px;
  background: radial-gradient(circle, rgba(29,116,245,0.22), transparent 68%);
  filter: blur(8px);
  z-index: -1;
  animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(24px);
  }
}

.hero-content,
.hero-card,
.card,
.pricing-card,
.review,
.faq-item,
.trust-section {
  animation: fadeUp 0.75s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  background: rgba(234, 242, 255, 0.95);
  color: #1d4ed8;
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 24px;
  border: 1px solid rgba(29, 116, 245, 0.16);
  box-shadow: 0 12px 35px rgba(29,116,245,0.1);
}

.hero h1 {
  max-width: 820px;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: -2.8px;
  color: #0d1b35;
}

.hero h1::selection,
.hero p::selection {
  background: #dbeafe;
}

.hero p {
  max-width: 650px;
  margin: 24px 0;
  font-size: 20px;
  line-height: 1.7;
  color: #5c677d;
}

.domain-search {
  max-width: 780px;
  background: rgba(255, 255, 255, 0.88);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 140px 150px;
  gap: 10px;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(15, 35, 75, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.95);
  backdrop-filter: blur(14px);
}

.domain-search input,
.domain-search select {
  border: none;
  background: #f6f8fc;
  border-radius: 15px;
  padding: 18px;
  font-size: 16px;
  outline: none;
  color: #0d1b35;
}

.domain-search input:focus,
.domain-search select:focus {
  box-shadow: 0 0 0 3px rgba(29, 116, 245, 0.16);
}

.domain-search button {
  background: linear-gradient(135deg, #0d2b5c, #1d74f5);
  color: white;
}

.domain-result {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 900;
}

.domain-result button {
  background: linear-gradient(135deg, #16a34a, #0f9f6e);
  color: white;
  box-shadow: 0 14px 35px rgba(15, 159, 110, 0.25);
}

.available {
  color: #0f9f6e;
}

.taken {
  color: #dc2626;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: #4c5870;
  font-weight: 800;
}

.trust-row span {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(226,232,240,0.9);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-card {
  background:
    linear-gradient(160deg, rgba(13,43,92,0.98), rgba(13,27,53,0.98)),
    radial-gradient(circle at top right, rgba(125,211,252,0.25), transparent 30%);
  color: white;
  border-radius: 34px;
  padding: 40px;
  box-shadow: 0 35px 90px rgba(13,43,92,0.34);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -50px;
  top: -50px;
  background: rgba(125, 211, 252, 0.2);
  border-radius: 50%;
}

.hero-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.hero-card li::before {
  content: "✓ ";
  color: #7dd3fc;
  font-weight: 900;
}

.price-preview {
  margin-top: 34px;
  background: rgba(255,255,255,0.12);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
}

.price-preview span {
  display: block;
  opacity: 0.8;
}

.price-preview strong {
  font-size: 34px;
}

/* SECTIONS */

.section,
.reviews,
.faq {
  padding: 95px 7%;
}

.section h2,
.trust-section h2,
.reviews h2,
.faq h2 {
  font-size: 44px;
  color: #0d1b35;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
}

.section-text {
  color: #64748b;
  font-size: 18px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255,255,255,0.86);
  padding: 32px;
  border-radius: 26px;
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 20px 55px rgba(15, 35, 75, 0.07);
  transition: 0.28s ease;
  backdrop-filter: blur(14px);
}

.card:hover,
.pricing-card:hover,
.review:hover,
.faq-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(15, 35, 75, 0.13);
}

.card h3 {
  font-size: 34px;
  color: #1d74f5;
  margin-bottom: 12px;
}

.card p {
  color: #64748b;
  margin-bottom: 22px;
}

.card strong {
  color: #0d2b5c;
}

/* TRUST */

.trust-section {
  margin: 0 7%;
  padding: 72px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(125,211,252,0.22), transparent 35%),
    linear-gradient(135deg, #0d2b5c, #0d1b35);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  box-shadow: 0 35px 90px rgba(13,43,92,0.25);
}

.trust-section h2 {
  color: white;
}

.trust-section p {
  font-size: 18px;
  line-height: 1.75;
  opacity: 0.86;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.trust-grid div {
  background: rgba(255,255,255,0.11);
  padding: 22px;
  border-radius: 20px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.25s ease;
}

.trust-grid div:hover {
  background: rgba(255,255,255,0.17);
  transform: translateY(-4px);
}

/* PRICING */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}

.pricing-card {
  background: rgba(255,255,255,0.9);
  padding: 38px;
  border-radius: 30px;
  border: 1px solid rgba(226,232,240,0.95);
  position: relative;
  transition: 0.28s ease;
  backdrop-filter: blur(14px);
}

.pricing-card.featured {
  border: 2px solid #1d74f5;
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(29,116,245,0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-18px);
}

.popular {
  position: absolute;
  top: -16px;
  right: 24px;
  background: linear-gradient(135deg, #1d74f5, #0f4fd6);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.pricing-card p {
  color: #64748b;
  margin-bottom: 24px;
}

.pricing-card strong {
  font-size: 46px;
  color: #0d2b5c;
}

.pricing-card span {
  color: #64748b;
}

.pricing-card button {
  width: 100%;
  margin-top: 28px;
  background: linear-gradient(135deg, #0d2b5c, #1d74f5);
  color: white;
}

/* REVIEWS */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.review {
  background: rgba(255,255,255,0.88);
  padding: 30px;
  border-radius: 26px;
  color: #334155;
  line-height: 1.7;
  border: 1px solid rgba(226,232,240,0.95);
  transition: 0.28s ease;
  backdrop-filter: blur(14px);
}

.review span {
  display: block;
  margin-top: 18px;
  font-weight: 900;
  color: #0d2b5c;
}

/* FAQ */

.faq-item {
  background: rgba(255,255,255,0.88);
  padding: 28px;
  border-radius: 22px;
  margin-top: 16px;
  border: 1px solid rgba(226,232,240,0.95);
  transition: 0.28s ease;
  backdrop-filter: blur(14px);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #0d2b5c;
}

.faq-item p {
  color: #64748b;
}

/* FOOTER */

.footer {
  padding: 42px 7%;
  background: linear-gradient(135deg, #0d1b35, #081225);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .logo {
  color: white;
}

.footer p {
  color: #cbd5e1;
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 53, 0.62);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal.active {
  display: flex;
}

.modal-box {
  background: rgba(255,255,255,0.95);
  width: 420px;
  padding: 36px;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0,0,0,0.28);
  animation: modalPop 0.25s ease both;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #eef3fb;
  color: #0d2b5c;
  padding: 8px 12px;
}

.modal-box h2 {
  margin-bottom: 24px;
  color: #0d1b35;
}

.modal-box input,
.pricing-card input {
  width: 100%;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid #d9e1ee;
  margin-bottom: 14px;
  font-size: 15px;
  outline: none;
  background: #f8fafc;
}

.modal-box input:focus,
.pricing-card input:focus {
  border-color: #1d74f5;
  box-shadow: 0 0 0 3px rgba(29,116,245,0.14);
}

.full {
  width: 100%;
  margin-top: 8px;
}

.modal-note {
  margin-top: 16px;
  font-size: 14px;
  color: #64748b;
  text-align: center;
}

/* USER */

.user-name {
  font-weight: 900;
  color: #0d2b5c;
  background: rgba(238, 243, 251, 0.95);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(226,232,240,0.9);
}

/* MOBILE */

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 17px;
  }

  .domain-search {
    grid-template-columns: 1fr;
  }

  .cards,
  .pricing,
  .review-grid,
  .trust-section,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-section {
    margin: 0;
    border-radius: 0;
    padding: 55px 7%;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-7px);
  }

  .footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .modal-box {
    width: calc(100% - 30px);
  }
}
.card button {
  margin-top: 14px;
  background: #ef4444;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
}

.card button:hover {
  background: #dc2626;
}
.legal-section {
  position: relative;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.legal-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 20px 55px rgba(15, 35, 75, 0.07);
  backdrop-filter: blur(14px);
  transition: 0.28s ease;
}

.legal-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(15, 35, 75, 0.13);
}

.legal-card h3 {
  color: #0d2b5c;
  font-size: 22px;
  margin-bottom: 12px;
}

.legal-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 18px;
}

.legal-card a {
  color: #1d74f5;
  font-weight: 900;
  text-decoration: none;
}

.terms-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #d9e1ee;
  border-radius: 16px;
  padding: 16px;
  margin: 18px 0;
  color: #4c5870;
  line-height: 1.5;
  font-weight: 700;
}

.terms-check input {
  width: auto;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}
.card button {
  margin-top: 14px;
  background: #ef4444;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
}

.card button:hover {
  background: #dc2626;
}

.terms-check:hover {
  border-color: #1d74f5;
}
.legal-page h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #0d2b5c;
  font-size: 22px;
}

.legal-page p {
  max-width: 950px;
  color: #4c5870;
  line-height: 1.8;
  margin-bottom: 14px;
}

.terms-check a {
  color: #1d74f5;
  font-weight: 900;
  text-decoration: none;
}

.terms-check a:hover {
  text-decoration: underline;
}
.card button + button {
  margin-left: 10px;
}
.dns-table {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 35, 75, 0.07);
}

.dns-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 2fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #e6eaf2;
}

.dns-row:last-child {
  border-bottom: none;
}

.dns-head {
  background: #eef3fb;
  font-weight: 900;
  color: #0d2b5c;
}

.dns-row span {
  color: #4c5870;
  overflow-wrap: anywhere;
}

.dns-row button {
  background: #0d2b5c;
  color: white;
  padding: 9px 12px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .dns-row {
    grid-template-columns: 1fr;
  }
}
.billing-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.payment-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.9);
  padding: 18px 22px;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  margin-bottom: 12px;
}

.payment-row span {
  color: #4c5870;
  font-weight: 700;
}

.payment-row button {
  background: #0d2b5c;
  color: white;
  padding: 9px 12px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .billing-summary,
  .payment-row {
    grid-template-columns: 1fr;
  }
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: white;
}
.ticket-card {
  background: rgba(255,255,255,0.9);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid #e6eaf2;
  margin-bottom: 16px;
  box-shadow: 0 20px 55px rgba(15, 35, 75, 0.07);
}

.ticket-card h3 {
  color: #0d2b5c;
  margin-bottom: 12px;
}

.ticket-card p {
  color: #4c5870;
  margin-bottom: 8px;
}

.ticket-card button {
  margin-top: 12px;
  background: #0d2b5c;
  color: white;
}
.admin-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.9);
  padding: 18px 22px;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  margin-bottom: 12px;
}

.admin-row span {
  color: #4c5870;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .admin-row {
    grid-template-columns: 1fr;
  }
}