:root {
  --bg: #f2f4f8;
  --text: #0f172a;
  --muted: #5b6474;
  --brand: #22d3ee;
  --brand-dark: #0c4a6e;
  --violet: #7c3aed;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 24, 47, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(125, 211, 252, 0.24);
}

.top-strip {
  border-bottom: 1px solid rgba(125, 211, 252, 0.22);
  font-size: 0.78rem;
  color: #dbeafe;
  max-height: 4.5rem;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  transition:
    max-height 0.26s ease,
    opacity 0.24s ease,
    transform 0.26s ease,
    border-color 0.22s ease;
}

.top-strip-inner {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  transition: padding 0.24s ease;
}

.site-header.compact .top-strip {
  max-height: 0;
  opacity: 0;
  transform: translateY(-0.55rem);
  border-bottom-color: transparent;
  pointer-events: none;
}

.site-header.compact .top-strip-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.top-links,
.main-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.top-links a,
.main-links a {
  color: #ffffff;
}

.top-links a:hover,
.main-links a:hover {
  color: #67e8f9;
}

.nav-row {
  padding: 0.95rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.main-links a {
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav {
  position: relative;
  align-items: center;
  gap: 0.72rem;
}

.site-nav .menu-item {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 0.58rem;
  padding: 0.42rem 0.58rem;
  cursor: pointer;
}

.site-nav .menu-item:hover {
  color: #67e8f9;
  border-color: rgba(125, 211, 252, 0.32);
}

.menu-dropdown {
  position: relative;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.menu-arrow {
  font-size: 0.58rem;
  line-height: 1;
  color: #bfdbfe;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.62rem);
  left: 0;
  width: min(700px, calc(100vw - 2rem));
  min-width: 560px;
  border-radius: 0.94rem;
  border: 1px solid rgba(103, 232, 249, 0.35);
  background: rgba(4, 23, 45, 0.98);
  box-shadow: 0 24px 54px rgba(2, 12, 27, 0.48);
  padding: 0.95rem;
  display: none;
  z-index: 120;
}

.menu-dropdown.menu-align-center .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
}

.menu-dropdown.menu-align-right .dropdown-menu {
  left: auto;
  right: 0;
  transform: none;
}

.menu-dropdown.menu-align-right.menu-nudge-left .dropdown-menu {
  right: 1.1rem;
}

.menu-dropdown.menu-align-left.menu-services-shift .dropdown-menu {
  left: -39.6rem;
  right: auto;
  transform: none;
}

.menu-dropdown.open .dropdown-menu {
  display: block;
}

.mega-heading {
  margin: 0 0 0.66rem;
  color: #dbeafe;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.mega-grid {
  display: grid;
  gap: 0.58rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(15, 23, 42, 0.42);
  padding: 0.62rem 0.72rem;
  transition: 0.2s ease;
}

.mega-item:hover {
  border-color: rgba(103, 232, 249, 0.6);
  background: rgba(8, 47, 73, 0.6);
}

.mega-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: baseline;
}

.mega-item-title {
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 700;
}

.mega-item-price {
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mega-item-detail {
  color: #cbd5e1;
  font-size: 0.78rem;
  line-height: 1.38;
}

.mega-item-badge {
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.64);
  color: #6ee7b7;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.12rem 0.42rem;
}

.nav-cta {
  border: 1px solid rgba(103, 232, 249, 0.56);
  background: rgba(34, 211, 238, 0.16);
}

.hero {
  position: relative;
  margin-top: -1px;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(125deg, rgba(2, 15, 38, 0.94), rgba(6, 60, 112, 0.82), rgba(16, 92, 118, 0.65)),
    radial-gradient(circle at 10% 30%, rgba(34, 211, 238, 0.3), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(96, 165, 250, 0.22), transparent 40%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  padding: 4.5rem 0 4.25rem;
}

.hero-copy {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  margin: 1rem 0 0;
  max-width: 18ch;
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(103, 232, 249, 0.55);
  background: rgba(34, 211, 238, 0.16);
}

.hero-subtitle {
  margin: 1rem 0 0;
  color: #e0f2fe;
  max-width: 56ch;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  padding: 0.72rem 1.2rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #082f49;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.4);
}

.btn-primary:hover {
  background: #67e8f9;
}

.btn-outline {
  border-color: rgba(165, 243, 252, 0.7);
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.18);
}

.btn-outline:hover {
  background: rgba(34, 211, 238, 0.14);
}

.hero-search-wrap {
  align-self: stretch;
}

.search-shell {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  padding: 0;
}

.pill {
  display: inline-flex;
  border: 1px solid rgba(165, 243, 252, 0.6);
  border-radius: 0.62rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(34, 211, 238, 0.14);
}

.pill.muted {
  border-color: rgba(165, 243, 252, 0.35);
  background: rgba(15, 23, 42, 0.5);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.carousel-animation {
  margin: 0 0 0.85rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.animation-caption {
  margin: 0 0 0.35rem;
  text-align: center;
  color: #dbeafe;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.carousel-animation .hero-lottie {
  width: 100%;
  height: 280px;
  display: block;
  background: transparent !important;
}

.simple-search-form {
  width: 100%;
}

.simple-search-row {
  display: grid;
  gap: 0.62rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.simple-search-row input {
  width: 100%;
  border-radius: 0.72rem;
  border: 1px solid rgba(165, 243, 252, 0.6);
  background: rgba(2, 6, 23, 0.5);
  color: #ffffff;
  padding: 0.74rem 0.95rem;
  font-size: 0.95rem;
}

.simple-search-row input {
  min-width: 0;
}

.simple-search-row input::placeholder {
  color: #cbd5e1;
}

.custom-select {
  position: relative;
}

.select-toggle {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.select-toggle .chev {
  font-size: 0.7rem;
}

.select-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  border-radius: 1rem;
  border: 1px solid rgba(165, 243, 252, 0.46);
  background: #03162d;
  box-shadow: 0 16px 38px rgba(2, 6, 23, 0.48);
  max-height: 280px;
  overflow: auto;
  padding: 0.3rem;
  z-index: 20;
  display: none;
}

.custom-select.open .select-menu {
  display: block;
}

.select-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f8fafc;
  padding: 0.62rem 0.68rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  cursor: pointer;
}

.select-option:hover,
.select-option.active {
  background: rgba(34, 211, 238, 0.17);
}

.btn-search {
  border-radius: 0.72rem;
  border-color: rgba(165, 243, 252, 0.76);
  background: var(--brand);
  color: #082f49;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(34, 211, 238, 0.34);
}

.btn-search:hover {
  background: #67e8f9;
}

.status-pill {
  border-radius: 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.45rem 0.78rem;
  font-size: 0.82rem;
  background: rgba(15, 23, 42, 0.4);
}

.status-pill.hidden {
  display: none;
}

.status-pill.ok {
  display: inline-flex;
  border-color: rgba(110, 231, 183, 0.75);
  background: rgba(16, 185, 129, 0.19);
  color: #d1fae5;
}

.status-pill.warn {
  display: inline-flex;
  border-color: rgba(251, 191, 36, 0.72);
  background: rgba(251, 191, 36, 0.17);
  color: #fef3c7;
}

.status-pill.error {
  display: inline-flex;
  border-color: rgba(251, 113, 133, 0.72);
  background: rgba(251, 113, 133, 0.17);
  color: #ffe4e6;
}

.btn-ghost {
  border-radius: 0.72rem;
  border-color: rgba(165, 243, 252, 0.66);
  background: rgba(2, 6, 23, 0.42);
  color: #ffffff;
}

.btn-ghost:hover {
  background: rgba(34, 211, 238, 0.16);
}

.section-head p,
.page-head p {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #475569;
  font-weight: 700;
}

.section-head h2,
.page-head h1 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.55rem, 3.3vw, 2.2rem);
  line-height: 1.2;
}

.page-head {
  padding: 2.5rem 0 1rem;
}

.page-head p + p {
  margin-top: 0.8rem;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  font-weight: 400;
}

.pricing-section,
.services-section,
.domain-page {
  padding: 2.1rem 0 2.8rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head.centered {
  text-align: center;
  margin-bottom: 1.3rem;
}

.pricing-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card,
.service-card {
  position: relative;
  border-radius: 0.82rem;
  border: 1px solid #d5dbe5;
  background: var(--card);
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.pricing-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 36px rgba(15, 23, 42, 0.13);
}

.pricing-card.featured {
  border: 2px solid var(--violet);
  box-shadow: 0 22px 48px rgba(124, 58, 237, 0.26);
}

.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: var(--violet);
  color: #ffffff;
  padding: 0.42rem 0.5rem;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  font-weight: 800;
}

.discount-badge {
  position: absolute;
  right: 0.82rem;
  top: 0.82rem;
  border-radius: 999px;
  background: #d1fae5;
  color: #065f46;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 0.28rem 0.56rem;
}

.pricing-card.featured .discount-badge {
  top: 2.1rem;
}

.pricing-card h3,
.service-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.pricing-card.featured h3 {
  margin-top: 1.45rem;
}

.tagline {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.86rem;
}

.price-block {
  margin-top: 0.9rem;
}

.old-price {
  margin: 0;
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 0.84rem;
}

.new-price {
  margin: 0.12rem 0 0;
  font-size: 2rem;
  font-weight: 800;
}

.new-price span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
}

.bonus {
  margin: 0.26rem 0 0;
  color: #047857;
  font-size: 0.84rem;
  font-weight: 700;
}

.choose-btn {
  margin-top: 0.92rem;
  width: 100%;
  border: 1px solid #0f172a;
  color: #0f172a;
  background: #ffffff;
}

.choose-btn:hover {
  background: #0f172a;
  color: #ffffff;
}

.choose-btn.dark {
  background: #020617;
  color: #ffffff;
}

.choose-btn.dark:hover {
  background: #1e293b;
}

.pricing-card hr {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 0.95rem 0;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #334155;
}

.service-category {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6d28d9;
  font-weight: 700;
}

.service-price {
  margin: 0.7rem 0 0;
  font-size: 1.65rem;
  font-weight: 800;
}

.billing-cycle {
  margin: 0.15rem 0 0.72rem;
  color: #64748b;
  font-size: 0.82rem;
  text-transform: capitalize;
}

.domain-page .domain-form {
  display: grid;
  grid-template-columns: 1fr 180px auto;
  gap: 0.75rem;
}

.domain-page .domain-form input,
.domain-page .domain-form select {
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  padding: 0.74rem 0.85rem;
  background: #ffffff;
}

.domain-result {
  margin-top: 1rem;
  border-radius: 0.85rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  padding: 0.95rem 1rem;
}

.domain-result p {
  margin: 0.2rem 0;
}

.domain-result.ok {
  border-color: #6ee7b7;
  background: #ecfdf5;
}

.domain-result.warn {
  border-color: #fbbf24;
  background: #fffbeb;
}

.site-footer {
  margin-top: 3rem;
  background: #041326;
  color: #cbd5e1;
}

.footer-inner {
  padding: 1.2rem 0 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #bfdbfe;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #67e8f9;
}

.empty {
  color: #64748b;
  font-size: 0.96rem;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }

  .dropdown-menu {
    min-width: 0;
    width: min(640px, calc(100vw - 2rem));
  }

  .menu-dropdown.menu-align-center .dropdown-menu {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .pricing-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dropdown-menu,
  .menu-dropdown.menu-align-center .dropdown-menu,
  .menu-dropdown.menu-align-right .dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 0.46rem;
  }

  .mega-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .main-links {
    gap: 0.6rem;
    width: 100%;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav .menu-item {
    font-size: 0.84rem;
    padding: 0.38rem 0.5rem;
  }

  .carousel-animation {
    min-height: 230px;
  }

  .carousel-animation .hero-lottie {
    height: 210px;
  }

  .simple-search-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .domain-page .domain-form {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}
