:root {
      --midnight: #050b18;
      --navy: #081426;
      --navy-soft: #0d1d33;
      --card: #122642;
      --card-hover: #173354;
      --blue: #168bff;
      --blue-light: #45a8ff;
      --cyan: #25d0f5;
      --green: #28c78c;
      --yellow: #f6b84a;
      --red: #ef5b67;
      --white: #f5f8fc;
      --text: #d9e2ee;
      --muted: #a9b7c9;
      --line: #263b56;
      --shadow: 0 28px 80px rgba(0, 0, 0, .3);
      --radius: 18px;
      --content: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--midnight);
      font-family: Inter, "Segoe UI", Arial, sans-serif;
      font-size: 17px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    button,
    input,
    textarea {
      font: inherit;
    }

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

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1,
    h2,
    h3 {
      color: var(--white);
      font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
      letter-spacing: -.035em;
    }

    h1 {
      max-width: 820px;
      margin-bottom: 28px;
      font-size: clamp(2.6rem, 6vw, 4.3rem);
      line-height: 1.04;
    }

    h2 {
      margin-bottom: 22px;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.12;
    }

    h3 {
      margin-bottom: 12px;
      font-size: 1.35rem;
      line-height: 1.25;
    }

    p {
      margin-bottom: 22px;
    }

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

    .skip-link:focus {
      transform: translateY(0);
    }

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

    .section {
      position: relative;
      padding-block: 108px;
    }

    .section-alt {
      background: var(--navy);
    }

    .section-heading {
      max-width: 790px;
      margin-bottom: 52px;
    }

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      color: var(--cyan);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 24px;
      height: 2px;
      background: currentColor;
      content: "";
    }

    .lead {
      max-width: 700px;
      color: var(--muted);
      font-size: clamp(1.08rem, 2vw, 1.25rem);
      line-height: 1.6;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      min-height: 50px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 22px;
      border: 1px solid transparent;
      border-radius: 7px;
      color: #fff;
      background: var(--blue);
      box-shadow: 0 10px 30px rgba(22, 139, 255, .24);
      font-size: .94rem;
      font-weight: 750;
      line-height: 1.2;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .button:hover {
      background: var(--blue-light);
      transform: translateY(-2px);
    }

    .button-secondary {
      border-color: rgba(255, 255, 255, .26);
      background: rgba(255, 255, 255, .04);
      box-shadow: none;
    }

    .button-secondary:hover {
      border-color: var(--blue-light);
      background: rgba(22, 139, 255, .12);
    }

    .arrow {
      font-size: 1.2em;
      line-height: 1;
    }

    .site-header {
      position: absolute;
      z-index: 100;
      top: 0;
      right: 0;
      left: 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      background: rgba(5, 11, 24, .72);
      backdrop-filter: blur(18px);
    }

    .nav-wrap {
      display: flex;
      min-height: 82px;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .logo {
      display: inline-flex;
      flex-shrink: 0;
      align-items: center;
      gap: 14px;
      color: var(--white);
      font-family: Manrope, Inter, sans-serif;
      font-size: 1.55rem;
      font-weight: 800;
      letter-spacing: -.02em;
    }

    .logo-mark {
      width: 58px;
      height: 58px;
      flex: 0 0 58px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
      margin-left: auto;
      font-size: .89rem;
      font-weight: 650;
    }

    .nav-links a:not(.button) {
      color: #c8d4e3;
      transition: color .2s ease;
    }

    .nav-links a:not(.button):hover {
      color: var(--white);
    }

    .nav-links .support-link {
      color: var(--cyan);
    }

    .menu-button {
      display: none;
      width: 46px;
      height: 46px;
      padding: 0;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--white);
      background: transparent;
      cursor: pointer;
    }

    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      border-radius: 3px;
      background: currentColor;
      content: "";
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-open .menu-button span {
      opacity: 0;
    }

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

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

    .hero {
      min-height: 820px;
      padding-top: 190px;
      padding-bottom: 105px;
      overflow: hidden;
      background:
        radial-gradient(circle at 76% 35%, rgba(22, 139, 255, .24), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(37, 208, 245, .1), transparent 24%),
        linear-gradient(135deg, var(--midnight) 0%, var(--navy) 60%, var(--navy-soft) 100%);
    }

    .hero::before {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(69, 168, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(69, 168, 255, .05) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, .35) 55%, #000 100%);
      content: "";
    }

    .hero-grid {
      position: relative;
      display: grid;
      align-items: center;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
      gap: 68px;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .hero-copy .lead {
      max-width: 660px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin-top: 32px;
      color: #b9c7d8;
      font-size: .82rem;
      font-weight: 650;
    }

    .hero-proof span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero-proof span::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px rgba(40, 199, 140, .8);
      content: "";
    }

    .security-visual {
      position: relative;
      min-height: 480px;
    }

    .visual-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 430px;
      height: 430px;
      border: 1px solid rgba(69, 168, 255, .2);
      border-radius: 50%;
      box-shadow: inset 0 0 70px rgba(22, 139, 255, .06);
      transform: translate(-50%, -50%);
    }

    .visual-orbit::before,
    .visual-orbit::after {
      position: absolute;
      border: 1px solid rgba(37, 208, 245, .18);
      border-radius: 50%;
      content: "";
    }

    .visual-orbit::before {
      inset: 48px;
    }

    .visual-orbit::after {
      inset: 100px;
    }

    .shield {
      position: absolute;
      z-index: 2;
      top: 50%;
      left: 50%;
      display: grid;
      width: 180px;
      height: 210px;
      place-items: center;
      color: var(--white);
      background: linear-gradient(145deg, rgba(37, 208, 245, .25), rgba(22, 139, 255, .08));
      border: 2px solid rgba(69, 168, 255, .8);
      box-shadow: 0 0 70px rgba(22, 139, 255, .28), inset 0 0 45px rgba(37, 208, 245, .1);
      clip-path: polygon(50% 0, 100% 17%, 91% 70%, 50% 100%, 9% 70%, 0 17%);
      transform: translate(-50%, -50%);
    }

    .shield svg {
      width: 72px;
      filter: drop-shadow(0 0 15px rgba(37, 208, 245, .7));
    }

    .node {
      position: absolute;
      z-index: 3;
      display: grid;
      width: 38px;
      height: 38px;
      padding: 0;
      place-items: center;
      border: 0;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      transform: translate(-50%, -50%);
    }

    .node::before {
      width: 13px;
      height: 13px;
      border: 3px solid var(--navy);
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(37, 208, 245, .9);
      content: "";
      transition: box-shadow .25s ease, transform .25s ease;
    }

    .node::after {
      position: absolute;
      inset: 4px;
      border: 1px solid transparent;
      border-radius: 50%;
      content: "";
      transition: border-color .25s ease, transform .25s ease;
    }

    .node:hover::before,
    .node.is-active::before {
      box-shadow: 0 0 24px rgba(37, 208, 245, 1);
      transform: scale(1.25);
    }

    .node.is-active::after {
      border-color: rgba(37, 208, 245, .75);
      animation: node-pulse 1.8s ease-out infinite;
    }

    .node-1 { top: 11%; left: 31%; }
    .node-2 { top: 17%; left: 72%; }
    .node-3 { top: 39%; left: 92%; }
    .node-4 { top: 72%; left: 82%; }
    .node-5 { top: 89%; left: 52%; }
    .node-6 { top: 76%; left: 19%; }
    .node-7 { top: 47%; left: 5%; }
    .node-8 { top: 20%; left: 10%; }

    .data-card {
      position: absolute;
      z-index: 4;
      top: 0;
      left: 0;
      width: 260px;
      padding: 17px;
      border: 1px solid rgba(69, 168, 255, .32);
      border-radius: 14px;
      background: rgba(8, 20, 38, .84);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
      opacity: 1;
      transform: translateY(0) scale(1);
      transform-origin: center;
      transition: opacity .18s ease, transform .18s ease;
    }

    .data-card.is-hidden,
    .data-card.is-changing {
      pointer-events: none;
      opacity: 0;
      transform: translateY(8px) scale(.97);
    }

    .data-card small {
      display: block;
      margin-bottom: 8px;
      color: var(--muted);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .data-card h3 {
      margin-bottom: 6px;
      font-size: 1rem;
      letter-spacing: -.02em;
    }

    .data-card p {
      margin-bottom: 12px;
      color: var(--muted);
      font-size: .76rem;
      line-height: 1.45;
    }

    .status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--white);
      font-size: .9rem;
      font-weight: 700;
    }

    .status b {
      color: var(--green);
    }

    @keyframes node-pulse {
      0% {
        opacity: 1;
        transform: scale(.65);
      }
      100% {
        opacity: 0;
        transform: scale(1.35);
      }
    }

    .partner-strip {
      position: relative;
      z-index: 4;
      margin-top: -42px;
    }

    .partner-panel {
      display: grid;
      align-items: center;
      padding: 27px 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(13, 29, 51, .97);
      box-shadow: var(--shadow);
      grid-template-columns: 1.2fr repeat(4, 1fr);
      gap: 28px;
    }

    .partner-label {
      color: var(--muted);
      font-size: .75rem;
      font-weight: 750;
      letter-spacing: .1em;
      line-height: 1.45;
      text-transform: uppercase;
    }

    .partner {
      display: flex;
      min-width: 0;
      height: 72px;
      padding: 10px 14px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 10px;
      background: rgba(255, 255, 255, .96);
      overflow: hidden;
      transition: border-color .2s ease, transform .2s ease;
    }

    .partner:hover {
      border-color: rgba(69, 168, 255, .7);
      transform: translateY(-2px);
    }

    .partner img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .partner-telekom img {
      width: 62px;
      height: 62px;
    }

    .partner-elovade img {
      width: 300%;
      height: 300%;
      max-width: none;
    }

    .partner-eset {
      flex-direction: column;
      gap: 0;
      align-items: center;
      justify-content: center;
      padding-top: 6px;
      padding-bottom: 14px;
    }

    .partner-eset .partner-eset-mark {
      width: 136px;
      height: auto;
      max-width: none;
      margin-bottom: -7px;
    }

    .partner-eset .partner-tagline {
      width: 100px;
      height: auto;
      max-width: none;
    }

    .partner-securepoint img {
      max-width: 138px;
    }

    .cards {
      display: grid;
      gap: 22px;
    }

    .cards-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .benefit-card,
    .solution-card,
    .service-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(18, 38, 66, .95), rgba(13, 29, 51, .8));
      transition: border-color .25s ease, transform .25s ease, background .25s ease;
    }

    .benefit-card:hover,
    .solution-card:hover,
    .service-card:hover {
      border-color: rgba(69, 168, 255, .7);
      background: linear-gradient(145deg, var(--card-hover), var(--navy-soft));
      transform: translateY(-5px);
    }

    .benefit-card {
      min-height: 270px;
      padding: 34px;
    }

    .icon {
      display: grid;
      width: 50px;
      height: 50px;
      margin-bottom: 28px;
      place-items: center;
      border: 1px solid rgba(69, 168, 255, .36);
      border-radius: 12px;
      color: var(--cyan);
      background: rgba(22, 139, 255, .1);
      font-size: 1.3rem;
      font-weight: 800;
    }

    .benefit-card p,
    .service-card p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .solution-card {
      min-height: 470px;
      padding: 44px;
    }

    .solution-card::after {
      position: absolute;
      right: -80px;
      bottom: -90px;
      width: 250px;
      height: 250px;
      border: 1px solid rgba(37, 208, 245, .16);
      border-radius: 50%;
      box-shadow: inset 0 0 55px rgba(22, 139, 255, .09);
      content: "";
    }

    .solution-number {
      display: block;
      margin-bottom: 36px;
      color: var(--cyan);
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .14em;
    }

    .solution-list {
      position: relative;
      z-index: 2;
      display: grid;
      margin: 30px 0 34px;
      padding: 0;
      gap: 12px;
      list-style: none;
    }

    .solution-list li {
      display: flex;
      align-items: center;
      gap: 11px;
      color: #ccd7e5;
      font-size: .94rem;
    }

    .solution-list li::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 10px rgba(22, 139, 255, .7);
      content: "";
    }

    .text-link {
      position: relative;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--white);
      font-size: .9rem;
      font-weight: 750;
    }

    .text-link:hover {
      color: var(--cyan);
    }

    .feature-grid {
      display: grid;
      align-items: center;
      grid-template-columns: 1fr 1fr;
      gap: 78px;
    }

    .steps {
      display: grid;
      margin-top: 38px;
      gap: 18px;
    }

    .step {
      display: grid;
      align-items: start;
      grid-template-columns: 42px 1fr;
      gap: 16px;
    }

    .step-number {
      display: grid;
      width: 38px;
      height: 38px;
      place-items: center;
      border: 1px solid rgba(69, 168, 255, .45);
      border-radius: 10px;
      color: var(--cyan);
      background: rgba(22, 139, 255, .08);
      font-size: .82rem;
      font-weight: 800;
    }

    .step strong {
      display: block;
      margin-bottom: 2px;
      color: var(--white);
    }

    .step span {
      color: var(--muted);
      font-size: .92rem;
    }

    .dashboard {
      position: relative;
      padding: 24px;
      border: 1px solid rgba(69, 168, 255, .32);
      border-radius: 22px;
      background:
        linear-gradient(rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
        var(--navy-soft);
      box-shadow: var(--shadow), 0 0 80px rgba(22, 139, 255, .12);
    }

    .dashboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      color: var(--muted);
      font-size: .75rem;
      font-weight: 700;
    }

    .live {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--green);
    }

    .live::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 10px currentColor;
      content: "";
    }

    .dashboard-score {
      display: grid;
      grid-template-columns: .7fr 1.3fr;
      gap: 24px;
    }

    .score {
      display: grid;
      min-height: 180px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(5, 11, 24, .42);
      text-align: center;
    }

    .score-ring {
      display: grid;
      width: 112px;
      height: 112px;
      place-items: center;
      border: 9px solid rgba(239, 91, 103, .16);
      border-top-color: var(--red);
      border-right-color: var(--red);
      border-radius: 50%;
      color: var(--red);
      box-shadow: 0 0 25px rgba(239, 91, 103, .16);
      font-size: 1.75rem;
      font-weight: 800;
      transform: rotate(25deg);
    }

    .score-ring span {
      transform: rotate(-25deg);
    }

    .chart {
      display: flex;
      min-height: 180px;
      align-items: end;
      justify-content: space-around;
      gap: 8px;
      padding: 22px 20px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(5, 11, 24, .42);
    }

    .bar {
      width: 18px;
      border-radius: 4px 4px 1px 1px;
      background: linear-gradient(to top, var(--blue), var(--cyan));
      box-shadow: 0 0 12px rgba(22, 139, 255, .2);
    }

    .bar:nth-child(1) { height: 34%; }
    .bar:nth-child(2) { height: 51%; }
    .bar:nth-child(3) { height: 43%; }
    .bar:nth-child(4) { height: 68%; }
    .bar:nth-child(5) { height: 59%; }
    .bar:nth-child(6) { height: 84%; }
    .bar:nth-child(7) { height: 73%; }

    .dashboard-events {
      display: grid;
      margin-top: 16px;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .metric {
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(5, 11, 24, .36);
    }

    .metric small {
      display: block;
      color: var(--muted);
      font-size: .66rem;
    }

    .metric strong {
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--white);
      font-size: 1.05rem;
      line-height: 1.25;
    }

    .metric strong::before {
      width: 8px;
      height: 8px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 10px currentColor;
      content: "";
    }

    .metric-success strong {
      color: var(--green);
    }

    .metric-warning strong {
      color: var(--yellow);
    }

    .metric-danger strong {
      color: var(--red);
      font-size: .88rem;
    }

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

    .service-card {
      display: flex;
      min-height: 310px;
      flex-direction: column;
      padding: 29px;
    }

    .service-card .icon {
      width: 44px;
      height: 44px;
      margin-bottom: 24px;
      font-size: 1rem;
    }

    .service-card .text-link {
      margin-top: auto;
      padding-top: 24px;
    }

    .process-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .process-grid::before {
      position: absolute;
      z-index: 0;
      top: 24px;
      right: 12%;
      left: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
      content: "";
    }

    .process-item {
      position: relative;
      z-index: 1;
    }

    .process-number {
      display: grid;
      width: 48px;
      height: 48px;
      margin-bottom: 26px;
      place-items: center;
      border: 1px solid var(--blue);
      border-radius: 50%;
      color: var(--white);
      background: var(--navy);
      box-shadow: 0 0 24px rgba(22, 139, 255, .2);
      font-weight: 800;
    }

    .process-item p {
      color: var(--muted);
      font-size: .94rem;
    }

    .local-panel {
      display: grid;
      padding: 64px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background:
        radial-gradient(circle at 85% 35%, rgba(22, 139, 255, .2), transparent 28%),
        linear-gradient(145deg, var(--navy-soft), #0a1729);
      box-shadow: var(--shadow);
      grid-template-columns: 1.2fr .8fr;
      gap: 70px;
    }

    .contact-list {
      display: grid;
      align-content: center;
      gap: 14px;
    }

    .contact-chip {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 16px 18px;
      border: 1px solid rgba(69, 168, 255, .28);
      border-radius: 12px;
      color: #d7e2ef;
      background: rgba(5, 11, 24, .38);
      font-size: .92rem;
      font-weight: 650;
    }

    .contact-chip span {
      display: grid;
      width: 32px;
      height: 32px;
      place-items: center;
      border-radius: 8px;
      color: var(--cyan);
      background: rgba(22, 139, 255, .12);
    }

    .faq {
      max-width: 880px;
      margin-inline: auto;
    }

    details {
      border-bottom: 1px solid var(--line);
    }

    summary {
      position: relative;
      padding: 25px 50px 25px 0;
      color: var(--white);
      cursor: pointer;
      font-family: Manrope, Inter, sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      position: absolute;
      top: 26px;
      right: 8px;
      display: grid;
      width: 28px;
      height: 28px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--cyan);
      content: "+";
      line-height: 1;
    }

    details[open] summary::after {
      content: "-";
    }

    details p {
      max-width: 760px;
      padding: 0 50px 24px 0;
      color: var(--muted);
      font-size: .95rem;
    }

    .cta-section {
      padding-top: 32px;
      padding-bottom: 108px;
      background: var(--navy);
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 72px;
      border: 1px solid rgba(69, 168, 255, .42);
      border-radius: 25px;
      background:
        radial-gradient(circle at 90% 0, rgba(37, 208, 245, .25), transparent 30%),
        linear-gradient(130deg, #0c2442, var(--navy-soft));
      box-shadow: var(--shadow);
    }

    .cta-panel::after {
      position: absolute;
      top: -160px;
      right: -80px;
      width: 420px;
      height: 420px;
      border: 1px solid rgba(37, 208, 245, .2);
      border-radius: 50%;
      box-shadow: inset 0 0 80px rgba(22, 139, 255, .1);
      content: "";
    }

    .cta-panel h2,
    .cta-panel p,
    .cta-panel .button-row,
    .cta-panel .eyebrow {
      position: relative;
      z-index: 2;
    }

    .cta-panel p {
      max-width: 660px;
      color: #c4d1e0;
    }

    .site-footer {
      padding: 76px 0 28px;
      border-top: 1px solid var(--line);
      background: var(--midnight);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.65fr 1fr;
      gap: 72px;
    }

    .footer-intro p {
      max-width: 330px;
      margin-top: 20px;
      color: var(--muted);
      font-size: .88rem;
    }

    .footer-intro .logo-mark {
      width: 64px;
      height: 64px;
      flex-basis: 64px;
    }

    .footer-intro .logo {
      font-size: 1.5rem;
      gap: 16px;
    }

    .footer-title {
      display: block;
      margin-bottom: 18px;
      color: var(--white);
      font-size: .82rem;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      color: var(--muted);
      font-size: .86rem;
    }

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

    .subfooter {
      display: flex;
      margin-top: 58px;
      padding-top: 24px;
      border-top: 1px solid rgba(38, 59, 86, .8);
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: #77889e;
      font-size: .76rem;
    }

    .subfooter-links {
      display: flex;
      gap: 20px;
    }

    .mobile-action-bar {
      display: none;
    }

    :focus-visible {
      outline: 3px solid var(--cyan);
      outline-offset: 3px;
    }

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

      .nav-links .support-link {
        display: none;
      }

      .hero-grid {
        grid-template-columns: 1fr .72fr;
        gap: 30px;
      }

      .visual-orbit {
        width: 360px;
        height: 360px;
      }

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

      .footer-grid {
        grid-template-columns: 1.45fr 1fr;
        gap: 34px;
      }
    }

    @media (max-width: 820px) {
      body {
        font-size: 16px;
      }

      .section {
        padding-block: 80px;
      }

      .nav-wrap {
        min-height: 70px;
      }

      .menu-button {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        display: none;
        height: calc(100vh - 70px);
        padding: 30px 20px 110px;
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
        background: rgba(5, 11, 24, .98);
        overflow-y: auto;
      }

      .menu-open .nav-links {
        display: flex;
      }

      .nav-links a:not(.button) {
        padding: 14px 6px;
        border-bottom: 1px solid var(--line);
        font-size: 1.05rem;
      }

      .nav-links .support-link {
        display: block;
      }

      .nav-links .button {
        margin-top: 18px;
      }

      .hero {
        min-height: auto;
        padding-top: 142px;
        padding-bottom: 92px;
      }

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

      .security-visual {
        min-height: 420px;
      }

      .visual-orbit {
        width: min(390px, 95vw);
        height: min(390px, 95vw);
      }

      .data-card {
        right: 4%;
      }

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

      .partner-label {
        grid-column: 1 / -1;
        text-align: center;
      }

      .cards-3,
      .feature-grid,
      .local-panel {
        grid-template-columns: 1fr;
      }

      .feature-grid {
        gap: 54px;
      }

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

      .process-grid::before {
        display: none;
      }

      .local-panel {
        padding: 45px;
        gap: 30px;
      }

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

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

      .section {
        padding-block: 65px;
      }

      h1 {
        font-size: 2.55rem;
      }

      h2 {
        font-size: 2rem;
      }

      .logo {
        font-size: 1.22rem;
      }

      .logo-mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
      }

      .hero {
        padding-top: 125px;
      }

      .hero .button-row,
      .cta-panel .button-row {
        display: grid;
      }

      .hero .button,
      .cta-panel .button {
        width: 100%;
      }

      .hero-proof {
        display: grid;
      }

      .security-visual {
        min-height: 340px;
      }

      .visual-orbit {
        width: 310px;
        height: 310px;
      }

      .shield {
        width: 135px;
        height: 160px;
      }

      .shield svg {
        width: 55px;
      }

      .data-card {
        width: 210px;
      }

      .partner-strip {
        margin-top: -26px;
      }

      .partner-panel {
        padding: 24px 18px;
        gap: 22px 12px;
      }

      .partner {
        height: 68px;
        padding: 9px 12px;
      }

      .cards-2,
      .services-grid,
      .process-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .benefit-card,
      .solution-card,
      .service-card {
        min-height: auto;
        padding: 27px;
      }

      .solution-card {
        min-height: 420px;
      }

      .section-heading {
        margin-bottom: 38px;
      }

      .dashboard {
        padding: 15px;
      }

      .dashboard-score {
        grid-template-columns: 1fr;
      }

      .score {
        min-height: 150px;
      }

      .chart {
        min-height: 150px;
      }

      .dashboard-events {
        grid-template-columns: 1fr;
      }

      .local-panel,
      .cta-panel {
        padding: 34px 24px;
      }

      summary {
        padding-right: 42px;
      }

      details p {
        padding-right: 0;
      }

      .cta-section {
        padding-bottom: 90px;
      }

      .site-footer {
        padding-bottom: 90px;
      }

      .subfooter {
        align-items: flex-start;
        flex-direction: column;
      }

      .mobile-action-bar {
        position: fixed;
        z-index: 90;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        padding: 10px 12px;
        border-top: 1px solid var(--line);
        background: rgba(5, 11, 24, .96);
        backdrop-filter: blur(15px);
        grid-template-columns: .8fr 1.2fr;
        gap: 8px;
      }

      .mobile-action-bar .button {
        min-height: 46px;
        padding: 9px 11px;
        font-size: .8rem;
      }
    }

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

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }

    .nav-menu,
    .nav-menu > li {
      display: contents;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links > li {
      display: contents;
    }

    .content-page {
      min-height: 70vh;
      padding: 150px 0 100px;
      background:
        radial-gradient(circle at 82% 12%, rgba(22, 139, 255, .15), transparent 30%),
        var(--navy);
    }

    .elementor-theme-page {
      min-height: 70vh;
      padding-top: 82px;
      background: var(--midnight);
    }

    .elementor-theme-page article {
      margin: 0;
    }

    .content-card {
      max-width: 900px;
      padding: 48px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--navy-soft);
      box-shadow: var(--shadow);
    }

    .content-card h1 {
      margin-bottom: 30px;
      font-size: clamp(2.3rem, 5vw, 3.6rem);
    }

    .content-card a:not(.button) {
      color: var(--cyan);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .error-card {
      text-align: center;
    }

    .error-card .button {
      margin-top: 18px;
    }

    .admin-bar .site-header {
      top: 32px;
    }

    @media (max-width: 782px) {
      .admin-bar .site-header {
        top: 46px;
      }
    }

    @media (max-width: 560px) {
      .content-page {
        padding: 110px 0 70px;
      }

      .content-card {
        padding: 30px 22px;
      }

      .elementor-theme-page {
        padding-top: 70px;
      }
    }
