:root {
  --hg-green: #00ba7f;
  --hg-green-dark: #008f63;
  --hg-green-deep: #007452;
  --hg-blue: #3972c5;
  --hg-ink: #11233a;
  --hg-navy: #11233a;
  --hg-muted: #5c6b7d;
  --hg-line: #dce7e4;
  --hg-surface: #f4faf8;
  --hg-white: #fff;
  --hg-dark: #0b1b2d;
  --hg-shadow: 0 18px 50px rgba(17, 35, 58, 0.12);
  --hg-radius: 22px;
  --hg-container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hg-ink);
  background: var(--hg-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7em;
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.25rem;
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--hg-white);
  background: var(--hg-dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--hg-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 1.35rem;
  border: 2px solid var(--hg-green);
  border-radius: 999px;
  color: var(--hg-white);
  background: var(--hg-green);
  box-shadow: 0 10px 24px rgba(0, 186, 127, 0.23);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--hg-green-dark);
  border-color: var(--hg-green-dark);
  box-shadow: 0 12px 28px rgba(0, 143, 99, 0.28);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 1.1rem;
  font-size: 0.88rem;
}

.button--light {
  color: var(--hg-green-deep);
  background: var(--hg-white);
  border-color: var(--hg-white);
  box-shadow: 0 12px 28px rgba(3, 60, 45, 0.18);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--hg-ink);
  background: #eafff8;
  border-color: #eafff8;
}

.button--ghost-light {
  color: var(--hg-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  color: var(--hg-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--hg-white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  color: var(--hg-green-dark);
  font-weight: 760;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 35, 58, 0.08);
  backdrop-filter: blur(16px);
}

.site-header--dark {
  color: #fff;
  background: rgba(7, 21, 35, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header--dark .site-logo__link:not(.site-logo__link--light) {
  padding: 6px 10px;
  background: #fff;
  border-radius: 10px;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 30px rgba(17, 35, 58, 0.08);
}

.admin-bar .site-header.is-sticky {
  top: 32px;
}

.site-header__inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav actions";
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: flex;
  grid-area: logo;
  min-width: 0;
  align-items: center;
}
.site-nav { grid-area: nav; }
.header-actions { grid-area: actions; }

.site-logo__link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-logo__image,
.custom-logo {
  display: block;
  width: min(var(--hg-logo-desktop, 250px), 100%);
  max-height: 64px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
}

.site-nav__list,
.site-nav .menu {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav li {
  position: relative;
}

@media (min-width: 1061px) {
  .site-nav .menu-item-has-children::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 100%;
    right: -12px;
    left: -12px;
    height: 18px;
  }
}

.site-nav a {
  color: var(--hg-ink);
  font-size: 0.91rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-nav .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 150ms ease;
}

.site-nav .menu-item-has-children:hover > a::after,
.site-nav .menu-item-has-children:focus-within > a::after {
  transform: translateY(2px) rotate(225deg);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .current-menu-item > a {
  color: var(--hg-green-dark);
}

.site-header--dark .site-nav > ul > li > a {
  color: #f4f8fc;
}

.site-header--dark .site-nav > ul > li > a:hover,
.site-header--dark .site-nav > ul > li > a:focus-visible,
.site-header--dark .site-nav > ul > .current-menu-item > a {
  color: #67e3b9;
}

.site-header--dark .site-nav .sub-menu a {
  color: var(--hg-ink);
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  display: grid;
  gap: 4px;
  width: 230px;
  padding: 12px;
  margin: 0;
  background: var(--hg-white);
  border: 1px solid var(--hg-line);
  border-radius: 14px;
  box-shadow: var(--hg-shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 0s linear 220ms;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-nav .sub-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}

.site-nav .sub-menu a:hover {
  background: var(--hg-surface);
}

.nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--hg-ink);
  background: var(--hg-surface);
  border: 0;
  border-radius: 12px;
}

.nav-toggle__line {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.submenu-toggle {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-action {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px;
  color: var(--hg-ink);
  background: var(--hg-surface);
  border: 1px solid rgba(17, 35, 58, 0.08);
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  color: var(--hg-green-dark);
  border-color: rgba(0, 186, 127, 0.35);
}

.header-action__svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.header-action--login {
  min-width: auto;
  padding-inline: 14px;
  color: var(--hg-green-dark);
  background: transparent;
  border-color: var(--hg-green-dark);
}

.header-action--login:hover,
.header-action--login:focus-visible {
  color: #007f5f;
  background: transparent;
  border-color: #007f5f;
  box-shadow: none;
  transform: none;
}

.site-header--dark .header-action {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-header--dark .header-action--login {
  color: #67e3b9;
  background: transparent;
  border-color: rgba(103, 227, 185, 0.72);
}

.site-header--dark .header-action--login:hover,
.site-header--dark .header-action--login:focus-visible {
  color: #fff;
  background: transparent;
  border-color: #fff;
  box-shadow: none;
  transform: none;
}

.site-header--centered .site-header__inner {
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: ". logo actions" "nav nav nav";
  row-gap: 13px;
  min-height: 0;
  padding-block: 17px 13px;
}

.site-header--centered .site-logo { justify-self: center; }
.site-header--centered .site-nav { justify-self: center; }

.site-header--compact {
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-header--compact .site-header__inner {
  min-height: 68px;
  margin-block: 9px;
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 35, 58, 0.09);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(17, 35, 58, 0.09);
}

.site-header--compact.site-header--dark .site-header__inner {
  background: rgba(7, 21, 35, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1061px) {
  .site-header--nav-left .site-nav { justify-self: start; }
  .site-header--nav-center:not(.site-header--centered) .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(28px, 2.5vw, 48px);
  }
  .site-header--nav-center:not(.site-header--centered) .site-logo {
    justify-self: end;
    align-self: center;
  }
  .site-header--nav-center .site-nav { justify-self: center; }
  .site-header--nav-center:not(.site-header--centered) .site-nav {
    align-self: center;
  }
  .site-header--nav-center:not(.site-header--centered) .header-actions {
    justify-self: start;
    align-self: center;
  }
  .site-header--nav-right .site-nav { justify-self: end; }
}

.site-topbar {
  position: relative;
  z-index: 110;
  min-height: var(--hg-topbar-height, 42px);
  color: var(--hg-topbar-text, #fff);
  background: var(--hg-topbar-bg, #071523);
}

.site-topbar__grid {
  display: grid;
  min-height: var(--hg-topbar-height, 42px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  font-size: 0.8rem;
}

.site-topbar--columns-3 .site-topbar__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.site-topbar__item--left { justify-self: start; text-align: left; }
.site-topbar__item--center { justify-self: center; text-align: center; }
.site-topbar__item--right { justify-self: end; text-align: right; }
.site-topbar a { color: inherit; text-decoration: none; }
.site-topbar p { margin: 0; }

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

.layout-contact a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.layout-contact .header-action__svg { width: 17px; height: 17px; }
.layout-contact--compact { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.layout-contact--compact a { width: auto; }

.layout-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.layout-social a {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
  opacity: 0.85;
}

.layout-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-search-modal {
  width: min(680px, calc(100% - 30px));
  margin: auto;
  border: 0;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 30px 90px rgba(7, 21, 35, 0.3);
}

.header-search-modal::backdrop { background: rgba(7, 21, 35, 0.72); backdrop-filter: blur(4px); }
.header-search-modal__panel { position: relative; padding: 42px; }
.header-search-modal__panel h2 { margin-top: 0; }
.header-search-modal__close { position: absolute; top: 12px; right: 14px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--hg-surface); color: var(--hg-ink); cursor: pointer; font-size: 1.7rem; }
.header-search-modal .search-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.header-search-modal .search-field { width: 100%; min-height: 52px; border: 1px solid var(--hg-line); border-radius: 11px; padding: 10px 14px; font: inherit; }
.header-search-modal .search-submit { min-height: 52px; border: 0; border-radius: 11px; background: var(--hg-green-dark); color: #fff; cursor: pointer; padding-inline: 22px; font: inherit; font-weight: 750; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--hg-white);
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 186, 127, 0.2), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(57, 114, 197, 0.18), transparent 34%),
    linear-gradient(132deg, #071827 0%, #0a2634 56%, #07463f 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -325px;
  left: -105px;
}

.hero::after {
  right: -250px;
  bottom: -315px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  grid-template-columns: 1fr 0.96fr;
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
  padding-block: 82px 112px;
}

.hero .eyebrow {
  color: #71e8bd;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 0.36em;
  font-size: clamp(3.35rem, 5.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 1.7rem;
  color: rgba(238, 250, 247, 0.82);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.68;
}

.check-list {
  padding: 0;
  margin: 1.6rem 0 2rem;
  list-style: none;
}

.check-list--hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
  max-width: 650px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 17px;
  height: 17px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
  content: "";
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  padding: 0;
  margin: 1.75rem 0 0;
  color: rgba(238, 250, 247, 0.8);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.01em;
  list-style: none;
}

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

.hero__signals li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #5be0ae;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(91, 224, 174, 0.12);
  content: "";
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 430px;
}

.hero-browser {
  width: min(100%, 555px);
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(0, 186, 127, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 8, 18, 0.24);
}

.hero-browser__chrome {
  display: grid;
  min-height: 45px;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  padding-inline: 15px;
  background: rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-browser__dots { display: flex; gap: 5px; }
.hero-browser__dots i { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.28); border-radius: 50%; }
.hero-browser__dots i:first-child { background: #00b77c; }
.hero-browser__address {
  justify-self: center;
  padding: 4px 15px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.hero-browser__page { padding: 20px; }
.hero-browser__nav {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.hero-browser__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.hero-browser__brand i {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #00ba7f 0 50%, #3972c5 50% 100%);
  border-radius: 5px;
  transform: rotate(45deg);
}

.hero-browser__navlinks { display: flex; gap: 8px; }
.hero-browser__navlinks i { width: 31px; height: 4px; background: rgba(255, 255, 255, 0.24); border-radius: 999px; }
.hero-browser__hero {
  display: grid;
  min-height: 278px;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 18px;
  padding: 34px;
  color: #fff;
  background: rgba(3, 17, 30, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}

.hero-browser__copy > span {
  display: block;
  margin-bottom: 9px;
  color: #5be0ae;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-browser__copy strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero-browser__copy small {
  display: block;
  max-width: 205px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  line-height: 1.5;
}

.hero-browser__copy b {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 8px;
  padding-inline: 12px;
  color: #082033;
  background: #fff;
  border-radius: 999px;
  font-size: 0.62rem;
}

.hero-browser__copy b i { color: #008f63; font-style: normal; }
.hero-browser__art { position: relative; display: grid; min-height: 190px; place-items: center; }
.hero-browser__ring {
  position: absolute;
  width: 150px;
  aspect-ratio: 1;
  border: 28px solid #00ba7f;
  border-right-color: #3972c5;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.hero-browser__card {
  position: relative;
  z-index: 1;
  display: grid;
  width: 105px;
  min-height: 126px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  background: #0b2136;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 18px 35px rgba(0, 8, 18, 0.3);
  transform: rotate(6deg);
}

.hero-browser__card i { height: 6px; background: rgba(255, 255, 255, 0.22); border-radius: 999px; }
.hero-browser__card i:first-child {
  height: 48px;
  margin-bottom: 4px;
  background: linear-gradient(145deg, #5be0ae, #3972c5);
  border-radius: 9px;
}

.hero-browser__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.hero-browser__features span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.59rem;
}

.hero-browser__features i { width: 9px; height: 9px; flex: 0 0 auto; background: #00ba7f; border-radius: 50%; }
.hero-browser__features b { font-weight: 760; }

/* Domain search */
.domain-search {
  position: relative;
  z-index: 5;
  margin-top: -50px;
}

.domain-search__card {
  padding: 22px 28px 20px;
  background: var(--hg-white);
  border: 1px solid rgba(17, 35, 58, 0.08);
  border-radius: var(--hg-radius);
  box-shadow: var(--hg-shadow);
}

.domain-search__intro {
  margin-bottom: 14px;
}

.domain-search h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

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

.domain-form__field {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 52px;
  padding-left: 0;
  color: #80908c;
  background: #f8fbfa;
  border: 2px solid var(--hg-line);
  border-radius: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.domain-form__field:focus-within {
  background: var(--hg-white);
  border-color: var(--hg-green);
  box-shadow: 0 0 0 4px rgba(0, 186, 127, 0.12);
}

.domain-form__field:has(input[aria-invalid="true"]) {
  border-color: #c94545;
  box-shadow: 0 0 0 4px rgba(201, 69, 69, 0.1);
}

.domain-form input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  color: var(--hg-ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.domain-form .button {
  min-height: 52px;
  padding-inline: 25px;
  border-radius: 14px;
}

.domain-submit__mobile { display: none; }

.domain-submit,
.domain-submit:hover,
.domain-submit:focus-visible {
  box-shadow: none;
}

.domain-form__message {
  grid-column: 1 / -1;
  min-height: 0;
  color: #b52f2f;
  font-size: 0.79rem;
}

.domain-form__message:empty { display: none; }

.domain-search__popular {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}

.domain-search__popular-label {
  flex: 0 0 auto;
  color: var(--hg-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.domain-search__extensions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.domain-search__extensions button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 36px;
  padding: 6px 13px;
  color: var(--hg-ink);
  background: #f5faf8;
  border: 1px solid #dceae6;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.domain-search__extensions button:hover,
.domain-search__extensions button:focus-visible {
  color: var(--hg-green-deep);
  background: #edfaf5;
  border-color: rgba(0, 186, 127, 0.45);
  outline: 0;
  transform: translateY(-2px);
}

@supports not selector(:has(*)) {
  .domain-form input[aria-invalid="true"] { box-shadow: inset 0 0 0 2px #c94545; }
}

/* Sections and cards */
.section {
  padding-block: 108px;
}

.section--tint {
  background: var(--hg-surface);
}

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

.section-heading {
  max-width: 680px;
  margin-bottom: 46px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child,
.large-copy {
  color: var(--hg-muted);
  font-size: 1.08rem;
}

.section-heading--light > p:last-of-type {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading--light .eyebrow {
  color: #67e3b9;
}

.services-section {
  padding-block: 92px;
}

.services-section .section-heading {
  max-width: 1000px;
  margin-bottom: 38px;
}

.services-section .section-heading h2 {
  font-size: clamp(2rem, 3.3vw, 2.9rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 175px;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: start;
  column-gap: 16px;
  padding: 22px;
  overflow: hidden;
  background: var(--hg-white);
  border: 1px solid var(--hg-line);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:nth-child(-n+2) {
  background: linear-gradient(145deg, #f3fcf8, #fff 64%);
  border-color: rgba(0, 186, 127, 0.22);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(0, 186, 127, 0.5);
  box-shadow: 0 16px 34px rgba(17, 35, 58, 0.09);
  transform: translateY(-3px);
}

.service-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  grid-column: 1;
  grid-row: 1 / 4;
  place-items: center;
  align-self: start;
  color: var(--hg-green-deep);
  background: #e8fbf5;
  border: 1px solid rgba(0, 186, 127, 0.13);
  border-radius: 13px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  grid-column: 2;
  margin-bottom: 0.45rem;
  font-size: 1.04rem;
}

.service-card p {
  grid-column: 2;
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-card .text-link {
  position: relative;
  z-index: 2;
  grid-column: 2;
  margin-top: 13px;
  font-size: 0.82rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.about-visual {
  position: relative;
  min-height: 430px;
  padding: 42px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 186, 127, 0.28), transparent 34%),
    linear-gradient(145deg, #082033, #0a3c43);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(7, 31, 48, 0.16);
}

.about-visual__eyebrow {
  margin-bottom: 10px;
  color: #5be0ae;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-visual h3 {
  max-width: 390px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-visual__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-visual__steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-visual__steps li > span {
  color: #5be0ae;
  font-size: 0.72rem;
  font-weight: 800;
}

.about-visual__steps strong,
.about-visual__steps small {
  display: block;
}

.about-visual__steps strong {
  color: #fff;
  font-size: 0.92rem;
}

.about-visual__steps small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.stats div {
  padding: 20px 15px;
  background: var(--hg-white);
  border: 1px solid var(--hg-line);
  border-radius: 15px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--hg-green-dark);
  font-size: 1.45rem;
  line-height: 1.1;
}

.stats span {
  margin-top: 8px;
  color: var(--hg-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.why-section {
  padding-block: 88px;
}

.why-section .section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.why-section .advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hg-line);
  border-radius: 20px;
}

.advantage-card {
  display: block;
  min-height: 210px;
  padding: 32px 34px;
  background: #fff;
}

.advantage-card + .advantage-card {
  border-left: 1px solid var(--hg-line);
}

.advantage-card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--hg-green-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.advantage-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.advantage-card p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: center;
}

.faq-section { padding-block: 88px; }

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  background: #122941;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
}

.faq-list summary {
  position: relative;
  padding: 18px 54px 18px 22px;
  font-weight: 720;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: #67e3b9;
  font-size: 1.35rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 22px 19px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-section {
  padding-block: 88px;
  background: #fff;
}

.testimonials-section .section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 28px;
  background: var(--hg-surface);
  border: 1px solid var(--hg-line);
  border-radius: 18px;
}

.testimonial-card__quote {
  height: 30px;
  color: var(--hg-green);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  margin: 16px 0 0;
  color: var(--hg-ink);
  font-size: 0.96rem;
  line-height: 1.7;
}

.testimonial-card footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--hg-line);
}

.testimonial-card footer strong {
  color: var(--hg-ink);
  font-size: 0.9rem;
}

.testimonial-card footer span {
  color: var(--hg-muted);
  font-size: 0.76rem;
}

/* Standard content */
.page-hero {
  padding-block: 70px;
  color: var(--hg-white);
  background: linear-gradient(125deg, var(--hg-green-dark), var(--hg-green));
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.page-hero .eyebrow {
  color: #d7fff2;
}

.legacy-content,
.content-stack {
  padding-block: 70px;
}

.legacy-content > :first-child {
  margin-top: 0;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.content-card {
  padding: 28px;
  border: 1px solid var(--hg-line);
  border-radius: 18px;
}

.not-found {
  display: grid;
  min-height: 62vh;
  place-items: center;
  text-align: center;
}

.not-found__inner {
  max-width: 680px;
  padding-block: 80px;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  color: var(--hg-footer-text, rgba(255, 255, 255, 0.74));
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 186, 127, 0.12), transparent 30%),
    radial-gradient(circle at 93% 82%, rgba(43, 108, 230, 0.12), transparent 28%),
    var(--hg-footer-bg, #071523);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hg-green-dark), #21d7a2 54%, #2b6ce6);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 4vw, 68px);
  padding-top: clamp(62px, 7vw, 90px);
}

.site-footer--columns-3 .site-footer__grid {
  grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(150px, 0.82fr));
}

.site-footer--columns-4 .site-footer__grid {
  grid-template-columns: minmax(300px, 1.45fr) repeat(3, minmax(145px, 0.72fr));
}

.site-footer--columns-5 .site-footer__grid {
  grid-template-columns: minmax(260px, 1.3fr) repeat(4, minmax(125px, 0.68fr));
}

.site-footer__brand {
  padding: 7px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-footer .site-logo__link:not(.site-logo__link--light) .site-logo__image,
.site-footer .custom-logo-link .custom-logo {
  padding: 7px 12px;
  background: var(--hg-white);
  border-radius: 10px;
}

.site-footer .site-logo__image {
  width: min(190px, 100%);
  max-width: 100%;
}

.site-footer__brand p {
  max-width: 340px;
  margin: 20px 0 0;
  line-height: 1.75;
}

.footer-contact {
  display: block;
  width: fit-content;
  margin-top: 7px;
  color: var(--hg-white);
  font-weight: 680;
  text-decoration: none;
}

.site-footer__title {
  position: relative;
  padding-bottom: 15px;
  margin: 7px 0 16px;
  color: var(--hg-footer-heading, var(--hg-white));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #21d7a2;
  border-radius: 2px;
}

.site-footer a { color: inherit; }
.site-footer .layout-contact {
  gap: 10px;
  margin-top: 22px;
}
.site-footer .layout-contact--compact { display: grid; }
.site-footer .layout-contact .layout-contact__item {
  display: flex;
  width: 100%;
  max-width: 340px;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--hg-footer-heading, #fff);
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 1.45;
}
.site-footer .layout-contact__address { color: var(--hg-footer-text, #bdc9d5); }
.site-footer .layout-contact .header-action__svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #67e3b9;
}
.site-footer .layout-menu { display: grid; gap: 10px; }
.site-footer .layout-social { margin-top: 16px; }
.footer-widget + .footer-widget { margin-top: 24px; }

.site-footer__top {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--hg-footer-text, #bdc9d5);
  background: rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__top-grid {
  display: grid;
  min-height: 128px;
  grid-template-columns: repeat(var(--hg-footer-top-columns, 2), minmax(0, 1fr));
  align-items: center;
  gap: 35px;
  padding-block: 28px;
}

.site-footer__top-item + .site-footer__top-item {
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__top strong { color: var(--hg-footer-heading, #fff); font-size: 1.25rem; }

.footer-links {
  display: grid;
  gap: 3px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-block: 7px;
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease;
}

.footer-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  background: rgba(103, 227, 185, 0.45);
  border-radius: 50%;
  transition: background-color 150ms ease, transform 150ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact:hover,
.footer-contact:focus-visible {
  color: #67e3b9;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateX(3px);
}

.footer-links a:hover::before,
.footer-links a:focus-visible::before {
  background: #67e3b9;
  transform: scale(1.25);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px 30px;
  margin-top: clamp(46px, 6vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px 20px; }
.site-footer__legal a { position: relative; color: rgba(255,255,255,.58); text-decoration: none; }
.site-footer__legal a + a::before { content: ""; position: absolute; top: .55em; left: -11px; width: 3px; height: 3px; border-radius: 50%; background: rgba(103,227,185,.6); }
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible { color: #67e3b9; }

@media (max-width: 1060px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "logo actions toggle";
    gap: 12px;
  }

  .site-header--centered .site-header__inner,
  .site-header--compact .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "logo actions toggle";
    min-height: 82px;
    padding-block: 0;
  }

  .site-header--centered .site-logo { justify-self: start; }

  .nav-toggle {
    display: flex;
    justify-self: end;
    grid-area: toggle;
  }

  .header-actions { justify-self: end; }
  .header-action:not([data-header-search]):not(.header-action--login) { display: none; }
  .header-action--login span { display: none; }
  .header-action--login { min-width: 42px; padding: 9px; }

  .site-nav {
    position: fixed;
    z-index: 105;
    top: var(--hg-mobile-nav-top, 82px);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    justify-self: stretch;
    display: block;
    padding: 14px 14px 42px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: linear-gradient(180deg, #fff 0%, #f7fbfa 100%);
    box-shadow: 0 18px 40px rgba(11, 27, 45, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .site-header--dark .site-nav > ul > li > a { color: var(--hg-ink); }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav__list,
  .site-nav .menu {
    display: grid;
    width: min(100%, 620px);
    gap: 0;
    margin-inline: auto;
  }

  .site-nav > ul > li,
  .site-nav > .menu > li {
    border-bottom: 1px solid var(--hg-line);
  }

  .site-nav a {
    display: block;
    padding: 15px 12px;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .site-nav .menu-item-has-children > a {
    display: block;
    padding-right: 58px;
  }

  .site-nav .menu-item-has-children > a::after {
    display: none;
  }

  .site-nav .current-menu-item > a,
  .site-nav .current-menu-ancestor > a {
    color: var(--hg-green-deep);
    background: #edf9f5;
  }

  .submenu-toggle {
    position: absolute;
    z-index: 2;
    top: 6px;
    right: 2px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 11px;
    color: var(--hg-ink);
    background: transparent;
    cursor: pointer;
  }

  .submenu-toggle:hover,
  .submenu-toggle:focus-visible {
    color: var(--hg-green-deep);
    background: #eaf7f3;
    outline: 0;
  }

  .submenu-toggle::before {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
  }

  .submenu-toggle[aria-expanded="true"]::before {
    transform: translateY(2px) rotate(225deg);
  }

  .site-nav .sub-menu {
    position: static;
    display: none;
    width: auto;
    gap: 2px;
    padding: 0 8px 13px 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: grid;
  }

  .site-nav .sub-menu a {
    padding: 10px 12px;
    color: #4f6276;
    font-size: 0.9rem;
    font-weight: 650;
  }

  .hero__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 34px;
  }

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

  .about-grid {
    gap: 45px;
  }

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

  .faq-grid {
    gap: 45px;
  }

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

@media (max-width: 782px) {
  .admin-bar .site-header.is-sticky {
    top: 46px;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 70px 105px;
  }

  .site-topbar__grid,
  .site-topbar--columns-3 .site-topbar__grid {
    display: flex;
    min-height: var(--hg-topbar-height, 42px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 18px;
    padding-block: 7px;
  }

  .site-topbar__item { justify-self: auto; text-align: center; }

  .hero__visual {
    min-height: 0;
  }

  .hero-browser { width: min(100%, 580px); }

  .services-section .section-heading h2 { white-space: normal; }

  .why-section .advantage-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: 0; }
  .advantage-card + .advantage-card { border-top: 1px solid var(--hg-line); border-left: 0; }

  .domain-search__card {
    padding: 25px;
  }

  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-grid > :last-child { order: -1; }

  .about-visual {
    min-height: 340px;
  }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; }

  .site-footer.site-footer .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__top-grid { grid-template-columns: 1fr; }
  .site-footer__top-item + .site-footer__top-item { padding-left: 0; border-left: 0; }
}

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

  .site-header__inner {
    min-height: 72px;
    gap: 8px;
  }

  .site-logo__image,
  .custom-logo {
    width: min(var(--hg-logo-mobile, 190px), 100%);
    max-height: 48px;
  }

  .site-nav {
    top: var(--hg-mobile-nav-top, 72px);
  }

  .header-actions { gap: 5px; }
  .header-action { min-width: 38px; min-height: 38px; padding: 8px; }
  .header-search-modal__panel { padding: 34px 20px 24px; }
  .header-search-modal .search-form { grid-template-columns: 1fr; }

  .hero__grid {
    gap: 42px;
    padding-block: 56px 94px;
  }

  .hero h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .hero__signals { display: grid; gap: 8px; }
  .hero__content .button-row { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .95fr); gap: 8px; }
  .hero__content .button-row .button { width: 100%; min-width: 0; min-height: 48px; padding-inline: 8px; font-size: clamp(.7rem, 3.4vw, .8rem); white-space: nowrap; }

  .check-list--hero,
  .service-grid,
  .advantage-grid,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .hero__visual {
    min-height: 0;
  }

  .hero-browser { border-radius: 18px; }
  .hero-browser__chrome { grid-template-columns: 50px 1fr 50px; padding-inline: 10px; }
  .hero-browser__address { padding-inline: 10px; font-size: 0.54rem; }
  .hero-browser__page { padding: 13px; }
  .hero-browser__navlinks i { width: 20px; }
  .hero-browser__hero { grid-template-columns: 1fr; min-height: 270px; padding: 28px; }
  .hero-browser__art { display: none; }
  .hero-browser__features { gap: 5px; }
  .hero-browser__features span { justify-content: center; padding: 8px 4px; }
  .hero-browser__features i { display: none; }

  .domain-form { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
  .domain-form .button { width: auto; min-width: 76px; padding-inline: 15px; }
  .domain-submit__desktop { display: none; }
  .domain-submit__mobile { display: inline; }

  .domain-search__popular { align-items: flex-start; flex-direction: column; gap: 7px; }

  .section {
    padding-block: 78px;
  }

  .service-card {
    min-height: 0;
  }

  .about-visual {
    min-height: 280px;
    padding: 28px;
  }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; }
  .cta-card .button-row,
  .cta-card .button {
    width: 100%;
  }

  .site-footer__brand,
  .site-footer__grid > :last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

/* Unified Website Design page. */
.wd-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #071a31 0%, #083a4a 63%, #064a46 100%);
  color: #fff;
}

.wd-hero::before,
.wd-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(96, 226, 187, 0.14);
  border-radius: 50%;
}

.wd-hero::before { width: 580px; height: 580px; top: -420px; left: -140px; }
.wd-hero::after { width: 520px; height: 520px; right: -360px; bottom: -310px; }

.wd-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
  min-height: 690px;
  padding-block: 96px;
}

.wd-hero .eyebrow { color: #66e2bd; }
.wd-hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.wd-hero__lead { max-width: 690px; margin: 0 0 31px; color: #d7e7ed; font-size: 1.14rem; line-height: 1.75; }
.wd-hero .button--ghost-light { border-color: rgba(255,255,255,.48); color: #fff; }
.wd-hero__signals { display: flex; flex-wrap: wrap; gap: 14px 25px; margin: 34px 0 0; padding: 0; list-style: none; }
.wd-hero__signals li { position: relative; padding-left: 18px; color: #d9e8ec; font-size: .86rem; font-weight: 700; }
.wd-hero__signals li::before { content: ""; position: absolute; left: 0; top: .48em; width: 7px; height: 7px; border-radius: 50%; background: #61e2ba; box-shadow: 0 0 0 4px rgba(97,226,186,.12); }

.wd-hero__visual {
  position: relative;
  isolation: isolate;
  perspective: 1200px;
}

.wd-hero__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18% -14%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 52%, rgba(36, 192, 153, 0.2) 0%, rgba(10, 91, 86, 0.14) 42%, rgba(7, 43, 59, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.wd-browser {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255,255,255,.1), rgba(0,186,127,.035));
  box-shadow: 0 30px 70px rgba(0,8,18,.24);
  color: #fff;
  filter: none;
  transform: none;
}
.wd-browser__bar { display: grid; grid-template-columns: 80px 1fr 80px; align-items: center; height: 52px; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; background: rgba(255,255,255,.055); padding: 0 18px; }
.wd-browser__bar > span { display: flex; gap: 6px; }
.wd-browser__bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.28); }
.wd-browser__bar i:first-child { background: #0bb786; }
.wd-browser__bar b { border: 1px solid rgba(255,255,255,.08); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.68); font-size: .66rem; padding: 7px 18px; text-align: center; }
.wd-browser__nav { display: flex; justify-content: space-between; align-items: center; margin: 20px 20px 15px; border: 0; background: transparent; padding: 0; }
.wd-browser__nav strong { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: .75rem; letter-spacing: .08em; }
.wd-browser__nav strong::before { content: ""; width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(135deg,#00ba7f 0 50%,#3972c5 50% 100%); transform: rotate(45deg); }
.wd-browser__nav span { display: flex; gap: 9px; }
.wd-browser__nav i { width: 27px; height: 4px; border-radius: 99px; background: rgba(255,255,255,.24); }
.wd-browser__body { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; margin: 0 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(3,17,30,.32); padding: 35px 30px; }
.wd-browser__body > div { display: flex; flex-direction: column; align-items: flex-start; }
.wd-browser__body small { color: #5be0ae; font-size: .63rem; font-weight: 850; letter-spacing: .12em; }
.wd-browser__body strong { margin: 13px 0; color: #fff; font-size: clamp(1.55rem, 2.3vw, 2.3rem); line-height: 1.04; letter-spacing: -.02em; }
.wd-browser__body div > span { color: rgba(255,255,255,.66); font-size: .73rem; line-height: 1.5; }
.wd-browser__body div > b { margin-top: 22px; border-radius: 999px; background: #fff; color: #082033; font-size: .67rem; padding: 10px 15px; }
.wd-browser__body figure { position: relative; min-height: 190px; margin: 0; border-radius: 50%; background: linear-gradient(145deg, #02b883 0 55%, #2875d9 55%); }
.wd-browser__body figure i { position: absolute; left: 24%; width: 58%; height: 52%; border: 7px solid #092844; border-radius: 9px; background: linear-gradient(145deg,#3dbbb1,#3088d6); box-shadow: 0 14px 20px rgba(7,31,60,.16); transform: rotate(6deg); }
.wd-browser__body figure i:nth-child(1) { top: 26%; }
.wd-browser__body figure i:nth-child(2) { top: 56%; width: 35%; height: 6px; border: 0; border-radius: 99px; background: #6b8192; }
.wd-browser__body figure i:nth-child(3) { top: 64%; width: 44%; height: 6px; border: 0; border-radius: 99px; background: #6b8192; }
.wd-browser__body figure i:nth-child(4) { top: 72%; width: 28%; height: 6px; border: 0; border-radius: 99px; background: #6b8192; }
.wd-browser__footer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 10px 20px 20px; }
.wd-browser__footer span { border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.72); font-size: .66rem; font-weight: 750; padding: 11px; text-align: center; }

.wd-proof { border-bottom: 1px solid var(--hg-line); background: #fff; }
.wd-proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.wd-proof__grid > div { display: grid; gap: 4px; padding: 26px 27px; }
.wd-proof__grid > div + div { border-left: 1px solid var(--hg-line); }
.wd-proof__grid strong { color: var(--hg-navy); font-size: .92rem; }
.wd-proof__grid span { color: var(--hg-muted); font-size: .78rem; line-height: 1.45; }

.wd-types { background: #fff; }
.wd-type-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.wd-type-card { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; border: 1px solid #dce7e5; border-radius: 18px; background: #fbfdfd; padding: 25px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.wd-type-card:hover { border-color: #9ddfce; box-shadow: 0 16px 40px rgba(9,53,70,.08); transform: translateY(-3px); }
.wd-type-card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: #e4f8f1; color: #008e69; }
.wd-type-card__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wd-type-card h3 { margin: 2px 0 7px; font-size: 1.06rem; }
.wd-type-card p { margin: 0; color: var(--hg-muted); font-size: .88rem; line-height: 1.62; }
.wd-type-card > a { grid-column: 2; color: #008c67; font-size: .82rem; font-weight: 800; text-decoration: none; }

.wd-outcomes { background: #f0f7f5; }
.wd-outcomes__grid { display: grid; grid-template-columns: minmax(280px,.78fr) minmax(0,1.22fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.wd-outcomes__copy h2 { margin: 0 0 22px; font-size: clamp(2rem, 3.7vw, 3.5rem); line-height: 1.06; }
.wd-outcomes__copy > p:not(.eyebrow) { color: var(--hg-muted); line-height: 1.75; }
.wd-inclusions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; }
.wd-inclusions article { display: grid; grid-template-columns: 42px 1fr; gap: 15px; border: 1px solid #d7e5e2; border-radius: 16px; background: #fff; padding: 23px; }
.wd-inclusions article > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: #07b987; color: #fff; font-size: .72rem; font-weight: 850; }
.wd-inclusions h3 { margin: 1px 0 6px; font-size: 1rem; }
.wd-inclusions p { margin: 0; color: var(--hg-muted); font-size: .85rem; line-height: 1.55; }

.wd-process { background: #fff; }
.wd-process__steps { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; list-style: none; counter-reset: none; }
.wd-process__steps li { position: relative; padding: 6px 32px 10px 0; }
.wd-process__steps li + li { border-left: 1px solid var(--hg-line); padding-left: 32px; }
.wd-process__steps span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 21px; border-radius: 50%; background: #e4f8f1; color: #008d68; font-size: .78rem; font-weight: 850; }
.wd-process__steps h3 { margin: 0 0 8px; font-size: 1.05rem; }
.wd-process__steps p { margin: 0; color: var(--hg-muted); font-size: .86rem; line-height: 1.6; }

.wd-quote { background: #081d35; color: #fff; }
.wd-quote__layout { display: grid; grid-template-columns: minmax(280px,.68fr) minmax(560px,1.32fr); gap: clamp(50px,8vw,105px); align-items: start; }
.wd-quote .eyebrow { color: #64e1ba; }
.wd-quote__intro { position: sticky; top: 130px; }
.wd-quote__intro h2 { margin: 0 0 21px; color: #fff; font-size: clamp(2.15rem,4vw,3.7rem); line-height: 1.05; }
.wd-quote__intro > p:not(.eyebrow) { color: #c9d9e5; line-height: 1.72; }
.wd-starting-price { display: grid; gap: 5px; margin: 31px 0 29px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.055); padding: 22px; }
.wd-starting-price span { color: #a9becd; font-size: .75rem; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; }
.wd-starting-price strong { color: #64e1ba; font-size: 2rem; letter-spacing: -.04em; }
.wd-starting-price small { color: #b9cbd7; line-height: 1.5; }
.wd-quote__intro ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.wd-quote__intro li { position: relative; padding-left: 24px; color: #d6e3ec; font-size: .88rem; }
.wd-quote__intro li::before { content: "✓"; position: absolute; left: 0; color: #64e1ba; font-weight: 900; }
.wd-quote__form-card { border-radius: 22px; background: #fff; color: var(--hg-navy); box-shadow: 0 28px 70px rgba(0,0,0,.22); padding: clamp(25px,4vw,46px); }
.hg-form--website-quote { display: grid; gap: 24px; }
.hg-form--website-quote .hg-form__grid { gap: 16px 20px; }
.hg-form__section { display: grid; gap: 17px; padding-bottom: 24px; border-bottom: 1px solid #e2e9ef; }
.hg-form__section-heading { display: grid; grid-template-columns: 37px 1fr; gap: 13px; align-items: center; }
.hg-form__section-heading > span { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; background: #e5f8f2; color: #008d68; font-size: .76rem; font-weight: 850; }
.hg-form__section-heading h3 { margin: 0 0 2px; color: var(--hg-ink); font-size: 1.05rem; }
.hg-form__section-heading p { margin: 0; color: var(--hg-muted); font-size: .8rem; }
.hg-form--website-quote .hg-field { color: var(--hg-ink); line-height: 1.4; }
.hg-form--website-quote .hg-field > span[aria-hidden="true"] { color: #008d68; }
.hg-choice-group { min-width: 0; margin: 2px 0 0; border: 0; padding: 0; }
.hg-choice-group legend { margin-bottom: 13px; color: var(--hg-navy); font-size: .92rem; font-weight: 700; }
.hg-choice-group legend span { margin-left: 5px; color: var(--hg-muted); font-size: .76rem; font-weight: 500; }
.hg-choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.hg-choice-grid label { position: relative; display: flex; align-items: center; min-height: 46px; border: 1px solid #d8e2ea; border-radius: 10px; cursor: pointer; padding: 10px 12px; }
.hg-choice-grid label:has(input:checked) { border-color: #02a97d; background: #ecfaf5; }
.hg-choice-grid input { width: 17px; height: 17px; margin: 0 9px 0 0; accent-color: #009f75; }
.hg-choice-grid span { color: #334d65; font-size: .79rem; font-weight: 650; }
.hg-consent { display: flex; gap: 11px; align-items: flex-start; color: #435970; font-size: .8rem; line-height: 1.5; }
.hg-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; accent-color: #009f75; }
.wd-quote .hg-form__privacy { margin: -13px 0 0; text-align: center; }
.wd-faq { background: #f5f8f7; }

@media (max-width: 1100px) {
  .wd-hero__grid { grid-template-columns: minmax(0,1fr) minmax(370px,.75fr); }
  .wd-type-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .wd-proof__grid { grid-template-columns: repeat(2,1fr); }
  .wd-proof__grid > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--hg-line); }
  .wd-proof__grid > div:nth-child(4) { border-top: 1px solid var(--hg-line); }
  .wd-quote__layout { grid-template-columns: minmax(250px,.6fr) minmax(500px,1.4fr); gap: 50px; }
}

@media (max-width: 900px) {
  .wd-hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 78px; }
  .wd-hero__content { max-width: 760px; }
  .wd-hero__visual { max-width: 600px; }
  .wd-outcomes__grid,
  .wd-quote__layout { grid-template-columns: 1fr; }
  .wd-quote__intro { position: static; max-width: 680px; }
  .wd-process__steps { grid-template-columns: repeat(2,1fr); gap: 30px 0; }
  .wd-process__steps li:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 650px) {
  .wd-hero__grid { padding-block: 65px; }
  .wd-hero h1 { font-size: clamp(2.65rem,12vw,4.2rem); }
  .wd-hero__visual { display: none; }
  .wd-proof__grid,
  .wd-type-grid,
  .wd-inclusions,
  .wd-process__steps { grid-template-columns: 1fr; }
  .wd-proof__grid > div + div { border-top: 1px solid var(--hg-line); border-left: 0; }
  .wd-type-card { grid-template-columns: 46px 1fr; padding: 21px; }
  .wd-type-card__icon { width: 46px; height: 46px; }
  .wd-process__steps li,
  .wd-process__steps li + li { border-left: 0; border-top: 1px solid var(--hg-line); padding: 23px 0 0; }
  .wd-process__steps li:first-child { border-top: 0; padding-top: 0; }
  .wd-quote__form-card { padding: 24px 18px; }
  .hg-choice-grid { grid-template-columns: 1fr; }
}

/* Native domain page */
.domain-page-hero {
  padding-block: 88px 96px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 186, 127, 0.22), transparent 29%),
    linear-gradient(132deg, #071827 0%, #0a2634 58%, #07463f 100%);
}

.domain-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
}

.domain-page-hero .eyebrow { color: #5be0ae; }

.domain-page-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.2rem, 5.6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.domain-page-hero__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.7;
}

.domain-page-hero__cta { margin-top: 2px; }

.domain-page-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 21px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.domain-page-hero__signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.domain-page-hero__signals span::before {
  width: 7px;
  height: 7px;
  background: #5be0ae;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(91, 224, 174, 0.1);
  content: "";
}

.domain-availability {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 8, 18, 0.25);
}

.domain-availability__top {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 6px;
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.domain-availability__top > span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.domain-availability__top > span:first-child { background: #00ba7f; }
.domain-availability__top small { margin-left: auto; color: rgba(255, 255, 255, 0.5); font-size: 0.65rem; }

.domain-availability__body {
  padding: clamp(30px, 5vw, 52px);
}

.domain-availability__body > p {
  margin: 0 0 9px;
  color: #5be0ae;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.domain-availability__body > strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.domain-availability__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.domain-availability__status i {
  width: 7px;
  height: 7px;
  background: #5be0ae;
  border-radius: 50%;
}

.domain-availability__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 42px;
}

.domain-availability__options span {
  padding: 13px 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 750;
}

.domain-checker-section {
  padding-block: 84px;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 186, 127, 0.08), transparent 25%),
    linear-gradient(180deg, #f4f8f7 0%, #f8fbfa 100%);
}

.domain-checker-shell {
  max-width: 1160px;
  margin-inline: auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d5e4e0;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(7, 24, 39, 0.09);
}

.domain-checker-card {
  min-height: 210px;
  padding: clamp(26px, 5vw, 52px);
  background: #fff;
}

.domain-checker-card__heading {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e3ece9;
  text-align: center;
}

.domain-checker-card__heading .eyebrow { margin-bottom: 10px; }

.domain-checker-card__heading h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
}

.domain-checker-card upm-dac {
  display: block;
  --upm-dac-color: #0b2139;
}

.domain-price-section { padding-block: 92px; }
.domain-price-section .section-heading { margin-bottom: 38px; }

.domain-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.domain-price-card {
  display: grid;
  min-height: 210px;
  grid-template-columns: 1fr auto;
  align-content: start;
  padding: 26px;
  color: var(--hg-ink);
  background: #fff;
  border: 1px solid var(--hg-line);
  border-radius: 17px;
  cursor: default;
  text-align: left;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.domain-price-card:hover,
.domain-price-card:focus-visible {
  border-color: rgba(0, 186, 127, 0.5);
  box-shadow: 0 15px 34px rgba(17, 35, 58, 0.08);
  outline: 0;
  transform: translateY(-3px);
}

.domain-price-card > span {
  color: var(--hg-green-deep);
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.domain-price-card > strong {
  color: var(--hg-ink);
  font-size: 1.45rem;
  line-height: 1.15;
}

.domain-price-card > small {
  grid-column: 2;
  color: var(--hg-muted);
  font-size: 0.68rem;
}

.domain-price-card > p {
  grid-column: 1 / -1;
  align-self: end;
  margin: 42px 0 0;
  color: var(--hg-muted);
  font-size: 0.84rem;
}

.domain-price-note {
  margin: 18px 0 0;
  color: var(--hg-muted);
  font-size: 0.75rem;
  text-align: center;
}

.domain-benefits {
  padding-block: 92px;
  background: var(--hg-surface);
}

.domain-benefits__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.domain-benefits h2 { max-width: 480px; }

.domain-benefit-list {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hg-line);
  border-radius: 18px;
}

.domain-benefit-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 24px 26px;
}

.domain-benefit-list article + article { border-top: 1px solid var(--hg-line); }
.domain-benefit-list article > span { color: var(--hg-green-deep); font-size: 0.72rem; font-weight: 820; }
.domain-benefit-list h3 { margin-bottom: 5px; font-size: 1.05rem; }
.domain-benefit-list p { margin: 0; color: var(--hg-muted); font-size: 0.88rem; line-height: 1.6; }

.domain-faq-section { padding-block: 88px; }

@media (max-width: 1060px) {
  .domain-page-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr); gap: 42px; }
  .domain-page-hero h1 { font-size: clamp(3rem, 6.5vw, 4.4rem); }
}

@media (max-width: 782px) {
  .domain-page-hero { padding-block: 68px 78px; }
  .domain-page-hero__grid,
  .domain-benefits__grid { grid-template-columns: 1fr; }
  .domain-availability { width: min(100%, 620px); }
  .domain-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .domain-page-hero h1 { font-size: clamp(2.75rem, 14vw, 3.8rem); }
  .domain-page-hero__signals { display: grid; }
  .domain-availability__body { padding: 28px 22px; }
  .domain-availability__options { margin-top: 30px; }
  .domain-price-grid { grid-template-columns: 1fr; }
  .domain-price-card { min-height: 180px; }
  .domain-checker-section { padding-block: 56px; }
  .domain-checker-shell { border-radius: 20px; }
  .domain-checker-card { min-height: 180px; padding: 24px 18px; }
  .domain-checker-card__heading { margin-bottom: 24px; padding-bottom: 22px; }
}

/* Blog listing. */
.blog-index {
	background: #f6faf9;
}

.blog-index-hero {
	padding-block: clamp(4.25rem, 8vw, 7rem);
	color: #fff;
	background:
		radial-gradient(circle at 86% 8%, rgba(90, 226, 175, 0.18), transparent 28%),
		linear-gradient(132deg, #071827 0%, #0a2e3b 58%, #075047 100%);
}

.blog-index-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: end;
}

.blog-index-hero .eyebrow {
	margin: 0 0 1rem;
	color: #62e2b3;
}

.blog-index-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(3.25rem, 8vw, 6.5rem);
	line-height: 0.95;
	letter-spacing: -0.055em;
}

.blog-index-hero__inner > p {
	max-width: 500px;
	margin: 0 0 0.35rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.75;
}

.blog-index__section {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.blog-index__heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
	gap: 2rem;
	align-items: end;
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.blog-index__heading .eyebrow {
	margin: 0 0 0.75rem;
	color: #008864;
}

.blog-index__heading h2 {
	margin: 0;
	color: #0b2135;
	font-size: clamp(2.2rem, 5vw, 3.65rem);
	line-height: 1;
	letter-spacing: -0.045em;
}

.blog-index__heading > p {
	margin: 0;
	color: #5d7182;
	line-height: 1.7;
}

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

.blog-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #d4e2df;
	border-radius: 1.25rem;
	background: #fff;
	box-shadow: 0 0.8rem 2.2rem rgba(10, 45, 58, 0.055);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	flex-direction: column;
}

.blog-card:hover,
.blog-card:focus-within {
	border-color: #9fd5c7;
	box-shadow: 0 1.2rem 3rem rgba(10, 45, 58, 0.1);
	transform: translateY(-4px);
}

.blog-card--featured {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.2fr);
}

.blog-card__visual {
	position: relative;
	display: flex;
	min-height: 215px;
	overflow: hidden;
	padding: 1.4rem;
	color: #fff;
	text-decoration: none;
	background:
		radial-gradient(circle at 72% 24%, rgba(98, 226, 179, 0.28), transparent 25%),
		linear-gradient(145deg, #092238, #075248);
	isolation: isolate;
}

.blog-card--featured .blog-card__visual {
	min-height: 360px;
}

.blog-card__visual::after {
	position: absolute;
	right: -4rem;
	bottom: -5rem;
	z-index: -1;
	width: 15rem;
	height: 15rem;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.025);
	content: "";
}

.blog-card__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms ease;
}

.blog-card:hover .blog-card__visual img {
	transform: scale(1.035);
}

.blog-card__visual-label {
	align-self: flex-start;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.blog-card__visual-mark {
	align-self: flex-end;
	margin: auto 0 0 auto;
	color: rgba(255, 255, 255, 0.13);
	font-size: clamp(4.8rem, 10vw, 8.5rem);
	font-weight: 900;
	line-height: 0.7;
	letter-spacing: -0.08em;
}

.blog-card__body {
	display: flex;
	min-width: 0;
	padding: clamp(1.4rem, 3vw, 2rem);
	flex: 1;
	flex-direction: column;
}

.blog-card--featured .blog-card__body {
	justify-content: center;
	padding: clamp(2rem, 5vw, 4rem);
}

.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 1.2rem;
	align-items: center;
	margin-bottom: 1rem;
	color: #718292;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.blog-card__meta a {
	color: #008864;
	text-decoration: none;
}

.blog-card h2 {
	margin: 0;
	font-size: clamp(1.3rem, 2.3vw, 1.65rem);
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.blog-card--featured h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.blog-card h2 a {
	color: #0b2135;
	text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus-visible {
	color: #007f5f;
}

.blog-card__excerpt {
	margin-top: 1rem;
	color: #5b7081;
	line-height: 1.7;
}

.blog-card__excerpt p {
	margin: 0;
}

.blog-card__footer {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 1.5rem;
	color: #7a8995;
	font-size: 0.84rem;
}

.blog-card__read {
	color: #007f5f;
	font-weight: 800;
	text-decoration: none;
}

.blog-card__read span {
	display: inline-block;
	margin-left: 0.25rem;
	transition: transform 180ms ease;
}

.blog-card__read:hover span,
.blog-card__read:focus-visible span {
	transform: translateX(4px);
}

.blog-index .navigation.pagination {
	margin-top: 3rem;
}

.blog-index .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.blog-index .page-numbers {
	display: inline-flex;
	min-width: 2.75rem;
	height: 2.75rem;
	padding-inline: 0.85rem;
	align-items: center;
	justify-content: center;
	border: 1px solid #cfe0dc;
	border-radius: 999px;
	background: #fff;
	color: #244458;
	font-weight: 750;
	text-decoration: none;
}

.blog-index .page-numbers.current,
.blog-index .page-numbers:hover,
.blog-index .page-numbers:focus-visible {
	border-color: #008864;
	background: #008864;
	color: #fff;
}

.blog-index__empty {
	padding: 3rem;
	border: 1px solid #d4e2df;
	border-radius: 1.25rem;
	background: #fff;
	text-align: center;
}

.blog-index__empty h2 {
	margin-top: 0;
	color: #0b2135;
}

.blog-index-cta {
	padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.blog-index-cta__inner {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
	padding: clamp(2rem, 5vw, 3.25rem);
	border-radius: 1.5rem;
	color: #fff;
	background: linear-gradient(120deg, #008c67, #00b987);
}

.blog-index-cta .eyebrow {
	margin: 0 0 0.65rem;
	color: rgba(255, 255, 255, 0.78);
}

.blog-index-cta h2 {
	max-width: 700px;
	margin: 0;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.7rem);
	line-height: 1.15;
	letter-spacing: -0.035em;
}

.blog-index-cta .button {
	flex: 0 0 auto;
}

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

	.blog-card--featured {
		grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
	}
}

@media (max-width: 720px) {
	.blog-index-hero__inner,
	.blog-index__heading {
		grid-template-columns: 1fr;
	}

	.blog-index-hero h1 {
		font-size: clamp(3rem, 18vw, 5rem);
	}

	.blog-card--featured {
		grid-template-columns: 1fr;
	}

	.blog-card--featured .blog-card__visual {
		min-height: 250px;
	}

	.blog-index-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.blog-index__grid {
		grid-template-columns: 1fr;
	}

	.blog-card--featured {
		grid-column: auto;
	}

	.blog-card--featured h2 {
		font-size: 1.75rem;
	}

	.blog-index-cta .button {
		width: 100%;
		text-align: center;
	}
}

/* Blog articles. */
.blog-article {
	background: #f6faf9;
}

.blog-article-hero {
	padding-block: clamp(4.5rem, 9vw, 7.5rem);
	color: #fff;
	background:
		radial-gradient(circle at 84% 12%, rgba(82, 224, 172, 0.18), transparent 29%),
		linear-gradient(132deg, #071827 0%, #0a2d3a 60%, #075047 100%);
}

.blog-article-hero__inner {
	max-width: 1060px;
}

.blog-article-hero__category {
	display: inline-flex;
	align-items: center;
	margin-bottom: 1.35rem;
	color: #62e2b3;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
}

.blog-article-hero__category:hover,
.blog-article-hero__category:focus-visible {
	color: #fff;
}

.blog-article-hero h1 {
	max-width: 1000px;
	margin: 0;
	color: #fff;
	font-size: clamp(2.75rem, 6vw, 5.1rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.blog-article-hero__subtitle {
	max-width: 850px;
	margin: 1.6rem 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.7;
}

.blog-article-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.75rem;
	margin-top: 1.6rem;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.9rem;
}

.blog-article-hero__meta span {
	position: relative;
}

.blog-article-hero__meta span::before {
	position: absolute;
	top: 50%;
	left: -1rem;
	width: 0.3rem;
	height: 0.3rem;
	border-radius: 50%;
	background: #62e2b3;
	content: "";
	transform: translateY(-50%);
}

.blog-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: start;
	padding-block: clamp(4rem, 8vw, 6.5rem);
}

.blog-article__main {
	min-width: 0;
}

.blog-article__featured-image {
	margin: 0 0 2.5rem;
	overflow: hidden;
	border-radius: 1.25rem;
	box-shadow: 0 1.25rem 3.5rem rgba(5, 30, 39, 0.12);
}

.blog-article__featured-image img {
	display: block;
	width: 100%;
	height: auto;
}

.blog-article__content {
	color: #385064;
	font-size: 1.06rem;
	line-height: 1.85;
}

.blog-article__content > :first-child {
	margin-top: 0;
	color: #20384b;
	font-size: 1.16rem;
}

.blog-article__content p {
	margin: 0 0 1.45em;
}

.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
	color: #0b2135;
	letter-spacing: -0.025em;
}

.blog-article__content h2 {
	margin: 2.1em 0 0.65em;
	font-size: clamp(1.65rem, 3vw, 2.2rem);
	line-height: 1.2;
}

.blog-article__content h3 {
	margin: 1.8em 0 0.6em;
	font-size: clamp(1.3rem, 2vw, 1.6rem);
	line-height: 1.3;
}

.blog-article__content ul,
.blog-article__content ol {
	margin: 0 0 1.6em;
	padding-left: 1.35rem;
}

.blog-article__content li {
	margin-bottom: 0.55em;
	padding-left: 0.25rem;
}

.blog-article__content a {
	color: #007f5f;
	font-weight: 700;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.blog-article__content blockquote {
	margin: 2rem 0;
	padding: 1.5rem 1.75rem;
	border-left: 4px solid #00b982;
	border-radius: 0 1rem 1rem 0;
	background: #e9f8f3;
	color: #173b42;
}

.blog-article__content table {
	width: 100%;
	margin: 2rem 0;
	border-collapse: collapse;
}

.blog-article__content th,
.blog-article__content td {
	padding: 0.8rem;
	border: 1px solid #d5e3e0;
	text-align: left;
}

.blog-article__content th {
	background: #e9f8f3;
	color: #0b2135;
}

.blog-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid #d6e3e0;
}

.blog-article__tags > span {
	margin-right: 0.25rem;
	color: #0b2135;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.blog-article__tags a {
	padding: 0.4rem 0.7rem;
	border: 1px solid #cbe0db;
	border-radius: 999px;
	background: #fff;
	color: #275064;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
}

.blog-article__tags a:hover,
.blog-article__tags a:focus-visible {
	border-color: #00a977;
	color: #007f5f;
}

.blog-article__aside {
	position: sticky;
	top: 7.5rem;
	display: grid;
	gap: 1.1rem;
}

.blog-article__cta,
.blog-article__services {
	border-radius: 1.25rem;
}

.blog-article__cta {
	padding: 1.8rem;
	color: rgba(255, 255, 255, 0.78);
	background: linear-gradient(145deg, #081c2e, #0b3c42);
}

.blog-article__cta .eyebrow {
	margin: 0 0 0.85rem;
	color: #62e2b3;
}

.blog-article__cta h2 {
	margin: 0;
	color: #fff;
	font-size: 1.65rem;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.blog-article__cta p:not(.eyebrow) {
	margin: 1rem 0 1.4rem;
	line-height: 1.65;
}

.blog-article__cta .button {
	width: 100%;
	text-align: center;
}

.blog-article__services {
	display: grid;
	padding: 1.4rem 1.6rem;
	border: 1px solid #d4e2df;
	background: #fff;
}

.blog-article__services strong {
	margin-bottom: 0.55rem;
	color: #0b2135;
}

.blog-article__services a {
	position: relative;
	padding: 0.75rem 1.2rem 0.75rem 0;
	border-bottom: 1px solid #e3ecea;
	color: #385064;
	font-weight: 700;
	text-decoration: none;
}

.blog-article__services a:last-child {
	border-bottom: 0;
}

.blog-article__services a::after {
	position: absolute;
	right: 0;
	content: "\2192";
}

.blog-article__services a:hover,
.blog-article__services a:focus-visible {
	color: #008864;
}

@media (max-width: 980px) {
	.blog-article__layout {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 640px) {
	.blog-article-hero {
		padding-block: 3.5rem;
	}

	.blog-article-hero h1 {
		font-size: clamp(2.25rem, 12vw, 3.3rem);
		line-height: 1.08;
	}

	.blog-article-hero__meta {
		gap: 0.65rem 1.5rem;
	}

	.blog-article__layout {
		padding-block: 3rem;
	}

	.blog-article__content {
		font-size: 1rem;
	}

	.blog-article__aside {
		grid-template-columns: 1fr;
	}
}

/* Hosting family: web, WordPress and email hosting. */
.hosting-page {
  background: #fff;
}

.hosting-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 30%, rgba(0, 186, 127, 0.18), transparent 25%),
    linear-gradient(122deg, #0b1b2d 0%, #0b2638 56%, #063b3b 100%);
}

.hosting-hero::before,
.hosting-hero::after {
  position: absolute;
  border: 1px solid rgba(104, 226, 188, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hosting-hero::before {
  width: 520px;
  height: 520px;
  top: -330px;
  left: -170px;
}

.hosting-hero::after {
  width: 440px;
  height: 440px;
  right: -250px;
  bottom: -270px;
}

.hosting-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  min-height: 600px;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  padding-block: 88px;
}

.hosting-hero__content {
  max-width: 690px;
}

.hosting-hero .eyebrow {
  color: #68e2bc;
}

.hosting-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hosting-hero__intro {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hosting-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.hosting-hero__signals li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #58deb2;
  box-shadow: 0 0 0 5px rgba(88, 222, 178, 0.1);
  content: "";
}

.hosting-hero__visual {
  position: relative;
}

.hosting-hero__visual::before {
  position: absolute;
  inset: -36px 15% 24px -12%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hosting-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(104, 226, 188, 0.22);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(19, 60, 68, 0.76), rgba(7, 34, 47, 0.7));
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.18);
  color: #fff;
  -webkit-backdrop-filter: blur(13px) saturate(115%);
  backdrop-filter: blur(13px) saturate(115%);
  transform: rotate(1.5deg);
}

.hosting-console__top {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.hosting-console__top > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.hosting-console__top > span:first-child { background: #58deb2; }
.hosting-console__top small { margin-left: auto; color: rgba(255, 255, 255, 0.62); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.hosting-console__body {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: start;
  gap: 24px;
  padding: 40px 34px 34px;
}

.hosting-console__mark {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(0, 204, 139, 0.98) 0%, rgba(0, 124, 90, 0.94) 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  font-size: 1.65rem;
  font-weight: 880;
  letter-spacing: -0.05em;
}

.hosting-console__body p {
  margin: 2px 0 19px;
  font-size: 1.24rem;
  font-weight: 820;
  line-height: 1.25;
}

.hosting-console__body ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  list-style: none;
}

.hosting-console__body li {
  position: relative;
  padding-left: 22px;
}

.hosting-console__body li::before {
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #58deb2;
  box-shadow: 0 0 0 4px rgba(88, 222, 178, 0.1);
  content: "";
}

.hosting-console__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.hosting-console__footer span {
  padding: 15px 8px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
}

.hosting-console__footer span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hosting-benefits-section {
  padding-block: 34px;
  border-bottom: 1px solid var(--hg-line);
  background: #f4faf8;
}

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

.hosting-benefit {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 8px 26px;
}

.hosting-benefit + .hosting-benefit {
  border-left: 1px solid var(--hg-line);
}

.hosting-benefit__number {
  color: var(--hg-green-deep);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.hosting-benefit h2 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.hosting-benefit p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hosting-plans {
  background: #fff;
}

.hosting-plans .section-heading {
  margin-bottom: 58px;
}

.hosting-plan-grid {
  display: grid;
  align-items: start;
  gap: 18px;
}

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

.hosting-plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 29px 26px 27px;
  border: 1px solid var(--hg-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(17, 35, 58, 0.055);
}

.hosting-plan-card--featured {
  border-color: var(--hg-green);
  box-shadow: 0 20px 50px rgba(0, 143, 99, 0.13);
}

.hosting-plan-card__badge {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--hg-green-deep);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.hosting-plan-card__for {
  min-height: 38px;
  margin: 0 0 12px;
  color: var(--hg-green-deep);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.045em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hosting-plan-card h3 {
  margin-bottom: 7px;
  font-size: 1.26rem;
}

.hosting-plan-card__description {
  min-height: 48px;
  margin-bottom: 17px;
  color: var(--hg-muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.hosting-plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 0 0 20px;
  color: var(--hg-ink);
  font-size: 2.55rem;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hosting-plan-card__price > span { font-size: 1rem; letter-spacing: 0; }
.hosting-plan-card__price small { margin-left: 4px; color: var(--hg-muted); font-size: 0.72rem; font-weight: 650; letter-spacing: 0; }

.hosting-plan-card .button {
  min-height: 44px;
  padding-block: 0.66rem;
  font-size: 0.82rem;
}

.hosting-plan-card__includes {
  margin: 25px 0 13px;
  color: var(--hg-ink);
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hosting-plan-card .native-feature-list {
  gap: 9px;
  margin-bottom: 14px;
}

.hosting-plan-card .native-feature-list li {
  padding-left: 22px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hosting-plan-card__more {
  margin-top: 3px;
  border-top: 1px solid var(--hg-line);
  padding-top: 13px;
}

.hosting-plan-card__more summary {
  color: var(--hg-green-deep);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  list-style: none;
}

.hosting-plan-card__more summary::-webkit-details-marker { display: none; }
.hosting-plan-card__more summary::after { margin-left: 6px; content: "+"; }
.hosting-plan-card__more[open] summary::after { content: "−"; }
.hosting-plan-card__more .native-feature-list { margin-top: 14px; }

.hosting-explore {
  padding-block: 88px;
  background: var(--hg-surface);
}

.hosting-explore__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.hosting-explore__heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.hosting-explore__heading > p {
  margin: 0 0 5px;
  color: var(--hg-muted);
}

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

.hosting-explore-card {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--hg-line);
  border-radius: 17px;
  background: #fff;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hosting-explore-card:hover,
.hosting-explore-card:focus-visible {
  border-color: rgba(0, 186, 127, 0.55);
  box-shadow: 0 16px 34px rgba(17, 35, 58, 0.09);
  transform: translateY(-3px);
}

.hosting-explore-card--current {
  border-color: var(--hg-dark);
  background: var(--hg-dark);
  color: #fff;
}

.hosting-explore-card__mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  color: var(--hg-green-deep);
  background: #e4f8f1;
  font-size: 0.9rem;
  font-weight: 880;
}

.hosting-explore-card strong,
.hosting-explore-card small {
  display: block;
}

.hosting-explore-card strong { margin-bottom: 4px; font-size: 0.93rem; }
.hosting-explore-card small { color: var(--hg-muted); font-size: 0.7rem; line-height: 1.4; }
.hosting-explore-card em { color: var(--hg-green-deep); font-size: 0.72rem; font-style: normal; font-weight: 800; white-space: nowrap; }
.hosting-explore-card--current small { color: rgba(255, 255, 255, 0.62); }
.hosting-explore-card--current em { color: #68e2bc; }

.hosting-faq-section {
  color: #fff;
  background: var(--hg-dark);
}

.hosting-faq-section h2 { color: #fff; }
.hosting-faq-section .eyebrow { color: #68e2bc; }
.hosting-faq-section .faq-native-layout > div:first-child > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.67); }
.hosting-accordion details { border-color: rgba(255, 255, 255, 0.12); background: #142b43; }
.hosting-accordion summary { color: #fff; }
.hosting-accordion summary::after { color: #68e2bc; }
.hosting-accordion details p { color: rgba(255, 255, 255, 0.72); }

@media (max-width: 1080px) {
  .hosting-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr); gap: 46px; }
  .hosting-hero h1 { font-size: clamp(3rem, 5.8vw, 4.2rem); }
  .hosting-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; }
  .hosting-benefit:nth-child(3) { border-left: 0; }
  .hosting-plan-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .hosting-hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 72px; }
  .hosting-hero__content { max-width: 720px; }
  .hosting-hero__visual { width: min(100%, 520px); }
  .hosting-plan-grid--3 { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .hosting-explore__heading { grid-template-columns: 1fr; gap: 18px; }
  .hosting-explore__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hosting-hero h1 { font-size: clamp(2.65rem, 13vw, 3.65rem); }
  .hosting-hero__grid { padding-block: 62px; }
  .hosting-hero__signals { display: grid; }
  .hosting-console__body { grid-template-columns: 64px 1fr; gap: 17px; padding: 29px 22px 25px; }
  .hosting-console__mark { width: 62px; height: 62px; border-radius: 18px; font-size: 1.15rem; }
  .hosting-console__body p { font-size: 1.02rem; }
  .hosting-console__body ul { font-size: 0.73rem; }
  .hosting-benefit-grid { grid-template-columns: 1fr; }
  .hosting-benefit { padding: 14px 8px; }
  .hosting-benefit + .hosting-benefit { border-top: 1px solid var(--hg-line); border-left: 0; }
  .hosting-plan-grid--4 { grid-template-columns: 1fr; }
  .hosting-plan-card__for,
  .hosting-plan-card__description { min-height: 0; }
  .hosting-explore-card { grid-template-columns: 48px 1fr; }
  .hosting-explore-card em { grid-column: 2; }
}

/* Native service pages, pricing tables and accordions. */
.service-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071a35 0%, #0a3264 60%, #0e68ad 100%);
  color: #fff;
}

.service-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -260px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.025);
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 70px;
  min-height: 560px;
  padding-block: 95px;
}

.service-hero h1 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
}

.service-hero .eyebrow { color: #72d8ff; }
.service-hero__intro { max-width: 720px; color: #dcecff; font-size: 1.15rem; }
.service-hero .button--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.service-hero__mark { display: grid; place-items: center; width: 290px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.2); border-radius: 35% 65% 55% 45% / 45% 40% 60% 55%; background: rgba(255,255,255,.08); box-shadow: inset 0 0 70px rgba(255,255,255,.08); transform: rotate(8deg); }
.service-hero__mark span { color: #fff; font-size: 5.4rem; font-weight: 800; letter-spacing: -.08em; transform: rotate(-8deg); }
.section--soft { background: #f5f8fc; }

.native-benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.native-benefit { border: 1px solid #e0e9f3; border-radius: 16px; background: #fff; padding: 28px; }
.native-benefit__icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 20px; border-radius: 12px; background: #e8f7ff; color: var(--hg-blue); font-weight: 800; }
.native-benefit h2 { margin: 0 0 10px; font-size: 1.1rem; }
.native-benefit p { margin: 0; color: var(--hg-muted); font-size: .94rem; }
.section-heading--center { max-width: 760px; margin: 0 auto 52px; text-align: center; }

.native-pricing-grid { display: grid; gap: 24px; align-items: start; }
.native-pricing-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 900px; margin-inline: auto; }
.native-pricing-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.native-pricing-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.native-price-card { position: relative; display: flex; flex-direction: column; border: 1px solid #dfe8f2; border-radius: 20px; background: #fff; box-shadow: 0 14px 40px rgba(11,42,76,.07); padding: 32px; }
.native-price-card--featured { border: 2px solid var(--hg-blue); box-shadow: 0 20px 55px rgba(38,120,219,.15); }
.native-price-card__badge { position: absolute; top: 0; right: 24px; transform: translateY(-50%); border-radius: 999px; background: var(--hg-blue); color: #fff; font-size: .75rem; font-weight: 800; padding: 7px 13px; text-transform: uppercase; letter-spacing: .06em; }
.native-price-card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.native-price-card__description { min-height: 52px; margin: 0 0 22px; color: var(--hg-muted); }
.native-price-card__price { display: flex; align-items: baseline; gap: 3px; margin: 0 0 25px; color: var(--hg-navy); font-size: 2.9rem; font-weight: 800; letter-spacing: -.05em; }
.native-price-card__price > span { font-size: 1.1rem; letter-spacing: 0; }
.native-price-card__price small { margin-left: 5px; color: var(--hg-muted); font-size: .8rem; font-weight: 600; letter-spacing: 0; }
.native-feature-list { display: grid; gap: 11px; margin: 0 0 22px; padding: 0; list-style: none; }
.native-feature-list li { position: relative; padding-left: 25px; color: #314966; font-size: .91rem; }
.native-feature-list li::before { content: "✓"; position: absolute; left: 0; color: #08a96c; font-weight: 900; }
.native-price-card__more { margin: -6px 0 22px; }
.native-price-card__more summary { color: var(--hg-blue); cursor: pointer; font-size: .9rem; font-weight: 800; }
.native-price-card__more .native-feature-list { margin: 18px 0 0; }
.native-price-card__best { margin-top: auto; color: var(--hg-muted); font-size: .86rem; }
.button--full { width: 100%; margin-top: 8px; }

.faq-native-layout { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: clamp(45px,8vw,110px); align-items: start; }
.faq-native-layout h2 { margin-top: 0; }
.native-accordion { display: grid; gap: 12px; }
.native-accordion details { border: 1px solid #dfe8f2; border-radius: 13px; background: #fff; overflow: hidden; }
.native-accordion summary { position: relative; padding: 20px 55px 20px 22px; color: var(--hg-navy); cursor: pointer; font-weight: 750; list-style: none; }
.native-accordion summary::-webkit-details-marker { display: none; }
.native-accordion summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--hg-blue); font-size: 1.45rem; }
.native-accordion details[open] summary::after { content: "−"; }
.native-accordion details p { margin: 0; padding: 0 22px 22px; color: var(--hg-muted); }

/* Keep the light hosting FAQ cards readable inside their dark section. */
.hosting-faq-section .hosting-accordion details {
  border-color: rgba(255, 255, 255, 0.16);
  background: #fff;
}

.hosting-faq-section .hosting-accordion summary {
  color: var(--hg-ink);
}

.hosting-faq-section .hosting-accordion details p {
  color: var(--hg-muted);
}

.hosting-faq-section .hosting-accordion summary::after {
  color: var(--hg-blue);
}

.qr-comparison { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 25px; max-width: 1000px; }
.qr-comparison__card { border: 1px solid #dfe8f2; border-radius: 20px; background: #fff; padding: 36px; }
.qr-comparison__card--featured { border-color: var(--hg-blue); box-shadow: 0 18px 50px rgba(38,120,219,.12); }
.billing-toggle { display: flex; width: max-content; margin: 0 auto 45px; border: 1px solid #dbe5ef; border-radius: 999px; background: #f4f8fc; padding: 5px; }
.billing-toggle button { border: 0; border-radius: 999px; background: transparent; color: var(--hg-muted); cursor: pointer; font: inherit; font-size: .9rem; font-weight: 800; padding: 11px 20px; }
.billing-toggle button[aria-pressed="true"] { background: var(--hg-navy); color: #fff; box-shadow: 0 6px 18px rgba(9,35,67,.18); }
.qr-pricing .native-price-card { padding: 28px 24px; }
.qr-pricing .native-price-card__price { font-size: 2.35rem; }

@media (max-width: 1050px) {
  .service-hero__inner { grid-template-columns: 1fr 220px; }
  .service-hero__mark { width: 210px; }
  .native-benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .native-pricing-grid--3 { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .native-pricing-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .native-price-card__description { min-height: 0; }
}

@media (max-width: 760px) {
  .service-hero__inner { grid-template-columns: 1fr; min-height: 0; padding-block: 75px; }
  .service-hero__mark { display: none; }
  .native-pricing-grid--2, .faq-native-layout { grid-template-columns: 1fr; }
  .qr-comparison { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .native-benefit-grid { grid-template-columns: 1fr; }
  .native-price-card { padding: 27px 22px; }
  .native-pricing-grid--4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Native forms and plan enquiry modal. */
.hg-form-wrap,
.hg-form {
  width: 100%;
}

.hg-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hg-field {
  display: grid;
  gap: 8px;
  color: var(--hg-navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.hg-field--full {
  grid-column: 1 / -1;
}

.hg-field input,
.hg-field select,
.hg-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d8e1ec;
  border-radius: 10px;
  background: #fff;
  color: var(--hg-navy);
  font: inherit;
  font-weight: 500;
  padding: 12px 14px;
}

.hg-field textarea {
  min-height: 125px;
  resize: vertical;
}

.hg-field input:focus,
.hg-field select:focus,
.hg-field textarea:focus {
  border-color: var(--hg-blue);
  box-shadow: 0 0 0 3px rgba(44, 126, 247, 0.14);
  outline: 0;
}

.hg-form__privacy {
  margin: 18px 0;
  color: var(--hg-muted);
  font-size: 0.85rem;
}

.hg-form__notice {
	margin: 0;
  border-radius: 10px;
  padding: 14px 16px;
}

.hg-form__response {
  margin: 14px 0 0;
}

.hg-form__response[hidden] {
  display: none;
}

.hg-form.is-submitted > :not(.hg-form__response) {
  display: none !important;
}

.hg-form.is-submitted .hg-form__response {
  margin: 0;
}

.hg-form button[type="submit"][aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
}

.hg-form__notice--success {
  background: #e9f8ef;
  color: #166534;
}

.hg-form__notice--error {
  background: #fff1f1;
  color: #9f1d1d;
}

.hg-form__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hg-modal {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(8, 26, 54, 0.28);
  padding: 0;
}

.hg-modal::backdrop {
  background: rgba(7, 23, 45, 0.72);
  backdrop-filter: blur(4px);
}

.hg-modal__panel {
  position: relative;
  padding: 38px;
}

.hg-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef4fb;
  color: var(--hg-navy);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.hg-modal h2 {
  margin: 0 46px 8px 0;
}

.hg-modal__intro {
  margin: 0 0 25px;
  color: var(--hg-muted);
}

body.modal-open {
  overflow: hidden;
}

.contact-page .page-hero p:last-child {
  max-width: 680px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(40px, 7vw, 95px);
  align-items: start;
}

.contact-details h2,
.contact-form-card h2 {
  margin-top: 0;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-methods > * {
  display: grid;
  gap: 4px;
  border: 1px solid #e0e8f1;
  border-radius: 14px;
  color: var(--hg-navy);
  padding: 18px 20px;
  text-decoration: none;
}

.contact-methods span {
  color: var(--hg-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-form-card {
  border: 1px solid #e1e9f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(13, 42, 79, 0.09);
  padding: clamp(25px, 4vw, 42px);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hg-form__grid {
    grid-template-columns: 1fr;
  }

  .hg-field--full {
    grid-column: auto;
  }

  .hg-modal__panel {
    padding: 30px 20px 24px;
  }
}

/* Keep required markers beside their website quote labels. */
.hg-form--website-quote .hg-field {
  display: block;
}

.hg-form--website-quote .hg-field[hidden] {
  display: none;
}

.hg-form--website-quote .hg-field > span[aria-hidden="true"] {
  display: inline;
  margin-left: 2px;
}

.hg-form--website-quote .hg-field > input,
.hg-form--website-quote .hg-field > select,
.hg-form--website-quote .hg-field > textarea {
  display: block;
  margin-top: 8px;
}

/* Focused invoicing software page. */
.invoice-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #071a31 0%, #08364a 60%, #064941 100%);
  color: #fff;
}

.invoice-hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -330px;
  bottom: -420px;
  border: 1px solid rgba(94,225,184,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(94,225,184,.025), 0 0 0 170px rgba(94,225,184,.018);
}

.invoice-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(480px,.9fr);
  gap: clamp(55px,7vw,105px);
  align-items: center;
  min-height: 670px;
  padding-block: 88px;
}

.invoice-hero .eyebrow { color: #65e1ba; }
.invoice-hero h1 { max-width: 760px; margin: 0 0 24px; color: #fff; font-size: clamp(3rem,5.2vw,5rem); line-height: 1.04; letter-spacing: -.025em; }
.invoice-hero__lead { max-width: 680px; margin: 0 0 30px; color: #d5e5eb; font-size: 1.13rem; line-height: 1.75; }
.invoice-hero .button--ghost-light { border-color: rgba(255,255,255,.48); color: #fff; }
.invoice-hero__signals { display: flex; flex-wrap: wrap; gap: 14px 25px; margin: 32px 0 0; padding: 0; list-style: none; }
.invoice-hero__signals li { position: relative; padding-left: 18px; color: #d9e8ec; font-size: .84rem; font-weight: 750; }
.invoice-hero__signals li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: #61e2ba; box-shadow: 0 0 0 4px rgba(97,226,186,.12); }

.invoice-dashboard { overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 22px; background: linear-gradient(155deg,rgba(255,255,255,.1),rgba(0,186,127,.035)); box-shadow: 0 34px 75px rgba(0,7,17,.27); }
.invoice-dashboard__top { display: flex; align-items: center; justify-content: space-between; height: 52px; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); padding: 0 18px; }
.invoice-dashboard__top span { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: .65rem; letter-spacing: .08em; }
.invoice-dashboard__top span i { width: 18px; height: 18px; border-radius: 6px; background: linear-gradient(135deg,#00ba7f 0 50%,#3972c5 50% 100%); transform: rotate(45deg); }
.invoice-dashboard__top > em { width: 70px; height: 20px; border-radius: 999px; background: rgba(255,255,255,.08); }
.invoice-dashboard__body { display: grid; grid-template-columns: 54px 1fr; min-height: 370px; }
.invoice-dashboard__body aside { display: grid; align-content: start; justify-items: center; gap: 15px; border-right: 1px solid rgba(255,255,255,.08); padding-top: 25px; }
.invoice-dashboard__body aside i { width: 21px; height: 7px; border-radius: 99px; background: rgba(255,255,255,.18); }
.invoice-dashboard__body aside i:first-child { height: 21px; border-radius: 7px; background: rgba(91,224,174,.28); }
.invoice-dashboard__content { min-width: 0; padding: 28px 24px 24px; }
.invoice-dashboard__heading { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.invoice-dashboard__heading span { display: grid; }
.invoice-dashboard__heading small { color: rgba(255,255,255,.52); font-size: .58rem; }
.invoice-dashboard__heading strong { color: #fff; font-size: 1rem; }
.invoice-dashboard__heading > b { border-radius: 999px; background: #00ba7f; color: #fff; font-size: .58rem; padding: 9px 12px; }
.invoice-dashboard__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 24px 0 18px; }
.invoice-dashboard__stats span { display: grid; gap: 4px; border: 1px solid rgba(255,255,255,.09); border-radius: 11px; background: rgba(255,255,255,.05); padding: 13px; }
.invoice-dashboard__stats small { color: rgba(255,255,255,.52); font-size: .52rem; }
.invoice-dashboard__stats strong { color: #fff; font-size: .77rem; }
.invoice-dashboard__table { display: grid; gap: 8px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; background: rgba(3,17,30,.23); padding: 15px; }
.invoice-dashboard__table > b { margin-bottom: 4px; color: #fff; font-size: .67rem; }
.invoice-dashboard__table span { display: grid; grid-template-columns: 65px 1fr 52px; gap: 8px; align-items: center; border-top: 1px solid rgba(255,255,255,.07); padding-top: 8px; font-size: .53rem; }
.invoice-dashboard__table i { color: rgba(255,255,255,.57); font-style: normal; }
.invoice-dashboard__table em { overflow: hidden; color: rgba(255,255,255,.76); font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.invoice-dashboard__table strong { border-radius: 999px; background: rgba(91,224,174,.13); color: #65e1ba; font-size: .49rem; padding: 4px 5px; text-align: center; }
.invoice-dashboard__table span:last-child strong { background: rgba(255,171,100,.12); color: #ffc18d; }

.invoice-steps { border-bottom: 1px solid var(--hg-line); background: #fff; }
.invoice-steps__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.invoice-steps article { display: grid; grid-template-columns: 39px 1fr; gap: 14px; align-items: center; padding: 28px 30px; }
.invoice-steps article + article { border-left: 1px solid var(--hg-line); }
.invoice-steps article > span { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; background: #e3f8f1; color: #008d68; font-size: .75rem; font-weight: 850; }
.invoice-steps strong { color: var(--hg-ink); font-size: .9rem; }
.invoice-steps p { margin: 2px 0 0; color: var(--hg-muted); font-size: .77rem; }

.invoice-benefits { background: #fff; }
.invoice-feature-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; }
.invoice-feature { display: grid; grid-template-columns: 48px 1fr; gap: 16px; border: 1px solid #dce7e4; border-radius: 17px; background: #fbfdfd; padding: 24px; }
.invoice-feature > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; background: #e5f8f2; color: #008d68; }
.invoice-feature svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.invoice-feature h3 { margin: 1px 0 7px; font-size: 1.02rem; }
.invoice-feature p { margin: 0; color: var(--hg-muted); font-size: .84rem; line-height: 1.58; }

.invoice-audience { background: #f0f7f5; }
.invoice-audience__grid { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); gap: clamp(55px,8vw,120px); align-items: center; }
.invoice-audience__grid h2 { margin-top: 0; font-size: clamp(2.2rem,4vw,3.65rem); line-height: 1.04; }
.invoice-audience__grid > div > p:not(.eyebrow) { color: var(--hg-muted); line-height: 1.75; }
.invoice-audience__grid > ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.invoice-audience__grid li { display: grid; gap: 4px; border: 1px solid #d7e5e2; border-radius: 14px; background: #fff; padding: 20px; }
.invoice-audience__grid li strong { color: var(--hg-ink); font-size: .9rem; }
.invoice-audience__grid li span { color: var(--hg-muted); font-size: .8rem; line-height: 1.5; }

.invoice-pricing { background: #081d35; color: #fff; }
.invoice-pricing__layout { display: grid; grid-template-columns: minmax(300px,.82fr) minmax(500px,1.18fr); gap: clamp(55px,8vw,105px); align-items: center; }
.invoice-pricing .eyebrow { color: #65e1ba; }
.invoice-pricing h2 { margin-top: 0; color: #fff; font-size: clamp(2.3rem,4vw,3.8rem); line-height: 1.04; }
.invoice-pricing__copy > p:not(.eyebrow) { color: #c5d6e2; line-height: 1.72; }
.invoice-pricing__copy ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 20px; margin: 27px 0 0; padding: 0; list-style: none; }
.invoice-pricing__copy li { position: relative; padding-left: 23px; color: #d9e5ed; font-size: .82rem; }
.invoice-pricing__copy li::before { content: "✓"; position: absolute; left: 0; color: #65e1ba; font-weight: 900; }
.invoice-price-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.invoice-price-option { position: relative; display: flex; flex-direction: column; align-items: flex-start; min-height: 275px; border: 1px solid rgba(255,255,255,.16); border-radius: 19px; background: rgba(255,255,255,.055); color: #fff; cursor: pointer; font: inherit; padding: 29px; text-align: left; transition: transform .2s ease,border-color .2s ease,background .2s ease; }
.invoice-price-option:hover { border-color: rgba(101,225,186,.65); background: rgba(255,255,255,.08); transform: translateY(-3px); }
.invoice-price-option--best { border-color: #54d6ac; background: rgba(0,186,127,.12); }
.invoice-price-option > i { position: absolute; top: 0; right: 20px; border-radius: 999px; background: #65e1ba; color: #07302b; font-size: .61rem; font-style: normal; font-weight: 850; letter-spacing: .06em; padding: 6px 10px; text-transform: uppercase; transform: translateY(-50%); }
.invoice-price-option > span { color: #c8d8e4; font-size: .78rem; font-weight: 750; }
.invoice-price-option > strong { display: flex; align-items: baseline; gap: 2px; margin: 10px 0 1px; color: #fff; font-size: 3.1rem; line-height: 1; letter-spacing: -.06em; }
.invoice-price-option > strong small { font-size: 1rem; letter-spacing: 0; }
.invoice-price-option > em { color: #aebfcd; font-size: .72rem; font-style: normal; }
.invoice-price-option > b { margin-top: auto; color: #65e1ba; font-size: .8rem; }
.invoice-price-options > p { grid-column: 1/-1; margin: 3px 0 0; color: #aebfcd; font-size: .72rem; text-align: center; }

.invoice-setup { background: #f3f8f7; }
.invoice-setup__layout { display: grid; grid-template-columns: minmax(280px,.65fr) minmax(560px,1.35fr); gap: clamp(50px,8vw,100px); align-items: start; }
.invoice-setup__intro { position: sticky; top: 125px; }
.invoice-setup__intro h2 { margin-top: 0; font-size: clamp(2.2rem,4vw,3.7rem); line-height: 1.04; }
.invoice-setup__intro > p:not(.eyebrow) { color: var(--hg-muted); line-height: 1.72; }
.invoice-setup__intro > div { margin-top: 30px; border: 1px solid #d8e5e2; border-radius: 15px; background: #fff; padding: 21px; }
.invoice-setup__intro > div strong { font-size: .9rem; }
.invoice-setup__intro ol { display: grid; gap: 9px; margin: 13px 0 0; padding-left: 21px; color: var(--hg-muted); font-size: .82rem; }
.invoice-setup__form-card { border: 1px solid #dce7e4; border-radius: 21px; background: #fff; box-shadow: 0 20px 55px rgba(8,40,55,.08); padding: clamp(25px,4vw,42px); }
.hg-form--invoice-setup { display: grid; gap: 24px; }
.hg-form--invoice-setup .hg-form__grid { gap: 17px 20px; }
.hg-field__label { color: var(--hg-ink); font-size: .9rem; font-weight: 750; }
.hg-field__label i { margin-left: 2px; color: #008d68; font-style: normal; }
.hg-form--invoice-setup .hg-choice-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.hg-form--invoice-setup .hg-form__privacy { margin: -10px 0 0; text-align: center; }
.invoice-faq { background: #f7f9f9; }

@media (max-width: 1080px) {
  .invoice-hero__grid { grid-template-columns: minmax(0,1fr) minmax(400px,.78fr); }
  .invoice-feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .invoice-pricing__layout { grid-template-columns: 1fr; }
  .invoice-pricing__copy { max-width: 760px; }
}

@media (max-width: 900px) {
  .invoice-hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 75px; }
  .invoice-hero__content { max-width: 760px; }
  .invoice-hero__visual { max-width: 650px; }
  .invoice-audience__grid,
  .invoice-setup__layout { grid-template-columns: 1fr; }
  .invoice-setup__intro { position: static; max-width: 680px; }
}

@media (max-width: 680px) {
  .invoice-hero h1 { font-size: clamp(2.7rem,12vw,4.2rem); }
  .invoice-hero__visual { display: none; }
  .invoice-steps__grid,
  .invoice-feature-grid,
  .invoice-audience__grid > ul,
  .invoice-price-options { grid-template-columns: 1fr; }
  .invoice-steps article + article { border-top: 1px solid var(--hg-line); border-left: 0; }
  .invoice-pricing__copy ul { grid-template-columns: 1fr; }
  .invoice-price-option { min-height: 230px; }
  .invoice-price-options > p { grid-column: auto; }
  .invoice-setup__form-card { padding: 24px 18px; }
  .hg-form--invoice-setup .hg-choice-grid { grid-template-columns: 1fr; }
}

/* Redesigned Contact page. */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg,#071a31 0%,#08364a 62%,#064941 100%);
  color: #fff;
}

.contact-hero::before,
.contact-hero::after { content: ""; position: absolute; border: 1px solid rgba(96,226,187,.13); border-radius: 50%; }
.contact-hero::before { width: 580px; height: 580px; top: -420px; left: -160px; }
.contact-hero::after { width: 470px; height: 470px; right: -300px; bottom: -330px; box-shadow: 0 0 0 75px rgba(96,226,187,.025); }
.contact-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.78fr); gap: clamp(55px,8vw,115px); align-items: center; min-height: 610px; padding-block: 82px; }
.contact-hero .eyebrow { color: #65e1ba; }
.contact-hero__content h1 { max-width: 830px; margin: 0 0 24px; color: #fff; font-size: clamp(3rem,5.3vw,5rem); line-height: 1.04; letter-spacing: -.025em; }
.contact-hero__content > p:not(.eyebrow) { max-width: 760px; color: #d1e1e8; font-size: 1.08rem; line-height: 1.75; }
.contact-hero__content > ul { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 29px 0 0; padding: 0; list-style: none; }
.contact-hero__content > ul li { position: relative; padding-left: 18px; color: #d9e7ec; font-size: .82rem; font-weight: 730; }
.contact-hero__content > ul li::before { content: ""; position: absolute; left: 0; top: .48em; width: 7px; height: 7px; border-radius: 50%; background: #65e1ba; box-shadow: 0 0 0 4px rgba(101,225,186,.12); }
.contact-hero__panel { border: 1px solid rgba(255,255,255,.15); border-radius: 21px; background: linear-gradient(150deg,rgba(255,255,255,.1),rgba(255,255,255,.045)); box-shadow: 0 28px 70px rgba(0,7,17,.24); padding: 31px; }
.contact-hero__panel h2 { margin: 0 0 25px; color: #fff; font-size: 1.65rem; }
.contact-hero__panel > a { display: grid; grid-template-columns: 44px 1fr 24px; gap: 13px; align-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(3,17,30,.21); color: #fff; padding: 15px; text-decoration: none; }
.contact-hero__panel > a + a { margin-top: 10px; }
.contact-hero__panel > a > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: rgba(101,225,186,.13); color: #65e1ba; }
.contact-hero__panel .header-action__svg { width: 21px; height: 21px; }
.contact-hero__panel a div { display: grid; min-width: 0; }
.contact-hero__panel a small { color: rgba(255,255,255,.56); font-size: .66rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.contact-hero__panel a strong { overflow: hidden; font-size: .9rem; text-overflow: ellipsis; white-space: nowrap; }
.contact-hero__panel a > b { color: #65e1ba; }
.contact-hero__availability { display: grid; grid-template-columns: 10px 1fr; gap: 11px; align-items: start; margin-top: 22px; }
.contact-hero__availability > i { width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: #65e1ba; box-shadow: 0 0 0 4px rgba(101,225,186,.11); }
.contact-hero__availability span { display: grid; }
.contact-hero__availability strong { color: #fff; font-size: .78rem; }
.contact-hero__availability small { color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.5; }

.contact-enquiry { background: #f4f8f7; }
.contact-enquiry__layout { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(570px,1.28fr); gap: clamp(55px,8vw,110px); align-items: start; }
.contact-enquiry__guide { position: sticky; top: 125px; }
.contact-enquiry__guide h2 { margin-top: 0; font-size: clamp(2.35rem,4vw,3.8rem); line-height: 1.04; }
.contact-enquiry__guide > p:not(.eyebrow) { color: var(--hg-muted); line-height: 1.72; }
.contact-topic-list { display: grid; gap: 10px; margin-top: 28px; }
.contact-topic-list article { display: grid; grid-template-columns: 39px 1fr; gap: 13px; border: 1px solid #d9e5e2; border-radius: 13px; background: #fff; padding: 16px; }
.contact-topic-list article > span { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 10px; background: #e5f8f2; color: #008d68; font-size: .68rem; font-weight: 850; }
.contact-topic-list strong { color: var(--hg-ink); font-size: .86rem; }
.contact-topic-list p { margin: 2px 0 0; color: var(--hg-muted); font-size: .74rem; line-height: 1.5; }
.contact-enquiry__client { display: flex; justify-content: space-between; gap: 15px; margin-top: 19px; border-radius: 11px; background: #081d35; color: #fff; padding: 14px 16px; font-size: .75rem; }
.contact-enquiry__client a { color: #65e1ba; font-weight: 800; text-decoration: none; white-space: nowrap; }
.contact-enquiry__form-card { border: 1px solid #dce7e4; border-radius: 22px; background: #fff; box-shadow: 0 22px 60px rgba(8,40,55,.09); padding: clamp(27px,4vw,44px); }
.contact-enquiry__form-heading { margin-bottom: 29px; }
.contact-enquiry__form-heading h2 { margin: 0 0 8px; font-size: clamp(1.8rem,3vw,2.5rem); }
.contact-enquiry__form-heading > p:last-child { margin: 0; color: var(--hg-muted); font-size: .88rem; }
.hg-form--contact { display: grid; gap: 21px; }
.hg-form--contact .hg-form__grid { gap: 17px 20px; }
.hg-form--contact .hg-form__privacy { margin: -9px 0 0; text-align: center; }
.hg-form--contact textarea { min-height: 145px; }

.contact-location { border-top: 1px solid #dce7e4; background: #fff; }
.contact-location__inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding-block: 27px; }
.contact-location__inner > div { display: grid; }
.contact-location__inner span { color: #008d68; font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-location__inner strong { color: var(--hg-ink); font-size: .88rem; }
.contact-location__inner p { max-width: 520px; margin: 0; color: var(--hg-muted); font-size: .76rem; text-align: right; }

@media (max-width: 980px) {
  .contact-hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 74px; }
  .contact-hero__content { max-width: 780px; }
  .contact-hero__panel { max-width: 620px; }
  .contact-enquiry__layout { grid-template-columns: 1fr; }
  .contact-enquiry__guide { position: static; max-width: 720px; }
  .contact-topic-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 600px) {
  .contact-hero__grid { padding-block: 64px; }
  .contact-hero__content h1 { font-size: clamp(2.7rem,12vw,4.1rem); }
  .contact-hero__content > ul { display: grid; }
  .contact-hero__panel { padding: 24px 18px; }
  .contact-topic-list { grid-template-columns: 1fr; }
  .contact-enquiry__client { align-items: flex-start; flex-direction: column; }
  .contact-enquiry__form-card { padding: 25px 18px; }
  .contact-location__inner { align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact-location__inner p { text-align: left; }
}

/* About and policy pages. */
.info-page-new { background: #f4f8f7; }
.info-hero,
.policy-hero { position: relative; overflow: hidden; background: linear-gradient(120deg,#071a31 0%,#083a4a 64%,#064a46 100%); color: #fff; }
.info-hero::before,
.info-hero::after,
.policy-hero::before,
.policy-hero::after { content: ""; position: absolute; border: 1px solid rgba(101,225,186,.13); border-radius: 50%; pointer-events: none; }
.info-hero::before,
.policy-hero::before { width: 570px; height: 570px; top: -420px; left: -145px; }
.info-hero::after,
.policy-hero::after { width: 430px; height: 430px; right: -265px; bottom: -320px; box-shadow: 0 0 0 70px rgba(101,225,186,.025); }
.info-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(370px,.75fr); gap: clamp(60px,9vw,130px); align-items: center; min-height: 610px; padding-block: 86px; }
.info-hero .eyebrow,
.policy-hero .eyebrow { color: #65e1ba; }
.info-hero__content h1 { max-width: 840px; margin: 0 0 25px; color: #fff; font-size: clamp(3.2rem,5.2vw,5rem); line-height: 1.04; letter-spacing: -.025em; }
.info-hero__content > p:not(.eyebrow) { max-width: 770px; color: #d1e1e8; font-size: 1.06rem; line-height: 1.75; }
.info-hero__content .button-row { margin-top: 30px; }
.info-hero .button--outline { color: #fff; border-color: rgba(255,255,255,.55); }
.info-hero__principles { display: grid; gap: 10px; }
.info-hero__principles > div { display: grid; grid-template-columns: 38px 1fr; gap: 2px 13px; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.055); }
.info-hero__principles span { grid-row: 1 / 3; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(101,225,186,.14); color: #65e1ba; font-size: .67rem; font-weight: 850; }
.info-hero__principles strong { color: #fff; font-size: .86rem; }
.info-hero__principles small { color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.5; }

.about-native-content { background: #fff; }
.about-page-new .hostgenie-about { max-width: none; padding: 0; color: var(--hg-muted); font-family: inherit; line-height: 1.72; }
.about-page-new .hostgenie-about * { box-sizing: border-box; }
.about-page-new .about-section { padding-block: clamp(70px,8vw,105px); margin: 0; border-bottom: 1px solid var(--hg-line); }
.about-page-new .section-header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.about-page-new .section-header h2 { margin: 0; color: var(--hg-ink); font-size: clamp(2.2rem,4vw,3.55rem); line-height: 1.05; letter-spacing: -.02em; }
.about-page-new .section-header p { margin: 14px 0 0; color: var(--hg-muted); font-size: .98rem; }
.about-page-new .who-we-are { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.65fr); gap: clamp(45px,7vw,90px); align-items: center; max-width: 1060px; margin: 0 auto; }
.about-page-new .who-content p { margin: 0; font-size: 1rem; line-height: 1.8; }
.about-page-new .who-content p + p { margin-top: 17px; }
.about-page-new .who-visual { padding: 45px; border-radius: 20px; background: linear-gradient(145deg,#0a2138,#07564d); color: #fff; text-align: left; }
.about-page-new .stat-number { color: #65e1ba; font-size: clamp(3.4rem,7vw,5.7rem); font-weight: 850; line-height: .9; letter-spacing: -.06em; }
.about-page-new .stat-label { margin-top: 17px; font-size: 1rem; font-weight: 780; }
.about-page-new .services-grid,
.about-page-new .why-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.about-page-new .service-card,
.about-page-new .why-card { min-height: 0; padding: 27px; border: 1px solid #dce7e4; border-radius: 16px; background: #fff; box-shadow: none; text-align: left; transform: none; }
.about-page-new .service-icon,
.about-page-new .why-icon { display: grid; width: 43px; height: 43px; place-items: center; margin: 0 0 20px; border-radius: 11px; background: #e5f8f2; font-size: 1.15rem; }
.about-page-new .service-card h3,
.about-page-new .why-card h3 { margin: 0 0 8px; color: var(--hg-ink); font-size: 1.02rem; }
.about-page-new .service-card p,
.about-page-new .why-card p { margin: 0; color: var(--hg-muted); font-size: .83rem; line-height: 1.65; }
.about-page-new .mission-box { max-width: 1060px; padding: clamp(29px,5vw,54px); margin: 55px auto 0; border: 0; border-radius: 19px; background: #eef8f5; }
.about-page-new .mission-box h2 { margin: 0 0 15px; color: var(--hg-ink); font-size: 1.7rem; }
.about-page-new .mission-box p { margin: 0 0 12px; }
.about-page-new .mission-box ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 28px; padding: 0; margin: 21px 0 0 !important; list-style: none; }
.about-page-new .mission-box li { position: relative; padding-left: 18px; color: var(--hg-ink); font-size: .84rem; }
.about-page-new .mission-box li::before { content: ""; position: absolute; top: .58em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: #00b985; }
.about-page-new .approach-content { max-width: 920px; padding: 0; margin: 0 auto; border: 0; border-radius: 0; background: transparent; box-shadow: none; font-size: 1.02rem; }
.about-page-new .approach-content p { margin: 0; }
.about-page-new .approach-content p + p { margin-top: 18px; }
.about-page-new .cta-section,
.about-page-new .tagline { display: none; }
.info-contact-strip { padding-block: 55px; background: #eef8f5; }
.info-contact-strip__inner { display: flex; justify-content: space-between; gap: 45px; align-items: center; }
.info-contact-strip h2 { max-width: 760px; margin: 0; font-size: clamp(2rem,3.8vw,3.25rem); line-height: 1.06; }
.info-contact-strip .eyebrow { margin-bottom: 11px; }
.info-contact-strip .button { flex: 0 0 auto; }

.policy-hero__inner { position: relative; z-index: 1; padding-block: clamp(76px,9vw,125px); }
.policy-hero h1 { max-width: 900px; margin: 0; color: #fff; font-size: clamp(3.2rem,6vw,5.7rem); line-height: 1.04; letter-spacing: -.025em; }
.policy-hero__inner > p:last-child { max-width: 720px; margin: 24px 0 0; color: #d1e1e8; font-size: 1.06rem; line-height: 1.75; }
.policy-body { padding-block: clamp(65px,8vw,105px); }
.policy-layout { display: grid; grid-template-columns: 250px minmax(0,760px); justify-content: center; gap: clamp(45px,7vw,90px); align-items: start; }
.policy-toc { position: sticky; top: 120px; }
.policy-toc__label { margin: 0 0 14px; color: var(--hg-ink); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.policy-toc nav { display: grid; border-top: 1px solid #d8e4e1; }
.policy-toc nav a { display: grid; grid-template-columns: 28px 1fr; gap: 8px; padding: 11px 0; border-bottom: 1px solid #d8e4e1; color: var(--hg-muted); font-size: .78rem; text-decoration: none; }
.policy-toc nav a span { color: #00956e; font-size: .67rem; font-weight: 850; }
.policy-toc nav a:hover,
.policy-toc nav a:focus-visible { color: var(--hg-ink); }
.policy-toc__help { padding: 19px; margin-top: 23px; border-radius: 13px; background: #092038; color: #fff; }
.policy-toc__help strong { font-size: .82rem; }
.policy-toc__help p { margin: 6px 0 12px; color: rgba(255,255,255,.62); font-size: .7rem; line-height: 1.55; }
.policy-toc__help a { color: #65e1ba; font-size: .72rem; font-weight: 800; text-decoration: none; }
.policy-document { padding: clamp(28px,5vw,55px); border: 1px solid #dce7e4; border-radius: 21px; background: #fff; box-shadow: 0 20px 55px rgba(8,40,55,.07); }
.policy-page-new .hostgenie-refund,
.policy-page-new .hostgenie-aup,
.policy-page-new .hostgenie-privacy,
.policy-page-new .hostgenie-terms { max-width: none; padding: 0; color: var(--hg-muted); font-family: inherit; line-height: 1.72; }
.policy-page-new .hostgenie-refund *,
.policy-page-new .hostgenie-aup *,
.policy-page-new .hostgenie-privacy *,
.policy-page-new .hostgenie-terms * { box-sizing: border-box; }
.policy-page-new .refund-header,
.policy-page-new .aup-header,
.policy-page-new .privacy-header,
.policy-page-new .terms-header { padding: 0 0 25px; margin: 0; border-bottom: 1px solid #dce7e4; }
.policy-page-new .last-updated { display: inline-flex; padding: 7px 11px; margin: 0; border-radius: 999px; background: #e7f7f2; color: #08795f; font-size: .7rem; }
.policy-page-new .policy-overview,
.policy-page-new .policy-intro,
.policy-page-new .welcome-box,
.policy-page-new .compliance-box { padding: 22px; margin: 27px 0 36px; border: 0; border-left: 3px solid #00b985; border-radius: 0 12px 12px 0; background: #eef8f5; color: var(--hg-ink); }
.policy-page-new .policy-overview p,
.policy-page-new .policy-intro p,
.policy-page-new .welcome-box p,
.policy-page-new .compliance-box p { margin: 0; }
.policy-page-new .refund-section,
.policy-page-new .aup-section,
.policy-page-new .privacy-section,
.policy-page-new .term-section { padding: 0 0 40px; margin: 0 0 40px; border-bottom: 1px solid #dce7e4; scroll-margin-top: 110px; }
.policy-page-new .refund-section:last-of-type,
.policy-page-new .aup-section:last-of-type,
.policy-page-new .privacy-section:last-of-type,
.policy-page-new .term-section:last-of-type { margin-bottom: 0; border-bottom: 0; }
.policy-page-new .section-title { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: center; margin: 0 0 22px; }
.policy-page-new .section-number { display: grid; width: 38px; height: 38px; place-items: center; margin: 0; border-radius: 10px; background: #00a978; color: #fff; font-size: .74rem; font-weight: 850; }
.policy-page-new .section-title h2 { margin: 0; color: var(--hg-ink); font-size: clamp(1.45rem,2.8vw,2rem); letter-spacing: -.025em; }
.policy-page-new .section-content { padding: 0; }
.policy-page-new .section-content p { margin: 0 0 15px; }
.policy-page-new .section-content ul { padding-left: 20px; margin: 0 0 22px; }
.policy-page-new .section-content li { margin-bottom: 9px; }
.policy-page-new .highlight-box,
.policy-page-new .warning-box,
.policy-page-new .legal-box { padding: 18px 20px; margin: 20px 0; border: 1px solid #cfe9e1; border-radius: 12px; background: #f3faf8; }
.policy-page-new .warning-box { border-color: #ead9b7; background: #fff9ed; }
.policy-page-new .legal-box { border-color: #cfdeee; background: #f2f7fc; }
.policy-page-new .highlight-box p,
.policy-page-new .warning-box p,
.policy-page-new .legal-box p { margin: 0; }
.policy-page-new .refund-process,
.policy-page-new .enforcement-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin: 23px 0; }
.policy-page-new .process-step,
.policy-page-new .enforcement-step { padding: 17px; border: 1px solid #dce7e4; border-radius: 12px; background: #f8fbfa; }
.policy-page-new .process-step h4 { display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: center; margin: 0 0 10px; color: var(--hg-ink); font-size: .82rem; }
.policy-page-new .step-number { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; background: #00a978; color: #fff; font-size: .66rem; }
.policy-page-new .process-step p,
.policy-page-new .enforcement-step p { margin: 0; font-size: .73rem; line-height: 1.55; }
.policy-page-new .prohibited-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 20px 0; }
.policy-page-new .prohibited-item,
.policy-page-new .abuse-item { padding: 18px; border: 1px solid #eadbdb; border-radius: 12px; background: #fff8f8; }
.policy-page-new .prohibited-item { position: relative; }
.policy-page-new .prohibited-item::before { content: ""; position: absolute; top: 20px; right: 18px; width: 6px; height: 6px; border-radius: 50%; background: #e97575; }
.policy-page-new .abuse-item { margin-bottom: 9px; border-color: #e9dfcc; background: #fffaf2; }
.policy-page-new .prohibited-item h4,
.policy-page-new .abuse-item h4,
.policy-page-new .enforcement-step h4 { margin: 0 0 7px; color: var(--hg-ink); font-size: .82rem; }
.policy-page-new .prohibited-item p,
.policy-page-new .abuse-item p { margin: 0; font-size: .74rem; line-height: 1.55; }
.policy-page-new .step-severity { display: inline-flex; padding: 4px 7px; margin: 0 0 9px; border-radius: 6px; background: #fff1cf; color: #8b5a00; font-size: .59rem; font-weight: 850; text-transform: uppercase; }
.policy-page-new .severity-high { background: #fee8e8; color: #a62929; }
.policy-page-new .contact-section,
.policy-page-new .contact-box { padding: 24px; margin-top: 20px; border-radius: 14px; background: #092038; color: #fff; }
.policy-page-new .contact-section h3,
.policy-page-new .contact-box h3 { margin: 0 0 17px; color: #fff; font-size: 1.2rem; }
.policy-page-new .contact-info { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; }
.policy-page-new .contact-item { min-width: 0; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.055); }
.policy-page-new .contact-item h4 { margin: 0 0 7px; color: #65e1ba; font-size: .74rem; }
.policy-page-new .contact-item p { margin: 0; color: rgba(255,255,255,.7); font-size: .74rem; }
.policy-page-new .contact-item a { color: #fff; font-weight: 750; text-decoration: none; }
.policy-page-new .hostgenie-refund > div:last-child,
.policy-page-new .hostgenie-aup > div:last-child,
.policy-page-new .hostgenie-privacy > div:last-child,
.policy-page-new .hostgenie-terms > div:last-child { color: var(--hg-muted) !important; }
.policy-page-new .rights-grid,
.policy-page-new .popia-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; margin: 20px 0; }
.policy-page-new .right-item,
.policy-page-new .popia-principle { padding: 18px; border: 1px solid #d6ebe4; border-radius: 12px; background: #f5faf8; }
.policy-page-new .right-item h4,
.policy-page-new .popia-principle h4 { margin: 0 0 8px; color: #08795f; font-size: .85rem; }
.policy-page-new .right-item p,
.policy-page-new .popia-principle p { margin: 0; font-size: .74rem; line-height: 1.55; }
.policy-page-new .popia-icon { margin-bottom: 8px; color: #00a978; font-size: 1.35rem; }
.policy-page-new .regulator-box { padding: 22px; margin: 22px 0; border: 1px solid #cfdeee; border-radius: 12px; background: #f2f7fc; }
.policy-page-new .regulator-box h4 { margin: 0 0 14px; color: var(--hg-ink); }
.policy-page-new .regulator-info { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.policy-page-new .regulator-item { min-width: 0; padding: 15px; border-left: 3px solid #4b6cb7; border-radius: 8px; background: #fff; font-size: .74rem; }

@media (max-width: 980px) {
  .info-hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 75px; }
  .info-hero__principles { max-width: 720px; grid-template-columns: repeat(3,minmax(0,1fr)); }
  .info-hero__principles > div { grid-template-columns: 34px 1fr; }
  .about-page-new .who-we-are { grid-template-columns: 1fr; }
  .about-page-new .services-grid,
  .about-page-new .why-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
  .policy-toc nav { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 25px; }
  .policy-toc__help { max-width: 430px; }
}

@media (max-width: 680px) {
  .info-hero__content h1,
  .policy-hero h1 { font-size: clamp(2.75rem,12vw,4rem); letter-spacing: -.015em; }
  .info-hero__principles { grid-template-columns: 1fr; }
  .about-page-new .services-grid,
  .about-page-new .why-grid,
  .about-page-new .mission-box ul { grid-template-columns: 1fr; }
  .about-page-new .service-card,
  .about-page-new .why-card { padding: 22px; }
  .info-contact-strip__inner { align-items: flex-start; flex-direction: column; }
  .policy-toc nav { grid-template-columns: 1fr; }
  .policy-document { padding: 25px 19px; border-radius: 16px; }
  .policy-page-new .refund-process,
  .policy-page-new .enforcement-steps,
  .policy-page-new .prohibited-grid,
  .policy-page-new .contact-info,
  .policy-page-new .rights-grid,
  .policy-page-new .popia-grid,
  .policy-page-new .regulator-info { grid-template-columns: 1fr; }
  .site-footer__legal { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .hero h1,
  .page-hero h1,
  .wd-hero h1,
  .domain-page-hero h1,
  .hosting-hero h1,
  .service-hero h1,
  .invoice-hero h1,
  .contact-hero__content h1,
  .info-hero__content h1,
  .policy-hero h1 {
    line-height: 1.06;
    letter-spacing: -0.015em;
  }
}
