:root {
  --navy-950: #071526;
  --navy-900: #0b1b30;
  --navy-800: #10243f;
  --navy-700: #18314f;
  --blue-600: #1f6feb;
  --blue-500: #2b7fff;
  --cyan-500: #13b5d6;
  --green-500: #2ccb7f;
  --green-600: #25b86f;
  --amber-500: #f5b44b;
  --ink: #17263a;
  --muted: #5e7895;
  --line: #d8e6f5;
  --mist: #f3f8fc;
  --cloud: #f7fbff;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 36, 63, 0.12);
  --shadow-soft: 0 10px 28px rgba(16, 36, 63, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

a:hover {
  color: var(--blue-600);
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 230, 245, 0.86);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--navy-700);
  font: inherit;
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown.is-current .nav-dropdown-toggle {
  background: #eaf4ff;
  color: var(--blue-600);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg,
.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 60;
  display: grid;
  min-width: 238px;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  padding: 10px 12px;
}

.site-nav .nav-account {
  background: var(--navy-800);
  color: var(--white);
  margin-left: 4px;
}

.site-nav .nav-account:hover,
.site-nav .nav-account[aria-current="page"] {
  background: var(--blue-600);
  color: var(--white);
}

.breadcrumbs {
  background: var(--cloud);
  border-bottom: 1px solid rgba(216, 230, 245, 0.78);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 13px 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: #9cb3ca;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue-600);
}

.breadcrumbs a:hover {
  color: var(--navy-900);
}

.breadcrumbs [aria-current="page"] {
  color: var(--navy-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-800);
  cursor: pointer;
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
}

.section {
  padding: 86px 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-tight {
  padding: 58px 0;
}

.section-muted {
  background: var(--mist);
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--green-600);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 3.6rem;
  font-weight: 850;
}

h2 {
  font-size: 2.35rem;
  font-weight: 820;
}

h3 {
  font-size: 1.28rem;
  font-weight: 800;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-color: var(--navy-900);
}

.home-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 21, 38, 0.99) 0%, rgba(7, 21, 38, 0.98) 43%, rgba(7, 21, 38, 0.76) 62%, rgba(7, 21, 38, 0.34) 100%),
    url("hero-platform.svg");
  background-position: center, right -16% center;
  background-size: auto, 980px auto;
  background-repeat: no-repeat;
}

.page-hero {
  min-height: 390px;
  padding: 84px 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 38, 0.96), rgba(16, 49, 79, 0.92)),
    radial-gradient(circle at 78% 30%, rgba(44, 203, 127, 0.22), transparent 26%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.hero h1,
.hero h2,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.hero .lead,
.section-dark .lead,
.section-dark p {
  color: #bed0e2;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 58px 0;
}

.hosting-hero h1 {
  max-width: none;
  white-space: nowrap;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.center-actions {
  justify-content: center;
}

.price-promise {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(44, 203, 127, 0.34);
  border-radius: 8px;
  background: #effcf6;
  color: var(--navy-900);
  box-shadow: 0 16px 34px rgba(7, 21, 38, 0.12);
}

.price-promise strong {
  font-size: 1.16rem;
  font-weight: 850;
}

.price-promise span {
  font-weight: 800;
  color: #146b48;
}

.hero-price-promise {
  background: rgba(239, 252, 246, 0.96);
}

.hero-price-promise .price-promise-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
}

.hero-price-promise .price-promise-note {
  font-weight: 750;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid #bdebd5;
  border-radius: 5px;
  background:
    linear-gradient(var(--green-500), var(--green-500)) 5px 5px / 7px 2px no-repeat,
    radial-gradient(circle at 15px 6px, var(--green-500) 0 1.6px, transparent 1.7px),
    linear-gradient(var(--green-500), var(--green-500)) 5px 12px / 7px 2px no-repeat,
    radial-gradient(circle at 15px 13px, var(--green-500) 0 1.6px, transparent 1.7px),
    linear-gradient(#bdebd5, #bdebd5) 4px 9px / 12px 1px no-repeat,
    #e9fbf3;
  box-shadow: 0 6px 14px rgba(44, 203, 127, 0.12);
  transform: translateY(1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-primary {
  background: var(--green-500);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(44, 203, 127, 0.25);
}

.btn-primary:hover {
  background: #41db94;
}

.btn-secondary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(31, 111, 235, 0.24);
}

.btn-secondary:hover {
  background: #3d88ff;
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.btn-outline {
  border-color: var(--line);
  color: var(--navy-800);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}

.btn-disabled,
.btn:disabled {
  cursor: not-allowed;
  border-color: #d7e2ee;
  background: #eef4fa;
  color: #7f90a4;
  box-shadow: none;
}

.btn-disabled:hover,
.btn:disabled:hover {
  transform: none;
  border-color: #d7e2ee;
  color: #7f90a4;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card,
.feature-card,
.price-card,
.account-card,
.contact-card {
  padding: 26px;
}

.service-card,
.feature-card,
.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card p,
.feature-card p,
.price-card p,
.account-card p,
.contact-card p {
  margin-top: 12px;
  color: var(--muted);
}

.service-card .check-list,
.price-card .check-list {
  margin-bottom: 24px;
}

.service-card .btn,
.price-card .btn,
.feature-card .btn {
  margin-top: auto;
  white-space: nowrap;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.service-card .card-actions .btn {
  width: 100%;
  margin-top: 0;
}

.support-route-card p {
  margin-bottom: 22px;
}

.home-trust-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--cloud) 100%);
}

.trust-card {
  border-color: rgba(31, 111, 235, 0.18);
  box-shadow: 0 14px 34px rgba(16, 36, 63, 0.07);
}

.trust-card h3 {
  font-size: 1.08rem;
}

.trust-card p {
  margin-bottom: 0;
}

.directadmin-screenshot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.directadmin-screenshot img {
  width: 100%;
  height: auto;
}

.directadmin-screenshot figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.location-map {
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.reference-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.reference-list a {
  color: var(--blue-600);
  font-weight: 800;
}

.reference-list a:hover {
  color: var(--navy-900);
}

.card-link {
  align-self: center;
  color: var(--blue-600);
  font-weight: 800;
}

.card-link:hover {
  color: var(--navy-900);
}

.service-icon,
.mini-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #eaf4ff;
  color: var(--blue-600);
}

.service-icon svg,
.mini-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accent-green {
  background: #e9fbf3;
  color: var(--green-600);
}

.accent-cyan {
  background: #e9faff;
  color: var(--cyan-500);
}

.accent-amber {
  background: #fff6e6;
  color: #a76808;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: var(--navy-700);
  font-weight: 650;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.app-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.app-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cloud);
  color: var(--navy-700);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.1;
}

.app-note {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 20px 0 14px;
  color: var(--navy-900);
}

.price strong {
  font-size: 2.7rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.price-card.highlight {
  border-color: rgba(44, 203, 127, 0.55);
  box-shadow: 0 20px 54px rgba(44, 203, 127, 0.14);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 7px;
  background: #e9fbf3;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.plan-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 36px;
  align-items: stretch;
}

.plan-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.snapshot-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cloud);
  box-shadow: var(--shadow-soft);
}

.snapshot-item .mini-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
}

.snapshot-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.02rem;
  line-height: 1.2;
}

.snapshot-item div span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 620;
  line-height: 1.45;
}

.plan-deal-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-color: rgba(44, 203, 127, 0.55);
  background:
    linear-gradient(160deg, rgba(233, 251, 243, 0.96) 0%, rgba(247, 251, 255, 0.98) 58%, var(--white) 100%);
  box-shadow: 0 20px 54px rgba(44, 203, 127, 0.14);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin: 22px 0 14px;
  color: var(--navy-900);
}

.plan-price strong {
  font-size: 4.4rem;
  font-weight: 850;
  line-height: 0.86;
}

.plan-price span {
  padding-bottom: 7px;
  color: var(--navy-700);
  font-weight: 850;
}

.plan-promise {
  margin-top: 0;
  color: #146b48;
  font-weight: 850;
}

.deal-list {
  display: grid;
  gap: 12px;
  padding: 20px 0 0;
  margin: 22px 0 28px;
  border-top: 1px solid rgba(44, 203, 127, 0.28);
  list-style: none;
  color: var(--navy-800);
  font-weight: 750;
}

.deal-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.deal-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #bdebd5;
  border-radius: 5px;
  background:
    linear-gradient(var(--green-500), var(--green-500)) 5px 5px / 7px 2px no-repeat,
    radial-gradient(circle at 15px 6px, var(--green-500) 0 1.6px, transparent 1.7px),
    linear-gradient(var(--green-500), var(--green-500)) 5px 12px / 7px 2px no-repeat,
    radial-gradient(circle at 15px 13px, var(--green-500) 0 1.6px, transparent 1.7px),
    linear-gradient(#bdebd5, #bdebd5) 4px 9px / 12px 1px no-repeat,
    #e9fbf3;
  box-shadow: 0 6px 14px rgba(44, 203, 127, 0.12);
  transform: translateY(1px);
}

.plan-deal-card .btn {
  width: 100%;
  margin-top: auto;
}

.plan-spec-section .section-head {
  max-width: 830px;
}

.spec-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.spec-highlight {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.spec-highlight .mini-icon {
  margin-bottom: 0;
}

.spec-highlight h3 {
  font-size: 1.05rem;
}

.spec-highlight p {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.plan-table-wrap {
  box-shadow: var(--shadow);
}

.plan-spec-table {
  min-width: 820px;
}

.plan-spec-table caption {
  padding: 18px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 850;
  text-align: left;
}

.plan-spec-table th[scope="row"] {
  width: 26%;
  background: var(--white);
  color: var(--navy-900);
  font-size: 0.96rem;
}

.plan-spec-table td:nth-child(2) {
  color: var(--navy-900);
  font-weight: 820;
}

.plan-spec-table tbody tr:nth-child(even) th,
.plan-spec-table tbody tr:nth-child(even) td {
  background: #fbfdff;
}

.spec-note {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.visual-panel {
  border-radius: 8px;
  overflow: hidden;
  background: var(--cloud);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.green-band {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(37, 184, 111, 0.96), rgba(19, 181, 214, 0.88)),
    var(--green-600);
  color: var(--navy-950);
}

.green-band h2,
.green-band h3 {
  color: var(--navy-950);
}

.green-band p {
  color: #103a36;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  min-height: 116px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.stat strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.75rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #1b4c4a;
  font-weight: 750;
}

.service-detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
}

.service-detail .service-icon {
  margin: 0;
}

.service-detail .btn {
  margin-top: 20px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--navy-900);
  background: #f6faff;
  font-size: 0.9rem;
}

td {
  color: var(--muted);
  font-weight: 650;
}

tr:last-child td {
  border-bottom: 0;
}

.domain-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 28px;
  max-width: 760px;
}

.hero label {
  color: var(--white);
}

.domain-search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font-weight: 800;
}

.domain-search-links a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.domain-search-links a:hover {
  color: var(--green-500);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--navy-700);
  font-weight: 800;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  min-height: 46px;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 111, 235, 0.16);
  border-color: var(--blue-500);
}

.form-status {
  margin-top: 14px;
  color: var(--green-600);
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #b42318;
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.order-summary {
  display: grid;
  gap: 4px;
}

.order-summary strong {
  color: var(--navy-900);
  font-size: 1.08rem;
}

.order-summary span,
.order-summary small {
  color: #14563b;
  font-weight: 760;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.login-box,
.order-box,
.dashboard-box {
  padding: 28px;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 18px;
}

.tab-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-700);
  padding: 9px 12px;
  cursor: pointer;
  font-weight: 800;
}

.tab-button[aria-selected="true"] {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.tab-panel[hidden] {
  display: none;
}

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

.dashboard-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfe;
}

.dashboard-item strong {
  color: var(--navy-900);
}

.dashboard-item span {
  color: var(--muted);
  font-weight: 700;
}

.notice {
  padding: 16px;
  border: 1px solid #bdebd5;
  border-radius: 8px;
  background: #edfbf4;
  color: #14563b;
  font-weight: 720;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.footer {
  padding: 58px 0 34px;
  background: var(--navy-950);
  color: #c7d6e4;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 44px;
  padding: 28px;
  border: 1px solid rgba(216, 230, 245, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16, 36, 63, 0.94), rgba(11, 27, 48, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.footer-newsletter h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.45rem;
}

.footer-newsletter p {
  max-width: 520px;
  margin: 10px 0 0;
  color: #c7d6e4;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.newsletter-form input[type="email"] {
  min-height: 48px;
  border-color: rgba(216, 230, 245, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.newsletter-form .btn {
  min-height: 48px;
}

.newsletter-note {
  margin: 0;
  color: #9fb4c8;
  font-size: 0.88rem;
  line-height: 1.45;
}

.newsletter-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.footer .cf-turnstile {
  min-height: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 0.75fr));
  gap: 28px;
}

.footer img {
  width: 184px;
}

.footer p {
  margin-top: 18px;
  max-width: 340px;
}

.footer h2,
.footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer .footer-newsletter h2 {
  margin: 0;
  font-size: 1.45rem;
}

.footer .footer-newsletter p {
  max-width: 520px;
  margin: 10px 0 0;
}

.footer .footer-newsletter .newsletter-note {
  margin: 0;
  max-width: none;
}

.footer .footer-newsletter .form-status {
  margin-top: 0;
}

.footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 15px 0 0;
  list-style: none;
}

.footer a {
  color: #c7d6e4;
}

.footer a:hover {
  color: var(--green-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 230, 245, 0.16);
  color: #93a9bd;
  font-size: 0.92rem;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

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

  .grid-3,
  .split,
  .split.reverse,
  .plan-snapshot,
  .spec-highlights,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    max-width: 760px;
  }

  .plan-deal-card {
    max-width: 620px;
  }

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

  .footer-newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .header-inner {
    min-height: 70px;
    position: relative;
  }

  .brand img {
    width: 164px;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 13px;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 4px 0;
    padding: 6px 0 6px 12px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: #f7fbff;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    white-space: normal;
  }

  .site-nav .nav-account {
    margin-left: 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero {
    min-height: 610px;
  }

  .hosting-hero h1 {
    white-space: normal;
  }

  .home-hero {
    background-image:
      linear-gradient(180deg, rgba(7, 21, 38, 0.99) 0%, rgba(7, 21, 38, 0.94) 60%, rgba(7, 21, 38, 0.88) 100%),
      url("hero-platform.svg");
    background-position: center, 58% center;
    background-size: auto, 920px auto;
  }

  .section {
    padding: 66px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .snapshot-grid,
  .stat-row,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .green-band {
    padding: 28px;
  }

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

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

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .snapshot-item {
    grid-template-columns: 1fr;
  }

  .plan-price strong {
    font-size: 3.6rem;
  }

  h1 {
    font-size: 1.86rem;
    line-height: 1.16;
  }

  h2 {
    font-size: 1.42rem;
    line-height: 1.18;
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .dashboard-item {
    grid-template-columns: 1fr;
  }

  .green-hosting-page h1 {
    font-size: 1.68rem;
  }

  .green-hosting-page h2 {
    font-size: 1.32rem;
  }

  .green-hosting-page .check-list {
    font-size: 0.95rem;
  }

  .hero-content,
  .section-head,
  .split > *,
  .card,
  .green-band {
    min-width: 0;
  }

  h1,
  h2,
  h3,
  .lead,
  .check-list li,
  .green-band p,
  .stat span {
    overflow-wrap: break-word;
  }
}
