:root {
  --navy-950: #050f1d;
  --navy-900: #071527;
  --navy-850: #0a1b30;
  --navy-800: #0d223d;
  --blue: #2f74ff;
  --cyan: #18d6e8;
  --green: #22c997;
  --violet: #826ef5;
  --ink: #10213a;
  --muted: #617087;
  --line: #dfe7f0;
  --soft: #f4f7fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(8, 28, 54, .14);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 80px;
  color: #c9d5e5;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(5, 15, 29, .92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 210px;
  margin-right: auto;
}

.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #2878ff, #2a5bea);
  box-shadow: 0 12px 30px rgba(42, 103, 241, .3);
}

.button-primary:hover {
  box-shadow: 0 17px 36px rgba(42, 103, 241, .38);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .04);
}

.button-outline:hover {
  border-color: var(--cyan);
  background: rgba(24, 214, 232, .08);
}

.button-ghost {
  color: #d8e4f1;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(10, 29, 52, .2), rgba(5, 15, 29, .1)),
    radial-gradient(circle at 78% 16%, rgba(22, 136, 218, .18), transparent 36%),
    linear-gradient(140deg, #06111f, #0a1b31 58%, #071527);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 75%);
}

.hero-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  filter: blur(90px);
  border-radius: 50%;
  opacity: .18;
}

.hero-glow-one {
  top: 10%;
  right: 10%;
  background: var(--cyan);
}

.hero-glow-two {
  bottom: 6%;
  left: -12%;
  background: var(--blue);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 64px;
  padding-top: 112px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #85e8ef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(24, 214, 232, .12);
}

.eyebrow.dark {
  color: #2870db;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #b7c6d7;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: #a9b9ca;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
}

.hero-checks span {
  margin-right: 5px;
  color: var(--green);
}

.hero-product {
  position: relative;
  min-width: 0;
  perspective: 1400px;
}

.browser-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: #eaf0f5;
  box-shadow: 0 44px 90px rgba(0, 0, 0, .42);
  transform: rotateY(-4deg) rotateX(1deg);
}

.browser-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 14px;
  color: #5a6a7d;
  background: #f7f9fc;
  border-bottom: 1px solid #dce4ec;
  font-size: 9px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i,
.screen-viewer-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d8e2;
}

.browser-dots i:first-child,
.screen-viewer-bar i:nth-last-child(3) {
  background: #ff7d70;
}

.browser-dots i:nth-child(2),
.screen-viewer-bar i:nth-last-child(2) {
  background: #ffc75b;
}

.browser-dots i:nth-child(3),
.screen-viewer-bar i:last-child {
  background: #54d29a;
}

.browser-address {
  height: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 7px;
  background: #e9eef4;
}

.browser-address span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.browser-secure {
  color: #438169;
  font-weight: 800;
}

.browser-card > img {
  width: 100%;
  aspect-ratio: 1265 / 720;
  object-fit: cover;
}

.product-orbit {
  position: absolute;
  border: 1px solid rgba(42, 199, 219, .2);
  border-radius: 50%;
}

.orbit-one {
  width: 650px;
  height: 650px;
  top: -115px;
  left: -45px;
}

.orbit-two {
  width: 500px;
  height: 500px;
  top: -40px;
  left: 45px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 13px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(4, 17, 34, .24);
}

.floating-income {
  top: 14%;
  right: -28px;
}

.floating-team {
  bottom: -28px;
  left: 4%;
}

.floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.floating-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-icon.green {
  color: #188963;
  background: #e3f8f0;
}

.floating-icon.blue {
  color: #2766d9;
  background: #e5efff;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #738196;
  font-size: 9px;
}

.floating-card strong {
  margin-top: 2px;
  font-size: 11px;
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  color: #788da4;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.trust-strip b {
  color: #b8c7d8;
  font-weight: 700;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #31506e;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.section-heading p,
.split-heading > p,
.showcase-copy > p,
.faq-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.value-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid #e1e8f0;
  border-radius: 18px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #c7d8ef;
  box-shadow: 0 18px 45px rgba(10, 37, 70, .08);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.icon-box svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-box.cyan {
  color: #087f91;
  background: #dcf8fb;
}

.icon-box.blue {
  color: #2a64ce;
  background: #e3edff;
}

.icon-box.violet {
  color: #6654ce;
  background: #ece9ff;
}

.icon-box.green {
  color: #14815f;
  background: #e0f8ee;
}

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

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.product-section {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.product-showcase {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 80px;
}

.product-section h2 {
  color: var(--white);
}

.showcase-copy > p {
  color: #9eb0c4;
}

.feature-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.feature-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.feature-list li > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.feature-list strong {
  font-size: 14px;
}

.feature-list p {
  margin: 6px 0 0;
  color: #8498ad;
  font-size: 12px;
  line-height: 1.6;
}

.showcase-image {
  position: relative;
}

.image-frame {
  overflow: hidden;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .33);
  transform: rotate(1.5deg);
}

.image-frame img {
  width: 100%;
  border-radius: 11px;
}

.metric-card {
  position: absolute;
  min-width: 130px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}

.metric-card b,
.metric-card span {
  display: block;
}

.metric-card b {
  color: #2768df;
  font-size: 15px;
}

.metric-card span {
  margin-top: 3px;
  color: #6c7b8d;
  font-size: 9px;
}

.metric-card-top {
  top: -25px;
  right: -20px;
}

.metric-card-bottom {
  bottom: -30px;
  left: -25px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module-card {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.module-card:hover {
  position: relative;
  z-index: 2;
  background: #fafdff;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.module-number {
  color: #3f7ad8;
  font-size: 11px;
  font-weight: 800;
}

.module-card h3 {
  margin: 36px 0 12px;
  font-size: 18px;
}

.module-card p {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.module-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 25px;
  color: #2c6edb;
  font-size: 12px;
  font-weight: 800;
}

.module-card a span {
  transition: transform .2s ease;
}

.module-card a:hover span {
  transform: translateX(4px);
}

.workflow-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 90%, rgba(43, 113, 230, .18), transparent 38%),
    var(--navy-900);
}

.workflow-section h2 {
  color: var(--white);
}

.workflow-section .section-heading p {
  color: #9db0c3;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 70px 0 54px;
}

.workflow-line {
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #235d92 10%, #235d92 90%, transparent);
}

.workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.workflow-step b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--cyan);
  border: 1px solid #215178;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 0 0 8px var(--navy-900);
}

.workflow-step > span {
  color: #5e91c3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.workflow-step h3 {
  margin: 10px 0 8px;
  font-size: 15px;
}

.workflow-step p {
  max-width: 220px;
  margin: 0 auto;
  color: #8ca0b5;
  font-size: 11px;
  line-height: 1.6;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 70px;
}

.screen-card {
  padding: 18px;
  text-align: left;
  color: #8fa4b9;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.screen-card:hover,
.screen-card.active {
  color: var(--white);
  border-color: rgba(24, 214, 232, .5);
  background: rgba(24, 214, 232, .08);
}

.screen-card span,
.screen-card strong {
  display: block;
}

.screen-card span {
  margin-bottom: 7px;
  color: #5d8ab5;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.screen-card strong {
  font-size: 13px;
}

.screen-viewer {
  max-width: 1020px;
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: #e8edf3;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .42);
}

.screen-viewer-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  color: #68788d;
  background: #f8fafc;
  font-size: 10px;
}

.screen-viewer-bar span {
  margin-right: auto;
  font-weight: 700;
}

.screen-viewer img {
  width: 100%;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr .65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.split-heading > p {
  margin: 0;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.integration-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.integration-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  color: #2a68d3;
  border-radius: 12px;
  background: #eaf1ff;
  font-size: 12px;
  font-weight: 800;
}

.integration-card strong {
  font-size: 14px;
}

.integration-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.plans-section {
  color: var(--white);
  background: var(--navy-950);
}

.plans-section h2 {
  color: var(--white);
}

.plans-section .section-heading p {
  color: #96a9bc;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
  margin-top: 60px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}

.plan-card.featured {
  border-color: rgba(55, 132, 255, .7);
  background: linear-gradient(180deg, rgba(44, 105, 225, .14), rgba(255, 255, 255, .045));
  box-shadow: 0 30px 75px rgba(0, 0, 0, .25);
}

.popular {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 7px 12px;
  color: var(--white);
  border-radius: 0 0 9px 9px;
  background: var(--blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-tag {
  color: #72a5ea;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 15px 0 10px;
  font-size: 27px;
}

.plan-card > p {
  min-height: 72px;
  margin: 0;
  color: #94a7ba;
  font-size: 13px;
  line-height: 1.7;
}

.plan-card ul {
  flex: 1;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding: 10px 0 10px 24px;
  color: #c5d1de;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 12px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.button-plan {
  color: var(--white);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.faq-layout {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 90px;
}

.faq-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 25px;
  color: #286bd8;
  font-size: 13px;
  font-weight: 800;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button b {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  color: #3979df;
  border-radius: 50%;
  background: #e7effc;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 22px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(24, 214, 232, .12), transparent 30%),
    linear-gradient(135deg, #081729, #0b2340);
}

.contact-glow {
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(41, 111, 238, .18);
  filter: blur(100px);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1fr;
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -.045em;
}

.contact-copy > p {
  margin: 22px 0 0;
  color: #a8b9ca;
  font-size: 16px;
  line-height: 1.8;
}

.contact-benefits {
  margin-top: 36px;
}

.contact-benefits div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  color: #c5d3df;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
}

.contact-benefits div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-benefits b {
  color: var(--cyan);
  font-size: 10px;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .28);
}

.form-head > span {
  font-size: 22px;
  font-weight: 800;
}

.form-head p {
  margin: 8px 0 26px;
  color: var(--muted);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label > span {
  color: #3e4e64;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 47px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #dce4ed;
  border-radius: 9px;
  outline: none;
  background: #f9fbfd;
  font-size: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid textarea {
  min-height: 94px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #4b87ec;
  box-shadow: 0 0 0 3px rgba(47, 116, 255, .1);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

.form-note,
.form-status {
  margin: 10px 0 0;
  text-align: center;
  color: #7b8899;
  font-size: 9px;
}

.form-status {
  color: #15775a;
  font-weight: 700;
}

.site-footer {
  color: #91a3b7;
  background: #040d18;
}

.legal-page {
  min-height: 100vh;
  background: var(--soft);
}

.legal-header {
  color: var(--white);
  background: var(--navy-950);
}

.legal-header .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header .brand {
  margin: 0;
}

.legal-main {
  padding: 80px 0 100px;
}

.legal-content {
  max-width: 820px;
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(9, 31, 58, .08);
}

.legal-content h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -.045em;
}

.legal-content h2 {
  margin: 34px 0 9px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-content a {
  color: #286bd8;
  font-weight: 700;
}

.legal-intro {
  margin-top: 18px !important;
  font-size: 16px !important;
}

.legal-date {
  margin-top: 45px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px !important;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 55px;
  padding: 70px 0 55px;
}

.footer-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.75;
}

.footer-main h3 {
  margin: 4px 0 19px;
  color: var(--white);
  font-size: 12px;
}

.footer-main a,
.footer-main div > span {
  display: block;
  margin: 11px 0;
  font-size: 11px;
  transition: color .2s ease;
}

.footer-main a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 9px;
}

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

.reveal-delay {
  transition-delay: .15s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 160px;
    padding-bottom: 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-product {
    max-width: 850px;
  }

  .value-grid,
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    max-width: 700px;
  }

  .plans-grid {
    gap: 12px;
  }

  .contact-grid {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.scrolled {
    height: 68px;
    background: rgba(5, 15, 29, .96);
  }

  .brand {
    width: 185px;
  }

  .menu-button {
    display: block;
    order: 3;
  }

  .desktop-cta {
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px 24px;
    background: rgba(5, 15, 29, .98);
    transform: translateX(100%);
    transition: transform .25s ease;
  }

  .main-nav.open {
    transform: none;
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .trust-strip,
  .trust-strip div {
    flex-wrap: wrap;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .workflow-line {
    display: none;
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-copy {
    position: static;
  }

  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

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

  .footer-main > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .desktop-cta {
    display: none;
  }

  .hero-grid {
    gap: 45px;
    padding-top: 125px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .browser-card {
    transform: none;
  }

  .browser-top {
    height: 34px;
  }

  .floating-card {
    display: none;
  }

  .trust-strip {
    align-items: flex-start;
  }

  .trust-strip div {
    gap: 12px;
  }

  .trust-strip i {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .value-grid,
  .module-grid,
  .workflow-grid,
  .screens-grid,
  .integration-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: auto;
  }

  .module-card p {
    min-height: auto;
  }

  .workflow-step p {
    max-width: 300px;
  }

  .split-heading {
    gap: 20px;
  }

  .metric-card {
    display: none;
  }

  .contact-form,
  .plan-card {
    padding: 25px;
  }

  .form-wide {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-header .brand {
    width: 175px;
  }

  .legal-main {
    padding: 35px 0 60px;
  }

  .legal-content {
    padding: 28px 22px;
  }
}

/* NetControl website 2.0 */
body { background: #f5f8fc; }
.site-header { height: 76px; }
.site-header.scrolled {
  background: rgba(4, 13, 25, .9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
}
.nav-shell { gap: 28px; }
.main-nav { gap: 22px; font-size: 13px; }
.hero {
  min-height: 860px;
  background:
    radial-gradient(circle at 74% 18%, rgba(38, 139, 255, .24), transparent 34%),
    radial-gradient(circle at 12% 75%, rgba(24, 214, 232, .13), transparent 30%),
    linear-gradient(135deg, #04101d 0%, #091c33 58%, #061322 100%);
}
.hero-grid {
  min-height: 750px;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
}
.hero h1 {
  max-width: 670px;
  font-size: clamp(48px, 5vw, 76px);
  text-wrap: balance;
}
.hero-lead { max-width: 650px; color: #c5d3e2; }
.browser-card {
  border-radius: 24px;
  box-shadow: 0 52px 120px rgba(0, 0, 0, .48), 0 0 0 12px rgba(255, 255, 255, .025);
}
.trust-strip {
  border-color: rgba(255, 255, 255, .12);
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(12px);
}
.section-light { background: #f5f8fc; }
.value-grid { gap: 14px; }
.value-card {
  min-height: 250px;
  border-color: #e3eaf2;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(17, 43, 76, .045);
}
.capability-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(47, 116, 255, .08), transparent 28%),
    #fff;
}
.capability-section::before {
  position: absolute;
  top: 40px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(47, 116, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(47, 116, 255, .025), 0 0 0 100px rgba(47, 116, 255, .018);
  content: "";
}
.capability-heading,
.capability-grid { position: relative; z-index: 1; }
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.capability-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid #e0e8f1;
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 45px rgba(10, 38, 72, .06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.capability-card:hover {
  border-color: #bfd4f2;
  box-shadow: 0 22px 55px rgba(10, 38, 72, .1);
  transform: translateY(-5px);
}
.capability-card h3 {
  margin: 21px 0 11px;
  font-size: 20px;
  letter-spacing: -.025em;
}
.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}
.capability-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #2469da;
  border: 1px solid #d5e3f8;
  border-radius: 14px;
  background: #edf4ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
.capability-featured {
  grid-column: span 2;
  color: #fff;
  border-color: rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 100% 0, rgba(24, 214, 232, .18), transparent 34%),
    linear-gradient(135deg, #07182b, #0c2948);
  box-shadow: 0 24px 60px rgba(6, 28, 54, .2);
}
.capability-featured:hover {
  border-color: rgba(74, 210, 232, .38);
  box-shadow: 0 30px 70px rgba(6, 28, 54, .27);
}
.capability-featured h3 { margin-top: 15px; font-size: 27px; }
.capability-featured p { max-width: 650px; color: #abc0d5; }
.capability-tag {
  display: inline-flex;
  padding: 7px 10px;
  color: #9df3fa;
  border: 1px solid rgba(70, 220, 236, .24);
  border-radius: 999px;
  background: rgba(24, 214, 232, .08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.signal-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.signal-board span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 8px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
}
.signal-board i {
  width: 8px;
  height: 8px;
  grid-row: span 2;
  border-radius: 50%;
}
.signal-online {
  background: #31d39f;
  box-shadow: 0 0 0 5px rgba(49, 211, 159, .1);
}
.signal-warning {
  background: #f3b74e;
  box-shadow: 0 0 0 5px rgba(243, 183, 78, .1);
}
.signal-board b { font-size: 10px; }
.signal-board small { color: #7fa0bf; font-size: 9px; }
.module-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: 0;
}
.module-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(10, 37, 70, .04);
}
.module-card h3 { margin-top: 28px; }
.integration-card {
  min-height: 98px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(14, 42, 76, .04);
}
.installation-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(24, 214, 232, .11), transparent 28%),
    linear-gradient(145deg, #061526, #0a2038);
}
.installation-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}
.installation-intro h2 {
  max-width: 590px;
  margin: 16px 0;
  color: #fff;
}
.installation-intro > p {
  max-width: 610px;
  color: #a9bfd5;
}
.installation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}
.installation-demo {
  color: #dcecff;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
}
.installation-details {
  display: grid;
  gap: 12px;
}
.installation-details article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}
.installation-details article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #79edf3;
  border: 1px solid rgba(74, 220, 232, .2);
  border-radius: 14px;
  background: rgba(24, 214, 232, .08);
  font-size: 11px;
  font-weight: 800;
}
.installation-details strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}
.installation-details p {
  margin: 0;
  color: #99b3cc;
  font-size: 13px;
  line-height: 1.65;
}
.demo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  padding: 28px 32px;
  color: var(--ink);
  border-radius: 24px;
  background: linear-gradient(115deg, #f7fbff, #e6f7fb);
}
.demo-banner h3 {
  margin: 7px 0 5px;
  font-size: 22px;
}
.demo-banner p { margin: 0; color: var(--muted); }
.demo-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #087f84;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}
.demo-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #21c994;
  box-shadow: 0 0 0 5px rgba(33, 201, 148, .12);
}
.plan-card { border-radius: 24px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-height: 66px;
  margin: 18px 0 12px;
  color: var(--ink);
}
.plan-price sup {
  align-self: flex-start;
  margin-top: 11px;
  color: #2471db;
  font-size: 13px;
  font-weight: 800;
}
.plan-price strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 4vw, 55px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.055em;
}
.plan-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.plan-card.featured .plan-price,
.plan-card.featured .plan-price sup {
  color: #fff;
}
.plan-card.featured .plan-price span {
  color: rgba(255, 255, 255, .7);
}
.contact-form {
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 26px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(24, 214, 232, .55);
  outline-offset: 3px;
}
@media (max-width: 1050px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-featured { grid-column: 1 / -1; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .installation-shell { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 580px) {
  .hero { min-height: auto; }
  .hero h1 {
    font-size: clamp(39px, 12vw, 50px);
    line-height: 1.04;
  }
  .hero-lead { font-size: 15px; line-height: 1.65; }
  .hero-checks { display: grid; gap: 11px; }
  .capability-grid,
  .signal-board { grid-template-columns: 1fr; }
  .capability-featured { grid-column: auto; }
  .capability-card { min-height: auto; padding: 24px; }
  .capability-featured h3 { font-size: 24px; }
  .module-grid { grid-template-columns: 1fr; }
  .installation-shell { padding: 27px 22px; border-radius: 24px; }
  .installation-actions,
  .installation-actions .button { width: 100%; }
  .demo-banner { align-items: stretch; flex-direction: column; padding: 24px; }
  .demo-banner .button { width: 100%; }
  .plan-price strong { font-size: 44px; }
}
