:root {
  --bg: #f7f9fb;
  --paper: #fff;
  --ink: #102033;
  --muted: #66768a;
  --line: #e4eaf1;
  --navy: #0b1f3a;
  --blue: #1769ff;
  --green: #19b37b;
  --mint: #e8fff6;
  --sand: #f7efe1;
  --shadow: 0 20px 60px rgba(15, 32, 51, 0.1);
  --shadow2: 0 12px 30px rgba(15, 32, 51, 0.08);
  --radius: 24px;
  --radius2: 16px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background: linear-gradient(180deg, #fbfcfd 0, #f5f8fb 45%, #fff 100%);
  color: var(--ink);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.topbar {
  height: 38px;
  background: #0b1f3a;
  color: #d7e5f7;
  font-size: 13px;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(25, 179, 123, 0.16);
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.logo {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: conic-gradient(
    from 210deg,
    var(--blue),
    var(--green),
    #9cf7d2,
    var(--blue)
  );
  box-shadow: 0 12px 26px rgba(23, 105, 255, 0.22);
  position: relative;
}
.logo:after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 9px;
  background: #fff;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navitem {
  position: relative;
}
.navlink {
  padding: 12px 13px;
  border-radius: 12px;
  color: #26384d;
  font-weight: 650;
  font-size: 14px;
}
.navlink:hover {
  background: #eef4fb;
}
.mega {
  position: absolute;
  top: 44px;
  left: 0;
  width: 680px;
  background: #fff;
  border: 1px solid var(--line.);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}
.navitem:hover .mega {
  display: grid;
}
.mega h4 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a8da3;
}
.mega a {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 15px;
}
.mega a:hover {
  background: #f4f8fc;
}
.mega b {
  display: block;
  font-size: 14px;
}
.mega span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

span.ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef6ff;
  color: var(--blue);
  font-weight: 900;
  flex: 0 0 auto;
}
.megaPanel {
  border-radius: 18px;
  background: linear-gradient(135deg, #0b1f3a, #123f6f);
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.megaPanel p {
  color: #cfe0f5;
}
.navcta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: 0.2s;
  cursor: pointer;
}
.btn.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.16);
}
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(11, 31, 58, 0.22);
}
.btn.secondary {
  background: #fff;
  border-color: var(--line);
  color: #16283c;
}
.btn.green {
  background: var(--green);
  color: #06261b;
}
.hamb {
  display: none;
  border: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
}
.hero:before {
  content: "";
  position: absolute;
  right: -180px;
  top: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(25, 179, 123, 0.2),
    rgba(23, 105, 255, 0.08) 40%,
    transparent 70%
  );
  z-index: -1;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dce7f2;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 750;
  font-size: 13px;
  color: #36506c;
  box-shadow: 0 8px 20px rgba(15, 32, 51, 0.05);
}
h1 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 22px 0 20px;
  color: #081b31;
}
h2 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 0 0 15px;
}
h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.lead {
  font-size: 20px;
  color: #536579;
  max-width: 680px;
  margin: 0 0 28px;
}
.heroActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.trustrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.trust {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  box-shadow: var(--shadow2);
}
.trust b {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.trust span {
  font-size: 13px;
  color: var(--muted);
}
.visual {
  position: relative;
}
.cardMock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}
.mockHeader {
  height: 48px;
  border-radius: 18px;
  background: #f2f6fa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  margin-bottom: 16px;
}
.mockDots {
  display: flex;
  gap: 6px;
}
.mockDots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7d4e2;
}
.mockGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.metric {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(180deg, #fff, #f8fbfe);
}
.metric span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.metric b {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-top: 8px;
}
.chart {
  height: 145px;
  border-radius: 20px;
  background: linear-gradient(180deg, #eff7ff, #fff);
  border: 1px solid var(--line);
  grid-column: 1/-1;
  position: relative;
  overflow: hidden;
}
.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.flowBox {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  text-align: center;
}
.arrow {
  color: var(--green);
  font-size: 24px;
  text-align: center;
}
.floatBadge {
  position: absolute;
  right: -110px;
  bottom: -110px;
  background: #0b1f3a;
  color: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 210px;
}
.floatBadge b {
  display: block;
  font-size: 18px;
}
.floatBadge span {
  display: block;
  font-size: 13px;
  color: #cfe0f5;
}
.section {
  padding: 72px 0;
}
.sectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}
.sectionHead p {
  color: var(--muted);
  max-width: 540px;
  margin: 0;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow2);
  min-height: 230px;
}
.feature:hover {
  transform: translateY(-3px);
  transition: 0.2s;
  box-shadow: var(--shadow);
}
.feature .ico {
  margin-bottom: 18px;
}
.feature p {
  color: var(--muted);
  margin: 0 0 18px;
}
.feature a {
  font-weight: 800;
  color: var(--blue);
}
.band {
  background: linear-gradient(135deg, #0b1f3a, #103b65);
  color: #fff;
  border-radius: 36px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.band:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(25, 179, 123, 0.35),
    transparent 65%
  );
}
.band p {
  color: #cfe0f5;
}
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  position: relative;
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #eaf6ff;
  color: var(--blue);
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}
.step p {
  color: var(--muted);
  margin: 0;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow2);
}
.list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #4f6175;
}
.check:before {
  content: "✓";
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eafff6;
  color: var(--green);
  font-weight: 900;
  flex: 0 0 auto;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow2);
}
.quote p {
  font-size: 21px;
  color: #24364a;
}
.footer {
  background: #071a2f;
  color: #d7e5f7;
  margin-top: 70px;
  padding: 54px 0 28px;
}
.footGrid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 26px;
}
.footer h4 {
  color: #fff;
  margin: 0 0 14px;
}
.footer a {
  display: block;
  color: #b6c8dc;
  margin: 8px 0;
  font-size: 14px;
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 22px;
  color: #91a6bd;
  font-size: 13px;
}
.pageHero {
  padding: 70px 0 42px;
  background: linear-gradient(180deg, #f5f9fd, #fff);
}
.pageHero .wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: end;
}
.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.smallVisual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow2);
}
.smallVisual .bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.bar {
  height: 12px;
  border-radius: 999px;
  background: #e9f0f7;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 999px;
}
.contentBlock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
}
.faqItem {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faqQ {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
}
.faqA {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}
.faqItem.open .faqA {
  display: block;
}
.form {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-weight: 750;
  font-size: 14px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8e2ed;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}
.field textarea {
  min-height: 120px;
}
.success {
  display: none;
  background: #eafff6;
  border: 1px solid #bff3dc;
  border-radius: 16px;
  padding: 14px;
  color: #0e704e;
  font-weight: 750;
}
.mobilePanel {
  display: none;
}
.calcBox {
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow2);
}
.calcResult {
  background: #0b1f3a;
  color: #fff;
  border-radius: 22px;
  padding: 22px;
  margin-top: 16px;
}
.calcResult b {
  font-size: 30px;
  display: block;
}
.tableCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.priceCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow2);
}
.priceCard.featured {
  border-color: #aeeed5;
  box-shadow: 0 20px 60px rgba(25, 179, 123, 0.14);
}
@media (max-width: 980px) {
  .topbar {
    display: none;
  }
  .navlinks,
  .navcta {
    display: none;
  }
  .hamb {
    display: block;
  }
  .heroGrid,
  .pageHero .wrap,
  .split {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 54px 0;
  }
  h1 {
    font-size: 48px;
  }
  .grid3,
  .grid2,
  .steps,
  .tableCards {
    grid-template-columns: 1fr;
  }
  .trustrow {
    grid-template-columns: 1fr;
  }
  .footGrid {
    grid-template-columns: 1fr 1fr;
  }
  .mobilePanel {
    display: none;
    position: fixed;
    inset: 76px 14px auto 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    z-index: 30;
    padding: 18px;
  }
  .mobilePanel.open {
    display: block;
  }
  .mobilePanel a {
    display: block;
    padding: 12px 10px;
    border-bottom: 1px solid #edf2f7;
    font-weight: 750;
  }
}
@media (max-width: 620px) {
  .wrap {
    padding: 0 16px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  .heroActions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .mockGrid {
    grid-template-columns: 1fr;
  }
  .flow {
    grid-template-columns: 1fr;
  }
  .arrow {
    transform: rotate(90deg);
  }
  .band {
    padding: 30px;
    border-radius: 26px;
  }
  .footGrid {
    grid-template-columns: 1fr;
  }
  .sectionHead {
    display: block;
  }
  .floatBadge {
    position: static;
    margin-top: 14px;
  }
}

/* ===== Pilent night theme v4 ===== */
:root {
  --bg: #030405;
  --paper: #0b0d10;
  --paper2: #11151b;
  --ink: #f4f7fb;
  --muted: #95a3b6;
  --line: rgba(255, 255, 255, 0.105);
  --navy: #ffffff;
  --blue: #7aa7ff;
  --green: #74f3bc;
  --mint: rgba(116, 243, 188, 0.12);
  --sand: rgba(255, 255, 255, 0.06);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --shadow2: 0 16px 44px rgba(0, 0, 0, 0.38);
}
html {
  background: #000;
}
body {
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(116, 243, 188, 0.13),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(122, 167, 255, 0.13),
      transparent 36%
    ),
    linear-gradient(180deg, #000 0%, #06080b 42%, #030405 100%);
  color: var(--ink);
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 10%, black, transparent 70%);
  z-index: -1;
}
.topbar {
  background: #000;
  color: #c7d2e1;
  border-bottom: 1px solid var(--line);
}
header {
  background: rgba(3, 4, 5, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  color: #fff;
}
.logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #000 url("../img/pilent-logo.jpeg") center/cover no-repeat;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 45px rgba(116, 243, 188, 0.12);
}
.logo:after {
  display: none;
}
.navlink {
  color: #d8e1ee;
}
.navlink:hover {
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}
.hamb {
  background: #0c1016;
  border-color: var(--line);
  color: #fff;
}
.mega {
  background: rgba(11, 13, 16, 0.97);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.mega h4 {
  color: #8090a5;
}
.mega a:hover {
  background: rgba(255, 255, 255, 0.055);
}
.mega b {
  color: #fff;
}
.megaPanel {
  background: linear-gradient(145deg, #121923, #07100d);
  border: 1px solid var(--line);
}
.megaPanel p {
  color: #aebcd0;
}
.ico {
  background: linear-gradient(
    145deg,
    rgba(122, 167, 255, 0.16),
    rgba(116, 243, 188, 0.11)
  );
  color: #d8fff0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn.primary {
  background: #fff;
  color: #05070a;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.12);
}
.btn.primary:hover {
  box-shadow: 0 22px 54px rgba(116, 243, 188, 0.18);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
  color: #f2f6fb;
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}
.btn.green {
  background: var(--green);
  color: #03120c;
}
.pill {
  border-color: rgba(255, 255, 255, 0.16);
}
.hero {
  padding-top: 92px;
}
.hero:before {
  right: -120px;
  top: -180px;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(116, 243, 188, 0.22),
    rgba(122, 167, 255, 0.1) 38%,
    transparent 68%
  );
}
.hero:after {
  content: "";
  position: absolute;
  left: -220px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(122, 167, 255, 0.1),
    transparent 65%
  );
  z-index: -1;
}
.eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: #dce6f4;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}
h1,
h2,
h3 {
  color: #fff;
}
h1 {
  letter-spacing: -0.065em;
}
.lead {
  color: #a9b6c8;
}
.trust,
.feature,
.step,
.panel,
.quote,
.smallVisual,
.contentBlock,
.faqItem,
.priceCard,
.calcBox,
.cardMock {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.072),
    rgba(255, 255, 255, 0.038)
  );
  border-color: var(--line);
  box-shadow: var(--shadow2);
}
.trust span,
.feature p,
.step p,
.sectionHead p,
.quote p,
.faqA,
.field label {
  color: var(--muted);
}
.trust b,
.metric b {
  color: #fff;
}
.cardMock {
  backdrop-filter: blur(10px);
  position: relative;
}
.cardMock:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(116, 243, 188, 0.45),
    rgba(122, 167, 255, 0.2),
    rgba(255, 255, 255, 0.04)
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.mockHeader {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.mockDots i {
  background: rgba(255, 255, 255, 0.28);
}
.metric {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  border-color: var(--line);
}
.chart {
  background: linear-gradient(
    180deg,
    rgba(122, 167, 255, 0.12),
    rgba(116, 243, 188, 0.035)
  );
  border-color: var(--line);
}
.flowBox {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
  color: #f4f7fb;
}
.floatBadge,
.calcResult {
  background: #fff;
  color: #06080b;
}
.floatBadge span {
  color: #4c5969;
}
.band {
  background: linear-gradient(145deg, #0f141c, #050807);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.band p {
  color: #aab7c7;
}
.band:after {
  background: radial-gradient(
    circle,
    rgba(116, 243, 188, 0.24),
    transparent 65%
  );
}
.check {
  color: #d6deeb;
}
.check:before {
  background: rgba(116, 243, 188, 0.14);
  color: var(--green);
}
.feature a {
  color: var(--green);
}
.pageHero {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0)
  );
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  color: #8794a7;
}
.bar {
  background: rgba(255, 255, 255, 0.09);
}
.bar i {
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
  color: #fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid rgba(116, 243, 188, 0.42);
  border-color: rgba(116, 243, 188, 0.42);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #79869a;
}
.success {
  background: rgba(116, 243, 188, 0.12);
  border-color: rgba(116, 243, 188, 0.28);
  color: #bcffdf;
}
.footer {
  background: #000;
  border-top: 1px solid var(--line);
  color: #cbd5e3;
}
.footer a {
  color: #aeb8c8;
}
.footer a:hover {
  color: #fff;
}
.legal {
  border-top-color: var(--line);
  color: #7d8ba0;
}
.mobilePanel {
  background: rgba(9, 11, 14, 0.98);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.mobilePanel a {
  border-bottom-color: var(--line);
  color: #fff;
}
.priceCard.featured {
  border-color: rgba(116, 243, 188, 0.38);
  box-shadow: 0 22px 70px rgba(116, 243, 188, 0.1);
}
@media (max-width: 980px) {
  .mobilePanel {
    background: rgba(9, 11, 14, 0.98);
  }
}

/* Keep desktop mega-menu open while crossing pointer gap */
@media (min-width: 981px) {
  .navitem {
    position: relative;
  }
  .navitem:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }
  .mega {
    top: calc(100% + 14px);
  }
  .navitem:hover .mega,
  .navitem:focus-within .mega {
    display: grid;
  }
}

/* Center dropdown lucide icons */
.ico svg {
  width: 18px;
  height: 18px;
  display: block;
  margin: auto;
  stroke-width: 2;
}
