:root {
  color-scheme: dark;
  --bg: #071527;
  --bg-2: #0b2038;
  --panel: rgba(8, 31, 55, .82);
  --panel-solid: #0c2948;
  --blue: #1e6bff;
  --cyan: #2ee9ff;
  --mint: #45e0a2;
  --violet: #8b7cf6;
  --amber: #ffd166;
  --ink: #f2f8ff;
  --muted: #b8c9da;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
}
@font-face{font-family:vazir;src:url('/assets/Vazir-Medium.eot');src:url('/assets/Vazir-Medium.eot?#iefix') format('embedded-opentype'),url('/assets/Vazir-Medium.woff2') format('woff2'),url('/assets/Vazir-Medium.woff') format('woff')}
* {
  box-sizing: border-box;
}
h3 {font-weight: normal;}
body {
  margin: 0;
  font-family: vazir;
  background:
    radial-gradient(circle at 16% 16%, rgba(46, 233, 255, .18), transparent 23rem),
    radial-gradient(circle at 86% 12%, rgba(139, 124, 246, .15), transparent 24rem),
    linear-gradient(180deg, #05101f 0%, var(--bg) 46%, #081a2d 100%);
  color: var(--ink);
  line-height: 1.8;
  padding-top: 72px;
  font-weight: normal;
}

body.light-mode {
  --bg: #edf7ff;
  --bg-2: #dceeff;
  --panel: rgba(255, 255, 255, .86);
  --panel-solid: #ffffff;
  --ink: #071527;
  --muted: #446078;
  --line: rgba(7, 21, 39, .14);
  --shadow: 0 20px 60px rgba(30, 107, 255, .14);
  background:
    radial-gradient(circle at 16% 16%, rgba(46, 233, 255, .22), transparent 23rem),
    radial-gradient(circle at 86% 12%, rgba(139, 124, 246, .12), transparent 24rem),
    linear-gradient(180deg, #f6fbff 0%, #edf7ff 52%, #e8f3ff 100%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 16, 31, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
  font-size: 19px;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--violet));
  box-shadow: 0 10px 28px rgba(30, 107, 255, .36);
  color: #031225;
  font-weight: normal;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: normal;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 16, 31, .96);
  padding: 10px;
}

.mobile-menu a {
  display: block;
  padding: 12px;
  color: var(--muted);
}

.nav-links {
  color: var(--muted);
  font-size: 14px;
}

.header-phone {
  color: var(--cyan);
  font-weight: normal;
  white-space: nowrap;
}

.nav-links a:hover,
.footer-col a:hover {
  color: var(--cyan);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: normal;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(46, 233, 255, .18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--mint), var(--cyan) 42%, var(--blue));
  color: #031225;
  box-shadow: 0 14px 34px rgba(46, 233, 255, .2);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, .05);
  color: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 27, .16) 0%, rgba(5, 14, 27, .5) 43%, rgba(5, 14, 27, .94) 100%),
    url("assets/hosting-hero.png") center/cover no-repeat;
  z-index: -2;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--bg), transparent);
  z-index: -1;
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy,
.page-hero .hero-copy {
  width: min(650px, 100%);
  padding: 74px 0 110px;
  animation: fadeUp .8s ease both;
}

.page-hero .hero-copy {
  padding: 70px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.18;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.35;
}

.hero-copy p,
.section-head p,
.cta p,
.footer-brand p {
  color: var(--muted);
}

.hero-copy p {
  margin: 0 0 28px;
  font-size: clamp(16px, 2vw, 19px);
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.stat,
.feature,
.location-card,
.timeline-step,
.metric,
.faq-item,
.monitor-panel,
.monitor-item,
.testimonial,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.stat:hover,
.feature:hover,
.location-card:hover,
.timeline-step:hover,
.metric:hover,
.faq-item:hover,
.monitor-item:hover,
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 233, 255, .36);
  background: rgba(12, 41, 72, .92);
}

.stat {
  padding: 14px;
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  color: var(--amber);
  font-size: 24px;
  line-height: 1.2;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

section {
  padding: 72px 0;
  scroll-margin-top: 92px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  animation: fadeUp .7s ease both;
}

.section-head p {
  margin: 0;
  max-width: 48ch;
}

.locations-section,
.compare-section {
  background:
    radial-gradient(circle at 12% 28%, rgba(69, 224, 162, .1), transparent 22rem),
    linear-gradient(180deg, rgba(7, 21, 39, .94), rgba(8, 26, 45, .9));
}

.journey-section,
.faq-section,
.monitor-section,
.datacenter-section,
.testimonials-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(139, 124, 246, .12), transparent 24rem),
    linear-gradient(180deg, rgba(5, 16, 31, .5), rgba(7, 21, 39, .88));
}

.monitor-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  padding: 24px;
}

.monitor-visual {
  min-height: 240px;
  display: grid;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(46, 233, 255, .18);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(46, 233, 255, .11), rgba(139, 124, 246, .08)),
    rgba(255, 255, 255, .04);
}

.monitor-visual strong {
  font-size: clamp(24px, 4vw, 40px);
}

.monitor-visual p {
  margin: 0;
  color: var(--muted);
}

.pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(69, 224, 162, .55);
  animation: pulse 1.8s infinite;
}

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

.monitor-item {
  padding: 18px;
}

.monitor-item span {
  color: var(--muted);
  font-size: 13px;
}

.monitor-item strong {
  display: block;
  margin-top: 8px;
  color: var(--cyan);
  font-size: 28px;
}

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

.location-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.location-card.is-selected {
  border-color: rgba(69, 224, 162, .62);
  box-shadow: 0 24px 80px rgba(69, 224, 162, .14);
}

.location-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(46, 233, 255, .16), transparent 64%);
  pointer-events: none;
}

.featured-card {
  border-color: rgba(46, 233, 255, .48);
  background:
    radial-gradient(circle at 20% 0%, rgba(46, 233, 255, .14), transparent 16rem),
    var(--panel);
}

.location-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(69, 224, 162, .2), rgba(46, 233, 255, .16));
  color: var(--cyan);
  font-weight: normal;
}

.location-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.location-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

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

.clean-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #dcecff;
}

.clean-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
}

.card-buy {
  margin-top: 22px;
}

.host-choice {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  margin-top: 18px;
  border: 1px solid rgba(46, 233, 255, .26);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .045);
}

.host-choice strong {
  color: var(--ink);
  font-size: 18px;
}

.host-choice p {
  margin: 4px 0 0;
  color: var(--muted);
}

.host-choice .btn {
  min-width: min(360px, 100%);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 17, 34, .62);
}

.field {
  min-height: 58px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  outline: none;
}

.field::placeholder {
  color: #9eb4ce;
}

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

.feature {
  padding: 20px;
  animation: cardIn .65s ease both;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(46, 233, 255, .12);
  color: var(--cyan);
  margin-bottom: 12px;
  font-weight: normal;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: normal;
}

.feature p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.timeline-step {
  position: relative;
  padding: 22px;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(46, 233, 255, .12);
  color: var(--cyan);
  font-weight: normal;
}

.timeline-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: normal;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.usecase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 233, 255, .12), transparent 10rem),
    rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.usecase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 233, 255, .38);
  background: rgba(46, 233, 255, .08);
}

.usecase-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(46, 233, 255, .12);
  color: var(--cyan);
  font-weight: normal;
}

.usecase-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.usecase-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.usecase-card strong {
  color: var(--cyan);
  font-size: 14px;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 31, 55, .72);
  box-shadow: var(--shadow);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row span,
.compare-row strong {
  padding: 16px;
  background: rgba(255, 255, 255, .035);
}

.compare-head span {
  color: var(--cyan);
  font-weight: normal;
  background: rgba(46, 233, 255, .08);
}

.compare-row strong {
  color: #fff;
  font-weight: normal;
}

.mid-cta {
  padding: 46px 0;
}

.mid-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(46, 233, 255, .32);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(46, 233, 255, .13), rgba(139, 124, 246, .1));
}

.mid-cta h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

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

.preview-plan,
.trust-grid article,
.scenario-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.preview-plan {
  padding: 24px;
}

.preview-plan span {
  color: var(--cyan);
  font-weight: normal;
}

.preview-plan h3 {
  margin: 10px 0;
  font-size: 24px;
}

.preview-plan p,
.trust-grid p,
.scenario-card p {
  color: var(--muted);
}

.preview-plan p {
  margin: 0 0 18px;
}

.trust-section,
.scenario-section,
.plans-preview {
  background:
    radial-gradient(circle at 14% 18%, rgba(46, 233, 255, .09), transparent 20rem),
    linear-gradient(180deg, rgba(5, 16, 31, .45), rgba(7, 21, 39, .82));
}

.trust-grid article {
  padding: 20px;
}

.trust-grid strong {
  color: var(--cyan);
  font-size: 18px;
}

.scenario-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(69, 224, 162, .12), transparent 18rem),
    var(--panel);
}

.scenario-card h2 {
  margin-top: 0;
}

.metric-section {
  padding: 46px 0;
}

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

.metric {
  padding: 22px;
  text-align: center;
}

.metric strong {
  display: block;
  color: var(--amber);
  font-size: 34px;
  line-height: 1.2;
}

.metric span {
  color: var(--muted);
}

.map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 28% 45%, rgba(46, 233, 255, .18), transparent 12rem),
    radial-gradient(circle at 70% 50%, rgba(69, 224, 162, .14), transparent 13rem),
    linear-gradient(135deg, rgba(8, 31, 55, .78), rgba(5, 16, 31, .92));
}

.globe-wrap {
  display: grid;
  place-items: center;
}

.globe {
  position: relative;
  width: min(360px, 68vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .36), transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(46, 233, 255, .24), rgba(30, 107, 255, .14) 48%, rgba(5, 16, 31, .94) 74%),
    linear-gradient(135deg, rgba(46, 233, 255, .22), rgba(139, 124, 246, .16));
  border: 1px solid rgba(46, 233, 255, .3);
  box-shadow:
    inset -28px -30px 70px rgba(0, 0, 0, .38),
    inset 18px 18px 60px rgba(46, 233, 255, .12),
    0 0 70px rgba(46, 233, 255, .18);
  overflow: hidden;
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(46, 233, 255, .2);
  border-radius: 50%;
}

.globe::before {
  transform: scaleX(.36);
}

.globe::after {
  transform: scaleY(.36);
}

.globe-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(69, 224, 162, .22);
  border-radius: 50%;
}

.ring-one {
  transform: rotate(25deg) scaleX(.72);
}

.ring-two {
  transform: rotate(-35deg) scaleX(.58);
}

.ring-three {
  inset: 24%;
  transform: rotate(90deg) scaleX(.45);
}

.globe-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, .12) 48%, transparent 60%);
  animation: globeShine 4.5s ease-in-out infinite;
}

.globe-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(46, 233, 255, .12), 0 0 28px rgba(46, 233, 255, .8);
}

.globe-node b {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .72);
}

.node-netherlands b {
  right: auto;
  left: 24px;
}

.node-iran {
  right: 34%;
  top: 47%;
}

.node-netherlands {
  left: 32%;
  top: 34%;
}

.globe-info {
  display: grid;
  gap: 14px;
}

.globe-info article {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(46, 233, 255, .18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .045);
}

.globe-info span {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(46, 233, 255, .1);
}

.globe-info strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.globe-info small {
  color: var(--muted);
}

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

.faq-item {
  padding: 18px 20px;
}

.faq-item.is-open {
  border-color: rgba(46, 233, 255, .5);
  background: rgba(12, 41, 72, .96);
}

.faq-question {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font: inherit;
  font-weight: normal;
  text-align: right;
  outline: none;
}

.faq-question::before {
  content: "▸";
  color: var(--cyan);
  display: inline-block;
  margin-left: 8px;
  transition: transform .2s ease;
}

.faq-item.is-open .faq-question::before {
  transform: rotate(-90deg);
}

.faq-answer {
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 12px 0 0;
  color: #dcecff;
  font-size: 14px;
  line-height: 2;
}

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

.testimonial {
  padding: 22px;
}

.testimonial p {
  margin: 0 0 16px;
  color: #dcecff;
}

.testimonial strong {
  color: var(--cyan);
}

.cta {
  padding-bottom: 88px;
}

.cta-inner {
  grid-template-columns: 1fr auto;
  padding: 30px;
  border-color: rgba(46, 233, 255, .34);
  background: linear-gradient(135deg, rgba(46, 233, 255, .14), rgba(69, 224, 162, .1), rgba(139, 124, 246, .1));
}

.cta h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.cta p {
  margin: 8px 0 0;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(46, 233, 255, .22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .045);
}

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

.contact-form textarea {
  min-height: 120px;
  grid-column: 1 / -1;
  resize: vertical;
  padding-top: 14px;
}

.contact-form button {
  justify-self: start;
}

.footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(46, 233, 255, .14), transparent 22rem),
    linear-gradient(180deg, #071a30, #030b15);
  color: var(--muted);
  font-size: 14px;
}

.compact-footer {
  margin-top: -1px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 48px 0;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 34ch;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  border: 1px solid rgba(46, 233, 255, .24);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(46, 233, 255, .08);
  color: #dcecff;
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-newsletter {
  gap: 10px;
}

.footer-newsletter p {
  margin: 0;
}

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

.newsletter-form .field {
  min-height: 46px;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.floating-contact {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 233, 255, .36);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(69, 224, 162, .96), rgba(46, 233, 255, .96));
  color: #031225;
  font-weight: normal;
  box-shadow: 0 16px 38px rgba(46, 233, 255, .22);
  transition: transform .2s ease;
}

.floating-contact a:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.light-mode .site-header,
body.light-mode .mobile-menu {
  background: rgba(246, 251, 255, .9);
}

body.light-mode .hero::before,
body.light-mode .page-hero::before {
  background:
    linear-gradient(90deg, rgba(237, 247, 255, .1) 0%, rgba(237, 247, 255, .45) 45%, rgba(237, 247, 255, .92) 100%),
    url("assets/hosting-hero.png") center/cover no-repeat;
}

body.light-mode .testimonial p,
body.light-mode .clean-list li,
body.light-mode .globe-info strong,
body.light-mode .faq-answer p {
  color: var(--ink);
}

body.light-mode .usecase-card strong {
  color: var(--ink);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(69, 224, 162, .55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(69, 224, 162, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(69, 224, 162, 0);
  }
}

@keyframes globeShine {
  0%,
  100% {
    transform: translateX(-42%);
    opacity: .25;
  }
  50% {
    transform: translateX(42%);
    opacity: .7;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, 10px, 0);
  }
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .features-grid,
  .timeline,
  .metric-grid,
  .monitor-panel,
  .usecase-grid,
  .preview-plan-grid,
  .trust-grid,
  .testimonial-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .hero-copy,
  .page-hero .hero-copy {
    padding: 58px 0 82px;
  }

  .stats,
  .features-grid,
  .location-grid,
  .timeline,
  .metric-grid,
  .monitor-panel,
  .monitor-grid,
  .usecase-grid,
  .preview-plan-grid,
  .trust-grid,
  .testimonial-grid,
  .faq-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .section-head,
  .cta-inner,
  .mid-cta-inner,
  .host-choice,
  .scenario-card,
  .contact-form {
    grid-template-columns: 1fr;
    display: grid;
    align-items: stretch;
  }

  .map-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

}

@media (max-width: 560px) {
  .nav {
    min-height: 66px;
  }

  .brand {
    font-size: 16px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .nav-actions .btn {
    padding-inline: 12px;
  }

  .hero-actions,
  .nav-actions {
    width: auto;
  }

  .hero-actions .btn,
  .cta .btn,
  .card-buy {
    width: 100%;
  }

  section {
    padding: 52px 0;
  }

  .feature,
  .location-card,
  .timeline-step,
  .metric,
  .monitor-panel,
  .monitor-item,
  .usecase-card,
  .preview-plan,
  .trust-grid article,
  .testimonial,
  .map-card,
  .cta-inner,
  .mid-cta-inner,
  .scenario-card,
  .contact-form,
  .field {
    padding: 18px;
  }

  .floating-contact {
    left: 12px;
    bottom: 12px;
  }
}
