.hosted-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 14, 38, 0.282) 0%, rgba(4, 20, 53, 0.234) 48%, rgba(3, 14, 38, 0.12) 100%),
    url("/images/about/hosted-server/hosted-server-data-center.png") center center / cover no-repeat,
    var(--navy);
}

.hosted-hero::before {
  position: absolute;
  inset: auto -14% -28% 38%;
  height: 62%;
  content: "";
  background: rgba(245, 155, 25, 0.16);
  transform: skewY(-8deg);
}

.hosted-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  gap: 54px;
  align-items: center;
  min-height: 710px;
  padding: 78px 0 94px;
}

.hosted-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: 3.115rem;
  font-weight: 900;
  line-height: 1.03;
}

.hosted-hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hosted-hero .hero-actions {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.hosted-hero .hero-actions .button {
  min-width: 0;
  min-height: 44px;
  padding: 9px 12px;
  gap: 7px;
  color: #f7f7f8;
  border: 2px solid #55555b;
  border-radius: 6px;
  background: linear-gradient(145deg, #242427, #111113);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-transform: none;
  transition:
    color 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.hosted-hero .hero-actions .button > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #ffd204;
  fill: currentColor;
}

.hosted-hero .hero-actions .button:hover,
.hosted-hero .hero-actions .button:focus-visible {
  color: #fff;
  border-color: #ffd204;
  outline: 0;
  background: linear-gradient(145deg, #2b2b2f, #171719);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.52),
    0 0 0 1px #ffd204,
    0 0 18px rgba(255, 210, 4, 0.3);
  transform: translateY(-3px);
}

.hosted-hero .hero-actions .button:focus-visible {
  outline: 3px solid rgba(255, 210, 4, 0.68);
  outline-offset: 3px;
}

.hosted-hero-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
}

.hosted-hero-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.data-center-panel {
  position: relative;
  width: min(100%, 520px);
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(4, 17, 44, 0.44);
}

.panel-top {
  position: absolute;
  top: 20px;
  left: 22px;
  display: flex;
  gap: 8px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.server-stack {
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 210px;
  display: grid;
  gap: 10px;
}

.server-stack span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(6, 27, 73, 0.84);
}

.server-stack i {
  width: 18px;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.server-stack i:first-child {
  width: 66px;
  background: var(--orange);
}

.data-center-panel img {
  position: relative;
  z-index: 2;
  width: min(72%, 300px);
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.28));
}

.secure-lines {
  position: absolute;
  inset: 54px auto auto 26px;
  width: 180px;
  display: grid;
  gap: 12px;
}

.secure-lines span {
  height: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
}

.secure-lines span:nth-child(2) {
  width: 72%;
}

.secure-lines span:nth-child(3) {
  width: 48%;
  background: rgba(245, 155, 25, 0.8);
}

.hosted-callout {
  position: absolute;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hosted-callout::before {
  width: 10px;
  height: 10px;
  margin-right: 8px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.hosted-callout.one {
  left: 7%;
  top: 15%;
}

.hosted-callout.two {
  right: 6%;
  top: 25%;
}

.hosted-callout.three {
  left: 8%;
  bottom: 15%;
}

.hosted-proof-band {
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--orange);
}

.hosted-proof-list {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 22px 0;
  list-style: none;
}

.hosted-proof-list li {
  min-height: 96px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 6px 0;
}

.hosted-proof-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #050505;
  border-radius: 6px;
  background: #ffd204;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.36);
}

.hosted-proof-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.hosted-proof-list strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hosted-proof-list span span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.4;
}

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

.hosted-proof-grid div {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hosted-proof-grid div:first-child {
  border-left: 0;
}

.hosted-proof-grid strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hosted-proof-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.privacy-section,
.software-section,
.faq-section {
  background: var(--soft);
}

.security-section,
.use-case-section {
  background: var(--white);
}

.split-layout,
.security-layout,
.software-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.hosted-list {
  margin-top: 26px;
}

.hosted-list li {
  color: var(--navy);
}

.hosted-list li::before {
  background: var(--orange);
}

.privacy-card,
.soc-card,
.software-media,
.security-grid article,
.software-card-grid a,
.use-case-grid a,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 28, 72, 0.08);
}

.privacy-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: center;
  padding: 34px;
  overflow: hidden;
  background: url("/images/about/hosted-server/hosted-server-data-center.png") center center / cover no-repeat;
}

.privacy-card > * {
  position: relative;
  z-index: 1;
}

.privacy-card > .privacy-card-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.privacy-card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--navy);
}

.privacy-card-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.privacy-card h3,
.security-grid h3,
.software-card-grid strong,
.use-case-grid strong,
.faq-list h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.16;
}

.privacy-card h3 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.privacy-card p,
.security-grid p,
.software-card-grid span,
.use-case-grid span,
.faq-list p {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-card p {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

/* Keep this photographic card above the shared black-theme surface rules. */
body.theme-black main .privacy-section .privacy-card {
  background: url("/images/about/hosted-server/hosted-server-data-center.png") center center / cover no-repeat;
}

body.theme-black main .privacy-section .privacy-card h3,
body.theme-black main .privacy-section .privacy-card p {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.soc-card {
  position: relative;
  min-height: 440px;
  display: grid;
  align-content: end;
  justify-items: stretch;
  padding: 24px;
  overflow: hidden;
  text-align: left;
}

.soc-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.78) 100%);
}

.soc-card > * {
  position: relative;
  z-index: 2;
}

.soc-card > .soc-card-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.soc-card-content {
  display: grid;
  gap: 14px;
}

.soc-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.soc-badge {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 210, 4, 0.5);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.soc-badge-image {
  width: 142px;
}

.soc-badge-image img {
  width: 100%;
  max-height: 52px;
  display: block;
  object-fit: contain;
}

.soc-badge-text {
  min-width: min(100%, 230px);
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #fff;
}

.soc-badge-text strong {
  color: #ffd204;
  font-size: 0.84rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.soc-badge-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.3;
}

.soc-card p {
  color: var(--muted);
  max-width: 420px;
  margin: 0;
}

body.theme-black main .security-section .soc-card p {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.98);
}

.security-grid,
.software-card-grid,
.use-case-grid,
.faq-list,
.hosted-faq-list {
  display: grid;
  gap: 14px;
}

.security-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.hosted-feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hosted-feature-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hosted-feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hosted-feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #050505;
  border: 1px solid rgba(255, 210, 4, 0.72);
  border-radius: 6px;
  background: #ffd204;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
}

.hosted-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hosted-feature-list strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.16;
}

body.theme-black main .hosted-feature-list strong {
  color: #fff;
}

.hosted-feature-list span span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

body.theme-black main .hosted-feature-list span span {
  color: rgba(255, 255, 255, 0.76);
}

.security-grid article {
  min-height: 156px;
  padding: 18px;
}

.security-grid span {
  display: block;
  margin-bottom: 12px;
  color: rgba(13, 44, 103, 0.18);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.software-card-grid {
  margin-top: 26px;
}

.software-card-grid a {
  min-height: 116px;
  display: block;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body.theme-black main .software-section .software-card-grid > a:hover,
body.theme-black main .software-section .software-card-grid > a:focus-visible {
  border-color: var(--orange);
  background: #252529;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 210, 4, 0.34);
  transform: translateY(-4px);
}

.software-card-grid a:hover,
.software-card-grid a:focus-visible,
.use-case-grid a:hover,
.use-case-grid a:focus-visible {
  border-color: rgba(245, 155, 25, 0.58);
  background: rgba(245, 155, 25, 0.08);
}

.software-media {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.94), rgba(255, 255, 255, 0.88)),
    var(--soft);
}

body.theme-black main .software-section .software-media {
  background: #050505;
}

.hosted-map-card {
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(28, 28, 31, 0.96), rgba(8, 8, 9, 0.98)),
    #050505;
}

.hosted-map-link {
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body.theme-black main .software-section .hosted-map-card {
  border-color: rgba(255, 210, 4, 0.22);
  background:
    linear-gradient(145deg, rgba(28, 28, 31, 0.96), rgba(8, 8, 9, 0.98)),
    #050505;
}

.hosted-map-link:hover,
.hosted-map-link:focus-visible {
  border-color: #ffd204;
  background:
    linear-gradient(145deg, rgba(36, 36, 39, 0.98), rgba(12, 12, 13, 0.99)),
    #050505;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.58),
    0 0 0 2px #ffd204,
    0 0 24px rgba(255, 210, 4, 0.34);
  transform: translateY(-4px);
}

.hosted-map-link:focus-visible {
  outline: 3px solid rgba(255, 210, 4, 0.68);
  outline-offset: 3px;
}

.hosted-map-image {
  width: 100%;
  max-height: 430px;
  display: block;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #f5f6f7;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hosted-map-link:hover .hosted-map-image,
.hosted-map-link:focus-visible .hosted-map-image {
  border-color: rgba(255, 210, 4, 0.68);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(255, 210, 4, 0.18);
  transform: scale(1.012);
}

.hosted-map-caption {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
  transition: color 180ms ease;
}

.hosted-map-link:hover .hosted-map-caption,
.hosted-map-link:focus-visible .hosted-map-caption {
  color: #ffd204;
}

.mototrax-img {
  width: 88%;
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(6, 27, 73, 0.16));
}

.software-group-img {
  position: absolute;
  left: 24px;
  bottom: 28px;
  width: 54%;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(6, 27, 73, 0.14));
}

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

.use-case-grid a {
  min-height: 190px;
  display: block;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body.theme-black main .use-case-section .use-case-grid > a:hover,
body.theme-black main .use-case-section .use-case-grid > a:focus-visible {
  border-color: var(--orange);
  background: #252529;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 210, 4, 0.34);
  transform: translateY(-4px);
}

.faq-layout {
  align-items: start;
}

.hosted-faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hosted-faq-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hosted-faq-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hosted-faq-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #050505;
  border: 1px solid rgba(255, 210, 4, 0.72);
  border-radius: 6px;
  background: #ffd204;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
}

.hosted-faq-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hosted-faq-list strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.18;
}

body.theme-black main .hosted-faq-list strong {
  color: #fff;
}

.hosted-faq-list span span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

body.theme-black main .hosted-faq-list span span {
  color: rgba(255, 255, 255, 0.76);
}

.faq-list article {
  padding: 22px;
}

.hosted-cta {
  background: var(--white);
}

@media (max-width: 1080px) {
  .hosted-hero-inner,
  .split-layout,
  .security-layout,
  .software-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hosted-hero-copy h1 {
  font-size: 2.8rem;
  }

  .hosted-proof-list,
  .hosted-proof-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hosted-proof-grid div:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .hosted-hero-inner {
    min-height: auto;
    padding: 56px 0 66px;
  }

  .hosted-hero-copy h1 {
  font-size: 2.03rem;
  }

  .hosted-hero-stage {
    min-height: 410px;
    padding: 18px;
  }

  .data-center-panel {
    min-height: 320px;
    padding: 22px;
  }

  .data-center-panel img {
    width: 62%;
  }

  .server-stack {
    right: 18px;
    bottom: 20px;
    width: 170px;
  }

  .secure-lines {
    width: 140px;
  }

  .hosted-callout {
    position: static;
    width: 100%;
    margin-top: 8px;
  }

  .hosted-proof-grid,
  .security-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .hosted-proof-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hosted-proof-grid div:first-child {
    border-top: 0;
  }

  .hosted-proof-list {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .hosted-proof-list li {
    min-height: auto;
  }

  .privacy-card,
  .soc-card,
  .software-media {
    min-height: 360px;
    padding: 22px;
  }

  .soc-card {
    min-height: 430px;
  }

  .soc-badge-row {
    gap: 10px;
  }

  .soc-badge-image {
    width: 132px;
  }

  .mototrax-img {
    width: 96%;
  }

  .software-group-img {
    left: 16px;
    bottom: 18px;
    width: 58%;
  }

  .hosted-map-image {
    max-height: 300px;
  }
}
