:root {
  --ink: #071421;
  --muted: #62707c;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --orange: #ff6500;
  --orange-dark: #e85600;
  --black: #000000;
  --charcoal: #191919;
  --charcoal-2: #252525;
  --blue: #0f6e9b;
  --blue-dark: #094766;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 42, 57, 0.08);
}

.brand img,
.footer-brand img {
  width: 148px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-nav a {
  padding: 10px 12px;
  text-decoration: none;
  color: var(--ink);
}

.primary-nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 220px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 101, 0, 0.09);
}

.nav-support {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 101, 0, 0.28);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  background: #ffffff;
  color: var(--orange-dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(80px, 12vw, 150px) clamp(18px, 4vw, 56px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(9, 32, 45, 0.78) 48%, rgba(255, 101, 0, 0.13));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: min(760px, 100%);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-heading h2,
.cpanel h2 {
  margin: 0;
  line-height: 1.06;
  font-weight: 900;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.hero p:not(.eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.split-heading h2,
.cpanel h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
}

.section-heading p:not(.eyebrow),
.split-heading p,
.cpanel-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.packages {
  background: var(--black);
  color: #ffffff;
}

.packages .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 0 30px;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid #242424;
  border-radius: 0;
  box-shadow: none;
}

.price-card.is-featured {
  border-color: #303030;
}

.plan-header {
  padding: 18px 22px 16px;
  background: var(--orange);
  color: #ffffff;
  text-align: center;
}

.plan-eyebrow {
  margin: 0 0 2px;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  justify-content: center;
  margin: 36px 30px 10px;
  color: #ffffff;
}

.price-note {
  margin: 0 30px 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.currency,
.cents {
  padding-top: 10px;
  font-weight: 900;
}

.amount {
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 900;
}

.term {
  align-self: flex-end;
  padding: 0 0 6px 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 64px 90px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.68);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.price-card .button {
  width: min(190px, calc(100% - 60px));
  min-height: 42px;
  margin: auto auto 18px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.feature-band {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.feature-item span {
  display: block;
  width: 34px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--orange);
}

.feature-item h3 {
  margin: 0 0 10px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.feature-item .button {
  margin-top: 18px;
}

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

.trusted {
  background: var(--soft);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.client-logo {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.client-logo img {
  max-height: 72px;
  object-fit: contain;
}

.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(16, 42, 57, 0.07);
}

.testimonial-card > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

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

.person span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cpanel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  background: var(--soft);
}

.cpanel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.cpanel-list article {
  padding-top: 18px;
  border-top: 3px solid var(--orange);
}

.cpanel-list h3 {
  margin: 0 0 8px;
}

.cpanel-list p {
  margin: 0;
  color: var(--muted);
}

.cpanel-media {
  position: relative;
}

.cpanel-logo {
  width: 122px;
  margin: 0 0 20px auto;
}

.dashboard {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: var(--charcoal-2);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.back-top {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 0;
  background: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
}

.vps-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(27, 27, 27, 0.8) 48%, rgba(255, 101, 0, 0.18));
}

.vps-intro {
  background: #ffffff;
}

.vps-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.vps-stats article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

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

.vps-stats strong {
  color: var(--orange);
  font-size: 1.65rem;
  line-height: 1;
}

.vps-stats span {
  margin-top: 10px;
  color: var(--muted);
}

.vps-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.vps-card {
  min-height: 570px;
}

.vps-card.is-featured {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.vps-specs {
  margin-bottom: 54px;
}

.vps-region-note {
  max-width: 1360px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-align: center;
}

.vps-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  background: #ffffff;
}

.vps-detail.is-alt {
  background: var(--soft);
}

.vps-detail-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
}

.vps-detail-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.vps-detail-list li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
}

.vps-detail-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.vps-feature-section {
  background: #ffffff;
}

.vps-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.vps-feature-cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.vps-feature-cards h3 {
  margin: 0 0 10px;
}

.vps-feature-cards p {
  margin: 0;
  color: var(--muted);
}

.vps-feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.vps-feature-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
}

.vps-faq {
  background: var(--soft);
}

.provider-network {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 101, 0, 0.24), transparent 32%),
    linear-gradient(135deg, #050505, #1f1f1f 58%, #111111);
}

.provider-network-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
}

.provider-network-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

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

.provider-card {
  display: grid;
  min-height: 132px;
  place-items: center;
  gap: 14px;
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.provider-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: invert(1);
}

.provider-card span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-align: center;
}

.vps-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
  background: var(--charcoal);
}

.vps-cta div {
  max-width: 760px;
}

.vps-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.vps-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  background: var(--soft);
}

.contact-intro {
  position: sticky;
  top: 104px;
}

.contact-intro h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.06;
  font-weight: 900;
}

.contact-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 42, 57, 0.08);
}

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

.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.14);
  outline: 0;
}

.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-alert p {
  margin: 0;
}

.form-alert p + p {
  margin-top: 8px;
}

.form-alert-success {
  border: 1px solid rgba(15, 110, 155, 0.24);
  background: rgba(15, 110, 155, 0.08);
  color: var(--blue-dark);
}

.form-alert-error {
  border: 1px solid rgba(255, 101, 0, 0.28);
  background: rgba(255, 101, 0, 0.08);
  color: var(--orange-dark);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

@media (max-width: 980px) {
  .pricing-grid,
  .feature-grid,
  .logo-grid,
  .vps-pricing-grid,
  .vps-stats,
  .vps-feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cpanel,
  .split-heading,
  .vps-cta,
  .vps-detail,
  .provider-network,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .vps-cta {
    display: grid;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown,
  .nav-dropdown-toggle {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    padding: 13px 10px;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 6px 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

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

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 10px;
  }

  .hero {
    min-height: 620px;
    padding-top: 92px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(9, 32, 45, 0.72));
  }

  .pricing-grid,
  .feature-grid,
  .logo-grid,
  .testimonial-grid,
  .cpanel-list,
  .vps-pricing-grid,
  .vps-stats,
  .vps-feature-cards,
  .form-grid,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .testimonial-card {
    padding: 0 0 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

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

@media (max-width: 440px) {
  .hero-actions,
  .hero-actions .button,
  .price-card .button {
    width: 100%;
  }

  .amount {
    font-size: 3.3rem;
  }

  .price {
    flex-wrap: wrap;
  }
}
