@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --azure-dark: #0f3b57;
  --azure-navy: #2b2f3a;
  --azure-blue: #0087ec;
  --azure-bright: #6cb9ff;
  --azure-cyan: #6cb9ff;
  --azure-mint: #6cb9ff;
  --white: #ffffff;
  --fog: #eef4fb;
  --shadow: 0 22px 48px rgba(15, 59, 87, 0.18);
  --card-border: rgba(15, 59, 87, 0.12);
}

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

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--azure-dark);
  background: #f4f7fb;
  line-height: 1.6;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body > *:not(#particles-js) {
  position: relative;
  z-index: 1;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  padding: 16px 0 0;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(13, 35, 64, 0.08);
  box-shadow: 0 16px 35px rgba(15, 45, 92, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-weight: 800;
  color: var(--azure-navy);
}

.logo img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--azure-navy);
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--azure-bright);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(120deg, #0f3b57, #0087ec);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 59, 87, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--azure-navy);
  display: block;
}

.hero {
  position: relative;
  padding: 40px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 18%, rgba(108, 185, 255, 0.35), transparent 56%),
    radial-gradient(circle at 85% 25%, rgba(108, 185, 255, 0.2), transparent 60%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(235, 245, 255, 0.7));
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(0, 135, 236, 0.2), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(108, 185, 255, 0.25), transparent 55%);
  opacity: 0.9;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
}

.hero-left {
  display: grid;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(15, 59, 87, 0.6);
}

.hero h1 {
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.05rem;
  max-width: 560px;
}

.hero-actions {
  margin: 28px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #0f3b57, #0087ec);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 59, 87, 0.35);
}

.btn.ghost {
  border-color: rgba(15, 45, 92, 0.18);
  color: var(--azure-navy);
  background: rgba(255, 255, 255, 0.6);
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 135, 236, 0.1);
  color: var(--azure-navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-right {
  display: grid;
  gap: 18px;
}

.hero-visual {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  padding: 36px;
  background: linear-gradient(145deg, rgba(15, 59, 87, 0.92), rgba(0, 135, 236, 0.75)),
    url("images/surface-97UNusNniMc-unsplash.jpg") center/cover;
  color: var(--white);
  min-height: 280px;
  display: grid;
  gap: 18px;
  align-content: center;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(108, 185, 255, 0.55), transparent 55%);
  opacity: 0.6;
}

.hero-visual img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.16);
  padding: 12px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.hero-caption {
  display: grid;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.hero-caption strong {
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 1.4rem;
}

.hero-caption span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

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

.hero-metrics div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.feature-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  color: var(--azure-dark);
}

.feature-strip article {
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.section {
  padding: 90px 0;
}

.angle-top {
  position: relative;
  background: var(--fog);
}

.angle-top::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--fog);
  transform: skewY(4deg);
}

.gradient-band {
  background: linear-gradient(140deg, rgba(18, 115, 214, 0.06), rgba(110, 203, 255, 0.18));
}

.angle-bottom {
  position: relative;
  background: var(--fog);
}

.angle-bottom::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--fog);
  transform: skewY(-4deg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
}

.delivery-layout .section-heading p:last-child {
  color: rgba(10, 27, 51, 0.7);
}

.section-heading h2,
.about-grid h2,
.contact-grid h2,
.support-grid h2 {
  font-family: "Nunito", "Segoe UI", sans-serif;
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--azure-dark);
}

.section-heading .eyebrow,
.about-grid .eyebrow,
.contact-grid .eyebrow,
.support-grid .eyebrow {
  color: var(--azure-blue);
}

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

.stat-card {
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.icon-card {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  font-weight: 600;
  text-align: center;
}

.icon-card img {
  width: 40px;
  height: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

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

.delivery-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.delivery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(120deg, var(--azure-blue), var(--azure-cyan));
}

.delivery-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(120deg, var(--azure-blue), var(--azure-cyan));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.support-band {
  background: linear-gradient(140deg, rgba(15, 45, 92, 0.05), rgba(18, 115, 214, 0.08));
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.support-cards {
  display: grid;
  gap: 16px;
}

.support-card {
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pricing-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--azure-bright);
  transform: translateY(-8px);
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--azure-blue);
}

.pricing-card ul {
  padding-left: 18px;
  margin: 16px 0 24px;
}

.badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--azure-mint);
  color: var(--azure-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
}

.pricing-note {
  margin-top: 22px;
  color: rgba(10, 27, 51, 0.7);
  text-align: center;
}

.contact-band {
  background: linear-gradient(140deg, rgba(18, 115, 214, 0.15), rgba(24, 211, 255, 0.2));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 45, 92, 0.12);
  font-family: inherit;
}

.form-status {
  margin: 0;
  font-weight: 600;
  color: var(--azure-blue);
  min-height: 1.2em;
}

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

.site-footer {
  padding: 26px 0 40px;
  background: var(--azure-dark);
  color: var(--white);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-weight: 500;
}

.anchor {
  position: relative;
  top: -110px;
  height: 0;
  visibility: hidden;
}

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

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

@media (max-width: 980px) {
  .hero-layout,
  .about-grid,
  .support-grid,
  .contact-grid,
  .delivery-layout {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: 20px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    right: 24px;
    top: 96px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    color: var(--white);
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 24px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .logo img {
    width: 72px;
    height: 72px;
  }

  .hero-visual {
    padding: 28px;
  }
}

/* Neon override */
:root {
  --azure-dark: #e9f4ff;
  --azure-navy: #d8f0ff;
  --azure-blue: #18c7ff;
  --azure-bright: #7dff2f;
  --azure-cyan: #2bffd2;
  --azure-mint: #ff2bd6;
  --white: #0b1222;
  --fog: #0b1326;
  --shadow: 0 30px 80px rgba(3, 6, 18, 0.6);
  --card-border: rgba(24, 199, 255, 0.35);
}

body {
  color: #e9f4ff;
  background: radial-gradient(circle at 12% 12%, rgba(24, 199, 255, 0.45), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(43, 255, 210, 0.38), transparent 55%),
    radial-gradient(circle at 60% 85%, rgba(255, 43, 214, 0.35), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(125, 255, 47, 0.28), transparent 40%),
    #050812;
}

.nav-wrap {
  background: linear-gradient(120deg, rgba(7, 12, 24, 0.96), rgba(10, 18, 38, 0.9));
  border: 1px solid rgba(24, 199, 255, 0.55);
  box-shadow: 0 22px 50px rgba(24, 199, 255, 0.35), 0 0 80px rgba(125, 255, 47, 0.18),
    0 0 60px rgba(255, 43, 214, 0.25);
  backdrop-filter: blur(14px);
}

.nav-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(24, 199, 255, 0.65), rgba(43, 255, 210, 0.55), rgba(255, 43, 214, 0.5));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.logo {
  color: #e9f4ff;
  gap: 14px;
}

.nav {
  color: #d8f0ff;
}

.nav a::after {
  background: linear-gradient(90deg, #18c7ff, #2bffd2);
}

.nav a {
  color: rgba(233, 244, 255, 0.85);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(43, 255, 210, 0.4);
}

.nav a.nav-cta {
  color: #000000;
  text-shadow: none;
}

.nav a.nav-cta:hover {
  color: #000000;
  text-shadow: none;
}

.nav-cta {
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 60%);
  opacity: 0.7;
  mix-blend-mode: screen;
}

.nav-cta {
  background: linear-gradient(120deg, #14b8ee, #1fe6c6 55%, #62e11f);
  box-shadow: 0 14px 26px rgba(24, 199, 255, 0.35), 0 0 22px rgba(43, 255, 210, 0.25),
    0 0 36px rgba(98, 225, 31, 0.22);
  color: #000000;
  text-shadow: 0 0 10px rgba(43, 255, 210, 0.25);
}

.nav-cta::after {
  opacity: 0.45;
}

.logo img {
  width: 70px;
  height: 70px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(7, 12, 24, 0.6);
  box-shadow: 0 0 18px rgba(24, 199, 255, 0.45);
}

.nav-toggle span {
  background: #d8f0ff;
}

.nav-cta,
.btn.primary {
  background: linear-gradient(120deg, #18c7ff, #2bffd2 55%, #7dff2f);
  box-shadow: 0 18px 36px rgba(24, 199, 255, 0.55), 0 0 36px rgba(43, 255, 210, 0.55),
    0 0 60px rgba(125, 255, 47, 0.4);
  color: #020512;
  text-shadow: 0 0 18px rgba(43, 255, 210, 0.45);
}

.btn.ghost {
  border-color: rgba(24, 199, 255, 0.6);
  color: #e9f4ff;
  background: rgba(7, 12, 24, 0.7);
  box-shadow: 0 14px 30px rgba(24, 199, 255, 0.35), inset 0 0 20px rgba(24, 199, 255, 0.12);
}

.hero-bg {
  background: radial-gradient(circle at 10% 18%, rgba(24, 199, 255, 0.55), transparent 56%),
    radial-gradient(circle at 85% 25%, rgba(43, 255, 210, 0.45), transparent 60%),
    linear-gradient(140deg, rgba(6, 10, 22, 0.95), rgba(8, 16, 36, 0.88));
}

.hero-bg::after {
  background: radial-gradient(circle at 25% 20%, rgba(125, 255, 47, 0.45), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255, 43, 214, 0.45), transparent 55%);
}

.hero h1 {
  color: #f0fbff;
  text-shadow: 0 0 26px rgba(24, 199, 255, 0.3);
}

.lead {
  color: rgba(233, 244, 255, 0.8);
}

.hero-badges span {
  background: rgba(7, 12, 24, 0.72);
  color: #2bffd2;
  border: 1px solid rgba(43, 255, 210, 0.55);
  box-shadow: 0 0 20px rgba(43, 255, 210, 0.35);
}

.hero-visual {
  background: radial-gradient(circle at 30% 30%, rgba(24, 199, 255, 0.25), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255, 43, 214, 0.25), transparent 55%),
    linear-gradient(160deg, rgba(7, 12, 24, 0.98), rgba(12, 20, 44, 0.9));
  box-shadow: 0 30px 70px rgba(24, 199, 255, 0.35), 0 0 80px rgba(43, 255, 210, 0.25),
    inset 0 0 40px rgba(24, 199, 255, 0.12);
  padding: 0;
  place-items: center;
}

.hero-visual::after {
  background: radial-gradient(circle at 30% 20%, rgba(24, 199, 255, 0.45), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(255, 43, 214, 0.4), transparent 50%);
}

.hero-metrics div {
  background: rgba(7, 12, 24, 0.8);
  border: 1px solid rgba(24, 199, 255, 0.4);
  box-shadow: 0 18px 40px rgba(24, 199, 255, 0.3), inset 0 0 24px rgba(43, 255, 210, 0.12);
  color: #e9f4ff;
}

.orbit-logo {
  position: relative;
  width: 480px;
  height: 480px;
  padding: 2px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.orbit-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  filter: drop-shadow(0 0 18px rgba(24, 199, 255, 0.6));
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.badge {
  background: #ff2bd6;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 43, 214, 0.5), 0 0 22px rgba(255, 43, 214, 0.45);
}

.pricing-card.featured {
  border-color: #ff2bd6;
  box-shadow: 0 20px 50px rgba(255, 43, 214, 0.35), 0 0 30px rgba(255, 43, 214, 0.25);
}

.delivery-card::before {
  background: linear-gradient(120deg, #18c7ff, #2bffd2);
}

.support-band {
  background: linear-gradient(140deg, rgba(8, 12, 24, 0.98), rgba(11, 18, 38, 0.92));
}

.gradient-band {
  background: linear-gradient(140deg, rgba(7, 10, 22, 0.98), rgba(10, 18, 38, 0.92));
}

.contact-band {
  background: linear-gradient(140deg, rgba(7, 10, 22, 0.98), rgba(12, 14, 30, 0.92));
}

.angle-top,
.angle-bottom {
  background: #050812;
}

.angle-top::before,
.angle-bottom::after {
  background: #050812;
}

.section-heading .eyebrow,
.about-grid .eyebrow,
.contact-grid .eyebrow,
.support-grid .eyebrow {
  color: #18c7ff;
}

.section-heading h2,
.about-grid h2,
.contact-grid h2,
.support-grid h2 {
  color: #f0fbff;
}

.delivery-layout .section-heading p:last-child,
.pricing-note {
  color: rgba(233, 244, 255, 0.7);
}

.price {
  color: #18c7ff;
}

.icon-card {
  background: rgba(7, 12, 24, 0.8);
  color: #e9f4ff;
  border: 1px solid rgba(24, 199, 255, 0.4);
  box-shadow: 0 18px 38px rgba(24, 199, 255, 0.25), inset 0 0 22px rgba(43, 255, 210, 0.12);
}

.feature-strip article,
.stat-card,
.service-card,
.delivery-card,
.pricing-card,
.support-card,
.contact-form {
  background: rgba(7, 12, 24, 0.82);
  color: #e9f4ff;
  border-color: rgba(24, 199, 255, 0.45);
  box-shadow: 0 20px 45px rgba(24, 199, 255, 0.25), 0 0 30px rgba(43, 255, 210, 0.2);
}

.contact-form input,
.contact-form textarea {
  background: rgba(8, 12, 24, 0.9);
  color: #e9f4ff;
  border-color: rgba(24, 199, 255, 0.35);
  box-shadow: inset 0 0 14px rgba(24, 199, 255, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(233, 244, 255, 0.6);
}

.pricing-card ul,
.service-card p,
.support-card p,
.stat-card p,
.feature-strip p,
.delivery-card p {
  color: rgba(233, 244, 255, 0.75);
}

.site-footer {
  background: #050812;
  color: #e9f4ff;
  box-shadow: 0 -18px 40px rgba(24, 199, 255, 0.2);
}

@media (max-width: 860px) {
  .nav {
    background: rgba(7, 12, 24, 0.95);
    border: 1px solid rgba(24, 199, 255, 0.45);
    box-shadow: 0 20px 50px rgba(24, 199, 255, 0.25), 0 0 30px rgba(255, 43, 214, 0.2);
  }
}
