:root {
  color-scheme: light;
  font-family: "Manrope", Arial, sans-serif;
  background: #f6f8fc;
  color: #172033;
  scrollbar-color: #94a3b8 #f8fafc;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  min-height: 32px;
  border: 2px solid #f8fafc;
  border-radius: 999px;
  background: #94a3b8;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(30, 41, 59);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background: #f8fafc;
}

.top-bar {
  position: relative;
  z-index: 11;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgb(30, 41, 59);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  min-height: 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f8fafc;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.top-bar__link span {
  position: relative;
}

.top-bar__link span::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.top-bar__link:hover span::after,
.top-bar__link:focus-visible span::after {
  transform: scaleX(1);
}

.top-bar__link i {
  font-size: 0.84rem;
}

.top-bar__link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 2px;
}

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 72px);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(32, 57, 88, 0.06);
}

.navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: #17243a;
  line-height: 1;
  text-decoration: none;
}

.brand__symbol {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  transform: scale(1.12);
  transform-origin: center;
}

.brand__lockup {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.brand__tagline {
  margin-left: 2px;
  color: #667487;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 2.7vw, 2.35rem);
  letter-spacing: 0.045em;
  line-height: 1;
}

.brand__wordmark span:last-child {
  color: rgb(30, 41, 59);
}

.brand:hover .brand__wordmark span:last-child {
  color: rgb(30, 41, 59);
}

.brand:focus-visible {
  outline: 2px solid #64748b;
  outline-offset: 6px;
  border-radius: 2px;
}

.navigation__links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation__links a,
.navigation__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3e4a5d;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 180ms ease;
}

.navigation__trigger {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.navigation__links a i,
.navigation__trigger i {
  width: 17px;
  color: #66758a;
  font-size: 1.08rem;
  text-align: center;
  transition: color 180ms ease;
}

.navigation__links a:hover,
.navigation__links a:focus-visible,
.navigation__links a[aria-current="page"],
.navigation__trigger:hover,
.navigation__trigger:focus-visible,
.navigation__trigger[aria-expanded="true"] {
  color: #152033;
}

.navigation__links a:hover i,
.navigation__links a:focus-visible i,
.navigation__links a[aria-current="page"] i,
.navigation__trigger:hover i,
.navigation__trigger:focus-visible i,
.navigation__trigger[aria-expanded="true"] i {
  color: rgb(30, 41, 59);
}

.navigation__links > li > a[aria-current="page"] {
  position: relative;
}

.navigation__trigger--current {
  position: relative;
  color: #152033;
}

.navigation__trigger--current > i {
  color: rgb(30, 41, 59);
}

.navigation__links > li > a[aria-current="page"]::after,
.navigation__trigger--current::after {
  position: absolute;
  right: 4px;
  bottom: -11px;
  left: 4px;
  height: 2px;
  border-radius: 999px;
  background: rgb(30, 41, 59);
  content: "";
}

.navigation__links a:focus-visible,
.navigation__trigger:focus-visible {
  outline: 2px solid #64748b;
  outline-offset: 6px;
  border-radius: 2px;
}

.navigation__item--dropdown {
  position: relative;
}

.navigation__trigger .navigation__caret {
  width: auto;
  margin-left: -2px;
  font-size: 0.7rem;
  transition: color 180ms ease, transform 180ms ease;
}

.navigation__trigger[aria-expanded="true"] .navigation__caret {
  transform: rotate(180deg);
}

.navigation__dropdown {
  position: absolute;
  z-index: 20;
  top: calc(100% + 16px);
  left: 50%;
  width: 278px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(51, 65, 85, 0.13);
  border-radius: 11px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(31, 58, 86, 0.12);
  list-style: none;
  transform: translateX(-50%);
}

.navigation__dropdown[hidden] {
  display: none;
}

.navigation__dropdown a {
  width: 100%;
  padding: 11px 12px;
  align-items: flex-start;
  border-radius: 7px;
  color: #3f4d61;
}

.navigation__dropdown-action {
  display: inline-flex;
  width: 100%;
  padding: 11px 12px;
  align-items: flex-start;
  gap: 8px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #3f4d61;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.navigation__dropdown a > i,
.navigation__dropdown-action > i {
  width: 17px;
  margin-top: 2px;
  flex: 0 0 17px;
  font-size: 1.08rem;
  text-align: center;
}

.navigation__dropdown a > i.ph-globe,
.navigation__dropdown a > i.ph-windows-logo {
  color: #2563eb;
}

.navigation__dropdown a > i.ph-linux-logo {
  color: #d97706;
}

.navigation__dropdown a > i.ph-shield-check {
  color: #059669;
}

.navigation__dropdown a > i.ph-ticket {
  color: #7c3aed;
}

.navigation__dropdown a > i.ph-whatsapp-logo {
  color: #15803d;
}

.navigation__dropdown a > i.ph-discord-logo,
.navigation__dropdown-action > i.ph-discord-logo {
  color: #5865f2;
}

.navigation__dropdown-content {
  display: block;
  min-width: 0;
}

.navigation__dropdown-title,
.navigation__dropdown-description {
  display: block;
}

.navigation__dropdown-description {
  margin-top: 3px;
  color: #667487;
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  white-space: nowrap;
}

.navigation__dropdown a:hover,
.navigation__dropdown a:focus-visible,
.navigation__dropdown-action:hover,
.navigation__dropdown-action:focus-visible {
  background: #f1f5f9;
  color: #334155;
}

.navigation__dropdown a:hover .navigation__dropdown-description,
.navigation__dropdown a:focus-visible .navigation__dropdown-description,
.navigation__dropdown-action:hover .navigation__dropdown-description,
.navigation__dropdown-action:focus-visible .navigation__dropdown-description {
  color: #657789;
}

.navigation__dropdown-action:focus-visible {
  outline: 2px solid #64748b;
  outline-offset: 2px;
}

.navigation__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 8px;
  padding: 11px 19px;
  border: 1px solid rgb(30, 41, 59);
  border-radius: 8px;
  background: rgb(30, 41, 59);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(22, 34, 56, 0.12);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.navigation__login i {
  width: 17px;
  color: #ffffff;
  font-size: 1.08rem;
  text-align: center;
}

.navigation__login:hover,
.navigation__login:focus-visible {
  border-color: rgb(30, 41, 59);
  background: rgb(30, 41, 59);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.2);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 54px 20px 32px;
  overflow: hidden;
  background: #f8fafc;
  isolation: isolate;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  color: #53667f;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.hero h1 {
  margin: 0;
  color: #111c2f;
  font-size: clamp(2.7rem, 5.4vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 .hero__highlight {
  display: inline-block;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .hero__highlight--cpu {
  background-image: linear-gradient(90deg, rgb(30, 41, 59) 0%, #9a5b13 62%, #d97706 100%);
}

.hero h1 .hero__highlight--memory {
  background-image: linear-gradient(90deg, rgb(30, 41, 59) 0%, #5b21b6 62%, #8b5cf6 100%);
}

.hero__description {
  max-width: 650px;
  margin: 20px auto 0;
  color: #627087;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.hero__mesh {
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: -14%;
  left: -5%;
  height: 64%;
  background-color: rgba(100, 116, 139, 0.08);
  background-image:
    radial-gradient(circle, rgba(71, 85, 105, 0.46) 1px, transparent 1.5px),
    repeating-linear-gradient(63deg, rgba(100, 116, 139, 0.22) 0 1px, transparent 1px 27px),
    repeating-linear-gradient(-37deg, rgba(148, 163, 184, 0.2) 0 1px, transparent 1px 30px),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(100, 116, 139, 0.08) 100%);
  background-size: 27px 27px, auto, auto, auto;
  clip-path: polygon(0 78%, 7% 56%, 18% 73%, 30% 39%, 41% 62%, 52% 31%, 62% 50%, 74% 5%, 84% 40%, 100% 22%, 100% 100%, 0 100%);
  filter: drop-shadow(0 -14px 30px rgba(51, 65, 85, 0.07));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 100%);
}

.hero__mesh::before,
.hero__mesh::after {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(24deg, transparent 0 38px, rgba(100, 116, 139, 0.13) 39px 40px),
    repeating-linear-gradient(-18deg, transparent 0 45px, rgba(148, 163, 184, 0.12) 46px 47px);
  content: "";
}

.hero__mesh::before {
  transform: translate(-4%, 12%) scale(1.12);
}

.hero__mesh::after {
  opacity: 0.7;
  transform: translate(5%, 22%) scale(1.18);
}

.hero__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1120px, 100%);
  margin: 42px auto 0;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 190px;
  padding: 24px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.13);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.feature-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.38), transparent);
  content: "";
}

.feature-card:hover {
  border-color: rgba(51, 65, 85, 0.22);
  background: #ffffff;
  transform: translateY(-3px);
}

.feature-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(51, 65, 85, 0.11);
  border-radius: 9px;
  background: rgba(241, 245, 249, 0.9);
  color: #475569;
  font-size: 1.25rem;
}

.feature-card__icon--cpu {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #b45309;
}

.feature-card__icon--memory {
  border-color: #ddd6fe;
  background: #f5f3ff;
  color: #6d28d9;
}

.feature-card__icon--shield {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #2563eb;
}

.feature-card h2 {
  margin: 0;
  color: #17243a;
  font-size: 1.06rem;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 9px 0 20px;
  color: #67768b;
  font-size: 0.84rem;
  line-height: 1.55;
}

.feature-card > a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  align-items: center;
  gap: 6px;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.feature-card > a i {
  transition: transform 180ms ease;
}

.feature-card > a:hover i {
  transform: translateX(3px);
}

.catalog-hero {
  padding: 82px 20px 88px;
  background: rgb(30, 41, 59);
  text-align: center;
}

.catalog-hero__inner {
  width: min(780px, 100%);
  margin: 0 auto;
}

.catalog-hero__eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  align-items: center;
  gap: 8px;
  color: #bfdbfe;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-hero__eyebrow i {
  font-size: 1rem;
}

.catalog-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.catalog-hero__description {
  max-width: 650px;
  margin: 22px auto 0;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.plans-preview {
  padding: 82px 20px 92px;
  border-top: 1px solid rgba(51, 65, 85, 0.1);
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
  background: #f8fafc;
}

.plans-preview__heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.plans-preview__heading p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans-preview__heading h2 {
  margin: 0;
  color: #17243a;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.plans-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1040px, 100%);
  margin: 38px auto 0;
}

.plans-preview__grid--single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

.server-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(760px, 100%);
  margin: 34px auto 0;
}

.customer-community {
  display: flex;
  width: min(1200px, 100%);
  margin: 28px auto 0;
  padding: 24px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgb(30, 41, 59);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.customer-community__message {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.customer-community__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #86efac;
  font-size: 1.55rem;
}

.customer-community__copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.customer-community__copy p,
.customer-community__copy h3,
.customer-community__copy span {
  margin: 0;
}

.customer-community__copy p {
  color: #86efac;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-community__copy h3 {
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  letter-spacing: -0.025em;
}

.customer-community__copy span {
  color: #cbd5e1;
  font-size: 0.78rem;
  line-height: 1.55;
}

.customer-community__action {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: #ffffff;
  color: rgb(30, 41, 59);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.customer-community__action:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: translateY(-2px);
}

.customer-community__action:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.42);
  outline-offset: 4px;
}

.included-suite {
  padding: 70px 20px 76px;
  background: rgb(30, 41, 59);
}

.included-suite__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.included-suite__heading {
  max-width: 760px;
}

.included-suite__heading p,
.included-suite__heading h2,
.included-suite__heading span {
  margin: 0;
}

.included-suite__heading p {
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.included-suite__heading h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.included-suite__heading span {
  display: block;
  max-width: 680px;
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
}

.included-suite__grid {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.included-tool {
  display: flex;
  min-width: 0;
  padding: 25px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.included-tool__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  font-size: 1.4rem;
}

.included-tool--security .included-tool__icon {
  background: rgba(148, 163, 184, 0.14);
  color: #cbd5e1;
}

.included-tool--launcher .included-tool__icon {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.included-tool--whatsapp .included-tool__icon {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

.included-tool h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.included-tool > p {
  min-height: 66px;
  margin: 10px 0 18px;
  color: #cbd5e1;
  font-size: 0.84rem;
  line-height: 1.65;
}

.included-tool ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 17px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.8rem;
  line-height: 1.5;
  list-style: none;
}

.included-tool li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.included-tool li i {
  margin-top: 3px;
  flex: 0 0 auto;
  color: #86efac;
  font-size: 0.88rem;
}

.ddos-comparison {
  padding: 76px 20px 82px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
  background: #f8fafc;
}

.ddos-comparison__inner {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.ddos-comparison__heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ddos-comparison__heading p,
.ddos-comparison__heading h2,
.ddos-comparison__heading span {
  margin: 0;
}

.ddos-comparison__heading p {
  margin-bottom: 9px;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ddos-comparison__heading h2 {
  color: #17243a;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.ddos-comparison__heading span {
  display: block;
  margin-top: 14px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.ddos-comparison__grid {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ddos-tier {
  display: flex;
  min-width: 0;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(51, 65, 85, 0.14);
  border-radius: 16px;
  background: #ffffff;
  color: #334155;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.ddos-tier--pro {
  border-color: rgb(30, 41, 59);
  background: rgb(30, 41, 59);
  color: #e2e8f0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.ddos-tier__header {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ddos-tier__header > span {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ddos-tier--pro .ddos-tier__header > span {
  background: rgba(134, 239, 172, 0.12);
  color: #86efac;
}

.ddos-tier__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: #eef2f7;
  color: #475569;
  font-size: 1.4rem;
}

.ddos-tier--pro .ddos-tier__icon {
  background: rgba(134, 239, 172, 0.12);
  color: #86efac;
}

.ddos-tier h3 {
  margin: 0;
  color: #17243a;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.ddos-tier--pro h3 {
  color: #ffffff;
}

.ddos-tier > p {
  min-height: 76px;
  margin: 11px 0 24px;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.65;
  text-wrap: balance;
}

.ddos-tier--pro > p {
  color: #cbd5e1;
}

.ddos-tier dl {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid rgba(51, 65, 85, 0.12);
}

.ddos-tier--pro dl {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.ddos-tier dl div {
  display: grid;
  padding: 15px 0;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
}

.ddos-tier dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ddos-tier--pro dl div {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.ddos-tier dt,
.ddos-tier dd {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
}

.ddos-tier dt {
  color: #64748b;
  font-weight: 600;
}

.ddos-tier dd {
  color: #334155;
  font-weight: 700;
}

.ddos-tier--pro dt {
  color: #94a3b8;
}

.ddos-tier--pro dd {
  color: #ffffff;
}

.server-location {
  display: grid;
  min-width: 0;
  min-height: 82px;
  padding: 16px 18px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(51, 65, 85, 0.16);
  border-radius: 13px;
  background: #ffffff;
  color: #17243a;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.server-location:hover {
  border-color: rgba(30, 41, 59, 0.42);
  box-shadow: 0 13px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.server-location:focus-visible {
  outline: 3px solid rgba(100, 116, 139, 0.35);
  outline-offset: 4px;
}

.server-location--selected {
  border-color: rgb(30, 41, 59);
  box-shadow: 0 13px 32px rgba(15, 23, 42, 0.1);
}

.server-location img {
  display: block;
  width: 44px;
  height: 30px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.server-location__content {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.server-location__content strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.server-location__content small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
}

.server-location__content i {
  color: #475569;
  font-size: 0.86rem;
}

.server-location__metrics {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.server-location__status {
  display: inline-flex;
  padding: 6px 9px;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}

.server-location--selected .server-location__status {
  background: #ecfdf5;
  color: #16835a;
}

.server-location__latency {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  gap: 5px;
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.server-location__latency i {
  color: #475569;
  font-size: 0.82rem;
}

.server-location__latency-reading {
  display: inline-flex;
  gap: 2px;
}

.server-location__latency[data-state="measuring"] i {
  animation: latency-spin 800ms linear infinite;
}

.server-location__latency[data-state="ready"] {
  color: #334155;
}

.server-location__latency[data-state="ready"] i {
  color: #475569;
}

.server-location__latency[data-quality="good"] .server-location__latency-value {
  color: #16835a;
}

.server-location__latency[data-quality="fair"] .server-location__latency-value {
  color: #a16207;
}

.server-location__latency[data-quality="poor"] .server-location__latency-value {
  color: #b42318;
}

.server-location__latency[data-state="error"],
.server-location__latency[data-state="error"] i {
  color: #b45309;
}

@keyframes latency-spin {
  to {
    transform: rotate(360deg);
  }
}


.windows-plans[hidden] {
  display: none;
}

.windows-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1200px, 100%);
  margin: 38px auto 0;
}

.plans-carousel[hidden] {
  display: none;
}

.plans-carousel {
  display: grid;
  width: min(1310px, 100%);
  margin: 38px auto 0;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
}

.windows-plans--carousel {
  grid-column: 2;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  width: 100%;
  margin: 0;
  padding-block: 6px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  cursor: grab;
  will-change: scroll-position;
}

.windows-plans--carousel.is-dragging,
.windows-plans--carousel.is-animating {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.windows-plans--carousel.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.windows-plans--carousel.is-dragging .windows-plan {
  pointer-events: none;
}

.windows-plans--carousel::-webkit-scrollbar {
  display: none;
}

.windows-plans--carousel .windows-plan {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.plans-carousel__control {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgb(30, 41, 59);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.plans-carousel__control--previous {
  grid-column: 1;
}

.plans-carousel__control--next {
  grid-column: 3;
}

.plans-carousel__control:hover {
  background: #334155;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.26);
  transform: scale(1.05);
}

.plans-carousel__control:focus-visible {
  outline: 3px solid rgba(100, 116, 139, 0.38);
  outline-offset: 4px;
}

.plans-carousel__control:disabled {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.plans-carousel__control i {
  font-size: 1.15rem;
}

.windows-plan {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 32px 28px;
  flex-direction: column;
  border: 1px solid rgba(51, 65, 85, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.windows-plan:hover {
  border-color: rgba(51, 65, 85, 0.26);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.windows-plan--popular {
  border-color: rgb(30, 41, 59);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.windows-plan--popular:hover {
  border-color: rgb(30, 41, 59);
}

.windows-plan__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgb(30, 41, 59);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.windows-plan__header {
  min-height: 96px;
  padding-right: 0;
}

.windows-plan--popular .windows-plan__header h3 {
  padding-right: 104px;
}

.windows-plan__header h3 {
  margin: 0;
  color: #17243a;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.windows-plan__header p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.windows-plan__price {
  display: flex;
  margin: 10px 0 24px;
  align-items: baseline;
  gap: 7px;
  color: #0f172a;
  white-space: nowrap;
}

.windows-plan__price span {
  font-size: clamp(2.35rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
}

.windows-plan__price small {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
}

.windows-plan__features {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.45;
  list-style: none;
}

.windows-plan__features li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.windows-plan__features i {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  background: #ecfdf5;
  color: #16835a;
  font-size: 0.75rem;
  font-weight: 700;
}

.windows-plan__button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgb(30, 41, 59);
  border-radius: 999px;
  background: rgb(30, 41, 59);
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.windows-plan__button[href]:hover {
  border-color: #334155;
  background: #334155;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.windows-plan__button:focus-visible {
  outline: 3px solid rgba(100, 116, 139, 0.38);
  outline-offset: 3px;
}

.windows-plan__button:disabled {
  opacity: 0.88;
  cursor: not-allowed;
}

.hosting-catalog {
  padding-bottom: 100px;
}

.hosting-locations {
  margin-top: 32px;
}

.hosting-plans {
  margin: 0;
}

.hosting-plans-carousel {
  margin-top: 32px;
}

.hosting-plan {
  overflow: hidden;
}

.hosting-plan::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--hosting-tier-color);
  content: "";
}

.hosting-plan .windows-plan__header h3 {
  color: var(--hosting-tier-text);
}

.hosting-plan--silver .windows-plan__header h3,
.hosting-plan--pulse .windows-plan__header h3 {
  padding-right: 104px;
}

.hosting-plan--bronze {
  --hosting-tier-color: #c46a20;
  --hosting-tier-text: #8a4919;
}

.hosting-plan--silver {
  --hosting-tier-color: #94a3b8;
  --hosting-tier-text: #475569;
}

.hosting-plan--gold {
  --hosting-tier-color: #eab308;
  --hosting-tier-text: #a16207;
}

.hosting-plan--diamond {
  --hosting-tier-color: #0ea5e9;
  --hosting-tier-text: #0369a1;
}

.hosting-plan--platinum {
  --hosting-tier-color: #8b5cf6;
  --hosting-tier-text: #6d28d9;
}

.hosting-plan--emerald {
  --hosting-tier-color: #059669;
  --hosting-tier-text: #047857;
}

.hosting-plan--spark {
  --hosting-tier-color: #eab308;
  --hosting-tier-text: #a16207;
}

.hosting-plan--pulse {
  --hosting-tier-color: #ec4899;
  --hosting-tier-text: #be185d;
}

.hosting-plan--blaze {
  --hosting-tier-color: #f97316;
  --hosting-tier-text: #c2410c;
}

.hosting-plan--storm {
  --hosting-tier-color: #06b6d4;
  --hosting-tier-text: #0e7490;
}

.hosting-plan--nova {
  --hosting-tier-color: #8b5cf6;
  --hosting-tier-text: #6d28d9;
}

.hosting-plan--titan {
  --hosting-tier-color: #ef4444;
  --hosting-tier-text: #b91c1c;
}

.hosting-toolkit {
  padding: 68px 20px 72px;
  background: rgb(30, 41, 59);
  color: #ffffff;
}

.hosting-toolkit__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hosting-toolkit__heading {
  text-align: center;
}

.hosting-toolkit__heading > p {
  margin: 0 0 10px;
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hosting-toolkit__heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hosting-toolkit__heading span {
  display: block;
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hosting-toolkit__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hosting-toolkit__item {
  --toolkit-accent: #93c5fd;
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.hosting-toolkit__item > i {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--toolkit-accent) 34%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--toolkit-accent) 12%, transparent);
  color: var(--toolkit-accent);
  font-size: 1.25rem;
}

.hosting-toolkit__item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.hosting-toolkit__item p {
  margin: 9px 0 0;
  color: #cbd5e1;
  font-size: 0.76rem;
  line-height: 1.55;
}

.hosting-toolkit__item--sitepad {
  --toolkit-accent: #c4b5fd;
}

.hosting-toolkit__item--cloudlinux {
  --toolkit-accent: #86efac;
}

.hosting-toolkit__item--litespeed {
  --toolkit-accent: #fde68a;
}

.hosting-toolkit__item--softaculous {
  --toolkit-accent: #7dd3fc;
}

.hosting-toolkit__item--backups {
  --toolkit-accent: #67e8f9;
}

.hosting-protection {
  padding: 72px 20px 78px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
  background: #f8fafc;
}

.hosting-protection__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hosting-protection__heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hosting-protection__heading > p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hosting-protection__heading h2 {
  margin: 0;
  color: #17243a;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.hosting-protection__heading span {
  display: block;
  margin-top: 14px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hosting-protection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.hosting-protection__item {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(51, 65, 85, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
}

.hosting-protection__icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 11px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 1.35rem;
}

.hosting-protection__layer {
  position: absolute;
  top: 28px;
  right: 26px;
  color: #64748b;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hosting-protection__item h3 {
  margin: 0;
  color: #17243a;
  font-size: 1.03rem;
  letter-spacing: -0.025em;
}

.hosting-protection__item p {
  margin: 11px 0 0;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.65;
}

.hosting-protection__item--layer7 .hosting-protection__icon {
  border-color: rgba(124, 58, 237, 0.16);
  background: #f5f3ff;
  color: #7c3aed;
}

.hosting-protection__item--profiles .hosting-protection__icon {
  border-color: rgba(5, 150, 105, 0.16);
  background: #ecfdf5;
  color: #059669;
}

.layershield-hero {
  padding: 82px 20px 90px;
  background: rgb(30, 41, 59);
  color: #ffffff;
}

.layershield-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(48px, 7vw, 88px);
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: center;
}

.layershield-hero__eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 8px;
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.layershield-hero__eyebrow i {
  font-size: 1rem;
}

.layershield-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(4rem, 8vw, 6.7rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.layershield-hero h1 span {
  color: #86efac;
}

.layershield-hero h2 {
  max-width: 620px;
  margin: 24px 0 0;
  color: #f8fafc;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.layershield-hero__description {
  max-width: 600px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 0.94rem;
  line-height: 1.75;
}

.layershield-hero__button {
  display: inline-flex;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #17243a;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.layershield-hero__button:hover {
  border-color: #dcfce7;
  background: #dcfce7;
  transform: translateY(-2px);
}

.layershield-hero__button:focus-visible,
.layershield-included__inner > a:focus-visible {
  outline: 3px solid rgba(134, 239, 172, 0.5);
  outline-offset: 4px;
}

.layershield-overview {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.42);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.22);
}

.layershield-overview__status {
  display: inline-flex;
  padding: 7px 10px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #86efac;
  font-size: 0.68rem;
  font-weight: 700;
}

.layershield-overview__status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.12);
}

.layershield-overview ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.layershield-overview li {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layershield-overview li > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd;
  font-size: 1.15rem;
}

.layershield-overview li span {
  min-width: 0;
}

.layershield-overview strong,
.layershield-overview small {
  display: block;
}

.layershield-overview strong {
  color: #ffffff;
  font-size: 0.82rem;
}

.layershield-overview small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 0.7rem;
  line-height: 1.45;
}

.layershield-features,
.layershield-pricing {
  padding: 76px 20px 82px;
}

.layershield-features {
  background: #ffffff;
}

.layershield-pricing {
  border-top: 1px solid rgba(51, 65, 85, 0.08);
  background: #f8fafc;
}

.layershield-section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.layershield-section-heading > p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.layershield-section-heading h2 {
  margin: 0;
  color: #17243a;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.layershield-section-heading > span {
  display: block;
  margin-top: 14px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.layershield-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 36px auto 0;
}

.layershield-feature {
  padding: 24px;
  border: 1px solid rgba(51, 65, 85, 0.12);
  border-radius: 15px;
  background: #f8fafc;
}

.layershield-feature > i {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 11px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 1.25rem;
}

.layershield-feature h3 {
  margin: 0;
  color: #17243a;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.layershield-feature p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.6;
}

.layershield-plans__grid {
  width: min(1120px, 100%);
  margin-top: 38px;
}

.layershield-plan .windows-plan__header {
  min-height: 88px;
}

.layershield-plan--popular {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 18px 46px rgba(5, 150, 105, 0.11);
}

.layershield-plan--popular .windows-plan__badge {
  background: #059669;
}

.layershield-plan__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.layershield-plan:last-child .windows-plan__header h3 {
  padding-right: 92px;
}

.layershield-included {
  padding: 46px 20px;
  border-top: 1px solid rgba(51, 65, 85, 0.1);
  background: #ffffff;
}

.layershield-included__inner {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.layershield-included__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: #ecfdf5;
  color: #059669;
  font-size: 1.45rem;
}

.layershield-included__inner p {
  margin: 0 0 6px;
  color: #059669;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.layershield-included__inner h2 {
  margin: 0;
  color: #17243a;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.layershield-included__inner div > span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: 0.78rem;
}

.layershield-included__inner > a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 17px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: rgb(30, 41, 59);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.layershield-included__inner > a:hover {
  background: #334155;
  transform: translateY(-2px);
}

.linux-coming-soon {
  display: grid;
  min-height: clamp(480px, 62vh, 680px);
  padding: 88px 20px 96px;
  place-items: center;
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
  background: #f8fafc;
}

.linux-coming-soon__inner {
  width: min(680px, 100%);
  text-align: center;
}

.linux-coming-soon__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(51, 65, 85, 0.12);
  border-radius: 18px;
  background: rgb(30, 41, 59);
  color: #86efac;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  font-size: 2rem;
}

.linux-coming-soon__inner > p {
  margin: 0 0 11px;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.linux-coming-soon__inner h1 {
  margin: 0;
  color: #17243a;
  font-size: clamp(3rem, 8vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.linux-coming-soon__inner > span:last-child {
  display: block;
  margin-top: 22px;
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.65;
}

.plan-card {
  display: flex;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(51, 65, 85, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.plan-card:hover {
  border-color: rgba(51, 65, 85, 0.24);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.plan-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.plan-card__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.plan-card__os-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(51, 65, 85, 0.12);
  border-radius: 11px;
  background: #f1f5f9;
  color: #475569;
  font-size: 1.35rem;
}

.plan-card__os-icon--linux {
  border-color: #fde68a;
  background: #fffbeb;
  color: #d97706;
}

.plan-card__os-icon--windows {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #2563eb;
}

.plan-card__identity p {
  margin: 0 0 5px;
  color: #667487;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__identity h3 {
  margin: 0;
  color: #17243a;
  font-size: 1.42rem;
  letter-spacing: -0.035em;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #17243a;
  white-space: nowrap;
}

.plan-card__price span {
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan-card__price small {
  color: #667487;
  font-size: 0.7rem;
  font-weight: 700;
}

.plan-card__processor {
  display: inline-flex;
  width: fit-content;
  margin: 24px 0 18px;
  padding: 7px 10px;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  background: #f0f4f8;
  color: #43536a;
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-card__processor i {
  color: #b45309;
  font-size: 1rem;
}

.plan-card__specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.plan-card__specs div {
  padding: 12px 10px;
  border: 1px solid rgba(51, 65, 85, 0.1);
  border-radius: 9px;
  background: #f8fafc;
}

.plan-card__specs dt {
  margin: 0 0 5px;
  color: #748195;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-card__specs dd {
  margin: 0;
  color: #24324a;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-card__features {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  color: #536278;
  font-size: 0.8rem;
  list-style: none;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-card__features i {
  color: #2563eb;
  font-size: 1rem;
}

.plan-card--catalog .plan-card__features {
  margin-bottom: 0;
}

.plan-card__button {
  display: inline-flex;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgb(30, 41, 59);
  border-radius: 9px;
  background: rgb(30, 41, 59);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.plan-card__button:hover {
  border-color: #334155;
  background: #334155;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.plan-card__button:focus-visible {
  outline: 3px solid rgba(100, 116, 139, 0.38);
  outline-offset: 4px;
}

.trust {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 92px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 100px;
  align-items: center;
  overflow: visible;
}

.trust::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  content: "";
}

.trust::before {
  z-index: -2;
  background: rgb(30, 41, 59);
}

.trust__intro {
  max-width: 470px;
}

.trust__eyebrow {
  margin: 0 0 12px;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.trust__intro > p:last-child {
  max-width: 430px;
  margin: 20px 0 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(5, 24, 31, 0.18);
}

.trust-item {
  display: grid;
  min-height: 178px;
  padding: 26px;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.trust-item > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #bfdbfe;
  font-size: 1.2rem;
}

.trust-item strong {
  display: block;
  margin: 5px 0 9px;
  color: #ffffff;
  font-size: 0.92rem;
}

.trust-item p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.78rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.closing-cta {
  padding: 76px 20px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
  background: #f8fafc;
}

.closing-cta__inner {
  display: flex;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.closing-cta__inner > div:first-child {
  max-width: 650px;
}

.closing-cta__inner p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-cta__inner h2 {
  margin: 0;
  color: #17243a;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.closing-cta__inner span {
  display: block;
  margin-top: 16px;
  color: #667487;
  font-size: 0.92rem;
  line-height: 1.6;
}

.closing-cta__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 11px;
}

.closing-cta__button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.closing-cta__button--primary {
  border: 1px solid rgb(30, 41, 59);
  background: rgb(30, 41, 59);
  color: #ffffff;
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.18);
}

.closing-cta__button--primary:hover {
  border-color: #0f172a;
  background: #0f172a;
  transform: translateY(-2px);
}

.closing-cta__button--secondary {
  border: 1px solid rgba(23, 36, 58, 0.18);
  background: #ffffff;
  color: #24324a;
}

.closing-cta__button--secondary:hover {
  border-color: rgba(51, 65, 85, 0.36);
  color: #334155;
  transform: translateY(-2px);
}

.closing-cta__button:focus-visible,
.site-footer a:focus-visible,
.site-footer__copy:focus-visible {
  outline: 3px solid rgba(147, 197, 253, 0.65);
  outline-offset: 4px;
}

.site-footer {
  padding: 68px 20px 24px;
  background: #0f172a;
  color: #ffffff;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(120px, 0.75fr));
  gap: clamp(34px, 5vw, 72px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer__brand {
  max-width: 330px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1;
}

.site-footer__brand > p {
  max-width: 290px;
  margin: 20px 0 0;
  color: #94a3b8;
  font-size: 0.78rem;
  line-height: 1.65;
}

.site-footer__column h2 {
  margin: 3px 0 18px;
  color: #ffffff;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__column a,
.site-footer__copy {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #94a3b8;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer__copy {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.site-footer__column a:hover,
.site-footer__copy:hover {
  color: #ffffff;
}

.site-footer__column a i,
.site-footer__copy i {
  font-size: 0.72rem;
}

.copy-notification {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  max-width: calc(100% - 32px);
  padding: 13px 16px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgb(30, 41, 59);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.24);
  pointer-events: none;
}

.copy-notification[hidden] {
  display: none;
}

.copy-notification i {
  color: #86efac;
  font-size: 1.1rem;
}

.site-footer__bottom {
  width: min(1120px, 100%);
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
  margin: 0;
  color: #64748b;
  font-size: 0.7rem;
}

@media (min-width: 761px) and (max-width: 980px) {
  .top-bar {
    padding: 0 20px;
  }

  .site-header {
    padding: 16px 20px;
  }

  .navigation {
    gap: 20px;
  }

  .navigation__links {
    gap: 18px;
  }

  .navigation__links a,
  .navigation__trigger {
    font-size: 0.82rem;
  }

  .navigation__login {
    padding: 10px 15px;
  }

  .windows-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .windows-plans--carousel {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .hosting-toolkit__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .layershield-hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .layershield-overview {
    width: min(680px, 100%);
  }

  .layershield-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .top-bar {
    padding: 0 16px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .navigation {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .brand {
    align-self: flex-start;
  }

  .brand__symbol {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .navigation__links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .navigation__links a,
  .navigation__trigger,
  .navigation__dropdown-action {
    font-size: 0.78rem;
  }

  .copy-notification {
    right: 16px;
    bottom: 16px;
  }

  .navigation__login {
    width: 100%;
    justify-content: center;
  }

  .navigation__dropdown {
    left: 0;
    width: min(278px, calc(100vw - 24px));
    transform: translateX(-22%);
  }

  .navigation__item--dropdown:nth-child(3) .navigation__dropdown {
    left: 50%;
    transform: translateX(-50%);
  }

  .navigation__item--dropdown:last-child .navigation__dropdown {
    right: 0;
    left: auto;
    transform: none;
  }

  .hero {
    min-height: 0;
    padding: 52px 16px 24px;
  }

  .catalog-hero {
    padding: 62px 16px 68px;
  }

  .catalog-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero__eyebrow {
    font-size: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero__description {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .hero__mesh {
    bottom: -2%;
    height: 55%;
  }

  .hero__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
  }

  .feature-card {
    min-height: 0;
    padding: 20px;
  }

  .plans-preview {
    padding: 62px 16px 70px;
  }

  .plans-preview__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .windows-plans {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .plans-carousel {
    grid-template-columns: 1fr 40px 40px 1fr;
    column-gap: 8px;
    row-gap: 12px;
    margin-top: 30px;
  }

  .windows-plans--carousel {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: none;
    grid-auto-columns: 100%;
    margin: 0;
  }

  .plans-carousel__control {
    width: 40px;
    height: 40px;
  }

  .plans-carousel__control--previous {
    grid-column: 2;
    grid-row: 2;
  }

  .plans-carousel__control--next {
    grid-column: 3;
    grid-row: 2;
  }

  .server-locations {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .customer-community {
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .customer-community__message {
    align-items: flex-start;
  }

  .customer-community__action {
    width: 100%;
  }

  .included-suite {
    padding: 56px 16px 62px;
  }

  .included-suite__grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .included-tool {
    padding: 23px 22px;
  }

  .included-tool > p {
    min-height: 0;
  }

  .ddos-comparison {
    padding: 58px 16px 64px;
  }

  .ddos-comparison__grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ddos-tier {
    padding: 24px 22px;
  }

  .ddos-tier > p {
    min-height: 0;
    margin-bottom: 20px;
  }

  .ddos-tier dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .server-location {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    min-height: 76px;
    padding: 14px;
  }

  .server-location img {
    width: 40px;
    height: 28px;
  }

  .server-location__status {
    display: none;
  }

  .windows-plan {
    padding: 26px 24px;
  }

  .windows-plan__header {
    min-height: 0;
    margin-bottom: 8px;
  }

  .hosting-catalog {
    padding-bottom: 76px;
  }

  .hosting-locations {
    margin-top: 26px;
  }

  .hosting-toolkit {
    padding: 58px 16px 62px;
  }

  .hosting-toolkit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .hosting-toolkit__item {
    min-height: 0;
  }

  .hosting-protection {
    padding: 58px 16px 62px;
  }

  .hosting-protection__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .hosting-protection__item {
    min-height: 0;
    padding: 24px;
  }

  .layershield-hero {
    padding: 58px 16px 64px;
  }

  .layershield-hero__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .layershield-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4rem);
  }

  .layershield-overview {
    padding: 20px;
  }

  .layershield-features,
  .layershield-pricing {
    padding: 58px 16px 64px;
  }

  .layershield-features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .layershield-feature {
    padding: 22px;
  }

  .layershield-plans__grid {
    margin-top: 30px;
  }

  .layershield-plan .windows-plan__header {
    min-height: 0;
  }

  .layershield-included {
    padding: 38px 16px;
  }

  .layershield-included__inner {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .layershield-included__icon {
    width: 48px;
    height: 48px;
  }

  .layershield-included__inner > a {
    width: 100%;
    grid-column: 1 / -1;
  }

  .plan-card {
    padding: 24px;
  }

  .plan-card__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 32px, 680px);
    padding: 68px 0 76px;
  }

  .trust__intro {
    max-width: 560px;
  }

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

  .trust-item {
    min-height: 0;
    padding: 22px;
  }

  .closing-cta {
    padding: 62px 16px;
  }

  .closing-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .closing-cta__actions {
    width: 100%;
  }

  .closing-cta__button {
    flex: 1 1 0;
  }

  .site-footer {
    padding: 54px 20px 22px;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }

  .site-footer__brand {
    max-width: 420px;
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    margin-top: 42px;
  }
}

@media (max-width: 520px) {
  .hosting-toolkit__grid {
    grid-template-columns: 1fr;
  }

  .closing-cta__actions {
    flex-direction: column;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

/* Mu Online */
.mu-catalog-hero .catalog-hero__inner {
  width: min(860px, 100%);
}

.mu-packages {
  padding: 82px 20px 96px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
  background: #f8fafc;
}

.mu-packages__inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.mu-packages__heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mu-packages__heading > p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mu-packages__heading h2 {
  margin: 0;
  color: #17243a;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.mu-packages__heading > span {
  display: block;
  margin-top: 15px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
  text-wrap: balance;
}

.mu-packages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.mu-package {
  overflow: hidden;
  padding: 34px 32px 30px;
}

.mu-package::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: rgb(30, 41, 59);
  content: "";
}

.mu-package__version {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: #334155;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.mu-package .windows-plan__header {
  min-height: 104px;
  padding-right: 88px;
}

.mu-package__price {
  margin-top: 8px;
}

.mu-package__requirement,
.mu-package__exclusion {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.mu-package__requirement {
  margin-top: auto;
  padding: 12px 13px;
  border: 1px solid rgba(51, 65, 85, 0.12);
  border-radius: 10px;
  background: #f1f5f9;
  color: #24334a;
  font-weight: 700;
}

.mu-package__requirement i {
  margin-top: 1px;
  color: rgb(30, 41, 59);
  font-size: 1rem;
}

.mu-package__exclusion {
  margin: 12px 2px 22px;
  color: #64748b;
}

.mu-package__exclusion i {
  margin-top: 1px;
  color: #64748b;
  font-size: 0.95rem;
}

.mu-package__button:hover {
  border-color: #334155;
  background: #334155;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

body.has-modal-open {
  overflow: hidden;
}

.mu-order-modal[hidden] {
  display: none;
}

.mu-order-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
}

.mu-order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(3px);
}

.mu-order-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.3);
  animation: mu-modal-in 180ms ease-out both;
}

.mu-order-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(51, 65, 85, 0.12);
  border-radius: 50%;
  background: #f8fafc;
  color: #334155;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.mu-order-modal__close:hover {
  background: #eef2f7;
  color: #0f172a;
}

.mu-order-modal__close:focus-visible,
.mu-order-modal__primary:focus-visible,
.mu-order-modal__secondary:focus-visible {
  outline: 3px solid rgba(100, 116, 139, 0.38);
  outline-offset: 3px;
}

.mu-order-modal__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 13px;
  background: #eef2f7;
  color: rgb(30, 41, 59);
  font-size: 1.35rem;
}

.mu-order-modal__eyebrow {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mu-order-modal h2 {
  margin: 0;
  padding-right: 22px;
  color: #17243a;
  font-size: clamp(1.55rem, 5vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.mu-order-modal__dialog > p:last-of-type {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.65;
}

.mu-order-modal__dialog strong {
  color: #334155;
}

.mu-order-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 26px;
}

.mu-order-modal__primary,
.mu-order-modal__secondary {
  display: inline-flex;
  min-height: 46px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgb(30, 41, 59);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.mu-order-modal__primary {
  background: rgb(30, 41, 59);
  color: #ffffff;
}

.mu-order-modal__secondary {
  background: #ffffff;
  color: rgb(30, 41, 59);
}

@keyframes mu-modal-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .navigation {
    grid-template-columns: 1fr auto;
  }

  .navigation__links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .navigation__links {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 22px;
    row-gap: 16px;
  }

  .mu-packages {
    padding: 62px 16px 72px;
  }

  .mu-packages__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .mu-package {
    padding: 30px 24px 26px;
  }

  .mu-order-modal__dialog {
    padding: 28px 22px 22px;
  }

  .mu-order-modal__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mu-order-modal__dialog {
    animation: none;
  }
}

/* Contacto e información legal */
.site-footer__contacts {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.site-footer__contacts a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.74rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer__contacts a:hover {
  color: #ffffff;
}

.site-footer__contacts i {
  width: 16px;
  color: #cbd5e1;
  font-size: 0.92rem;
  text-align: center;
}

.site-footer__column a[aria-current="page"] {
  color: #ffffff;
}

.legal-hero {
  padding-top: 70px;
  padding-bottom: 74px;
}

.legal-hero h1 {
  font-size: clamp(2.55rem, 6vw, 4.25rem);
}

.contact-section,
.legal-section {
  padding: 76px 20px 92px;
  background: #f8fafc;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  width: min(1040px, 100%);
  margin: 0 auto;
  align-items: start;
}

.contact-details,
.contact-form-card {
  border: 1px solid rgba(51, 65, 85, 0.13);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.contact-details {
  padding: 30px;
}

.contact-details__heading > p,
.contact-form-card > p {
  margin: 0 0 9px;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details__heading h2,
.contact-form-card h2 {
  margin: 0;
  color: #17243a;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.contact-details__heading > span {
  display: block;
  margin-top: 13px;
  color: #64748b;
  font-size: 0.83rem;
  line-height: 1.65;
}

.contact-details__list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-details__list > a {
  display: flex;
  min-width: 0;
  padding: 14px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(51, 65, 85, 0.11);
  border-radius: 12px;
  color: #334155;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-details__list > a:hover {
  border-color: rgba(51, 65, 85, 0.24);
  background: #f8fafc;
  transform: translateY(-1px);
}

.contact-details__list > a > i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 10px;
  background: #eef2f7;
  color: rgb(30, 41, 59);
  font-size: 1.15rem;
}

.contact-details__list span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.contact-details__list small {
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 600;
}

.contact-details__list strong {
  overflow-wrap: anywhere;
  color: #24334a;
  font-size: 0.8rem;
}

.contact-details__legal {
  display: flex;
  margin-top: 22px;
  padding-top: 20px;
  align-items: flex-start;
  gap: 11px;
  border-top: 1px solid rgba(51, 65, 85, 0.11);
  color: #64748b;
}

.contact-details__legal > i {
  margin-top: 2px;
  color: #475569;
  font-size: 1.15rem;
}

.contact-details__legal p {
  display: grid;
  gap: 5px;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
}

.contact-details__legal strong {
  color: #334155;
}

.contact-form-card {
  padding: 32px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field label {
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  color: #17243a;
  font: inherit;
  font-size: 0.86rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form__field input {
  min-height: 46px;
  padding: 0 13px;
}

.contact-form__field textarea {
  min-height: 138px;
  padding: 12px 13px;
  line-height: 1.55;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #64748b;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.16);
}

.contact-form__field small {
  color: #64748b;
  font-size: 0.68rem;
}

.contact-form__website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.55;
}

.contact-form__consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: 0 0 16px;
  accent-color: rgb(30, 41, 59);
}

.contact-form__consent a,
.legal-document a {
  color: #334155;
  font-weight: 700;
}

.contact-form__submit {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgb(30, 41, 59);
  border-radius: 999px;
  background: rgb(30, 41, 59);
  color: #ffffff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form__submit:hover {
  background: #334155;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.contact-form__submit:focus-visible,
.contact-details__list > a:focus-visible,
.site-footer__contacts a:focus-visible {
  outline: 3px solid rgba(100, 116, 139, 0.38);
  outline-offset: 3px;
}

.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.contact-form__status {
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form__status[hidden] {
  display: none;
}

.contact-form__status[data-state="success"] {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.contact-form__status[data-state="error"] {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.legal-document {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(51, 65, 85, 0.13);
  border-radius: 18px;
  background: #ffffff;
  color: #475569;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
  font-size: 0.86rem;
  line-height: 1.8;
}

.legal-document__intro {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.12);
}

.legal-document__intro p {
  margin: 0 0 8px;
  color: #334155;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-document__intro span {
  color: #64748b;
}

.legal-document section + section {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(51, 65, 85, 0.1);
}

.legal-document h2 {
  margin: 0 0 12px;
  color: #17243a;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p,
.legal-document p + ul,
.legal-document ul + p,
.legal-document address + p {
  margin-top: 12px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 22px;
}

.legal-document address {
  margin-top: 12px;
  color: #334155;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 760px) {
  .legal-hero {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .contact-section,
  .legal-section {
    padding: 56px 16px 68px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-details,
  .contact-form-card,
  .legal-document {
    padding: 24px 20px;
    border-radius: 15px;
  }

  .legal-document {
    font-size: 0.82rem;
  }
}
