@font-face {
  font-family: "pixelmix";
  src:
    url("/wp-content/uploads/useanyfont/8160pixelmix.woff2") format("woff2"),
    url("/wp-content/uploads/useanyfont/8160pixelmix.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*
  Pixel font strategy:
  - On nexatechny.com, pixelmix loads from the same-origin WordPress upload path above.
  - During local testing, browser/CORS rules may block that live font. Silkscreen
    remains loaded as the pixel-style preview fallback.
  - The page no longer hides while waiting for fonts, so it feels as fast as v37.
*/
:root {
  --black: #000000;
  --white: #ffffff;
  --light: #dee3eb;
  --teal: #32e0bf;
  --teal-dark: #1c9c83;
  --ink: #000000;
  --muted: #333333;
  --line: rgba(0, 0, 0, 0.12);
  --shadow: 1px 5px 15px rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --page-width: 1550px;
  --gutter: clamp(20px, 6.5vw, 100px);
  --cursor-x: 78vw;
  --cursor-y: 42vh;
  --font-pixel: "pixelmix", "Silkscreen", "Courier New", monospace;
  --font-body: Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #061c1b; }
/* Custom pixel cursor
   Applied globally so click/active states do not briefly fall back to the browser cursor.
   Note: the cursor inside the cross-domain ScreenConnect iframe cannot be controlled here. */
html,
body,
body *,
body *::before,
body *::after {
  cursor: url("../cursors/pixel-cursor.svg") 4 3, auto;
}

a,
button,
.btn,
.nav-toggle,
.modal-close,
summary,
label,
select,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
[role="button"],
[tabindex]:not([tabindex="-1"]),
.screenconnect-crop,
.screenconnect-crop * {
  cursor: url("../cursors/pixel-pointer.svg") 8 2, pointer;
}

input,
textarea,
[contenteditable="true"] {
  cursor: url("../cursors/pixel-cursor.svg") 4 3, text;
}

a:hover,
a:active,
a:focus-visible,
button:hover,
button:active,
button:focus-visible,
.btn:hover,
.btn:active,
.btn:focus-visible,
.nav-toggle:hover,
.nav-toggle:active,
.modal-close:hover,
.modal-close:active,
[role="button"]:hover,
[role="button"]:active,
.screenconnect-crop:hover,
.screenconnect-crop:active {
  cursor: url("../cursors/pixel-pointer.svg") 8 2, pointer;
}


body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}
body.remote-page {
  min-height: 100svh;
  overflow-y: scroll;
  overflow-x: hidden;
  background: #061c1b;
}
body.remote-page::after {
  content: "";
  display: block;
  height: 2px;
  background: #061c1b;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--teal); color: #000; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--black);
  color: #fff;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0);
  transition: background .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 12px rgba(0,0,0,.08);
}
.nav {
  width: min(var(--page-width), 100%);
  min-height: 100px;
  margin: 0 auto;
  padding: 30px var(--gutter) 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand img { width: clamp(150px, 15vw, 232px); height: auto; }
.footer-brand img { width: clamp(150px, 15vw, 232px); height: auto; }
.site-header.is-scrolled .brand img { filter: invert(1); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2.25vw, 2.1rem);
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu a {
  text-decoration: none;
  color: #000;
  font-family: var(--font-pixel);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .15s ease;
}
.nav-menu a:hover,
.nav-menu a:focus-visible { color: var(--light); }
.site-header.is-scrolled .nav-menu a:hover,
.site-header.is-scrolled .nav-menu a:focus-visible { color: var(--teal-dark); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.55);
  border-radius: 10px;
  padding: 9px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #000;
}

.hero {
  --move-x: -7.9832%;
  --move-y: -7.9832%;
  --mouse-bg-rest-x: -7.9832%;
  --mouse-bg-rest-y: -7.9832%;
  --mouse-bg-overscan: 19%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  padding: clamp(150px, 20vw, 270px) var(--gutter) clamp(100px, 12vw, 160px);
  display: flex;
  align-items: flex-start;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + var(--mouse-bg-overscan));
  height: calc(100% + var(--mouse-bg-overscan));
  z-index: -2;
  background-image: url("../images/bgslider.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(var(--move-x), var(--move-y), 0);
  transition: transform 1s cubic-bezier(0, .33, .07, 1.03);
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.20), rgba(0,0,0,.04) 52%, transparent 70%);
}


.hero-bg-grid { display: none; }
.hero-content {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
}
.typewriter {
  position: relative;
  margin: 0;
  min-height: 4em;
  max-width: 980px;
  white-space: pre-line;
  color: #dee3eb;
  font-family: var(--font-pixel);
  font-weight: 400;
  font-size: clamp(40px, 4.05vw, 62px);
  line-height: 1.3;
  letter-spacing: 0;
  text-shadow: none;
}
.hero-link {
  display: inline-block;
  margin-top: 62px;
  padding: 10px 10px 20px 0;
  color: var(--teal);
  font-family: var(--font-pixel);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: transform .18s ease, color .18s ease;
}
.hero-link:hover { transform: translateY(-4px); color: #fff; }
body.motion-ready .hero-link.is-waiting {
  opacity: 0;
  transform: translateY(38px);
  pointer-events: none;
}
body.motion-ready .hero-link.is-visible {
  animation: hero-link-reveal 1.15s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes hero-link-reveal {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 100px;
}

.section {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  padding: 100px var(--gutter);
  color: #000;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.2; }
p { color: #000; margin-bottom: 1rem; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.section-label {
  color: #000;
  font-family: var(--font-pixel);
  font-size: clamp(44px, 3.8vw, 55px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}
.section-label span { color: #000; }
.section-copy { max-width: 720px; }
.section-copy h2 {
  margin: 20px 0 24px;
  color: #000;
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.5px;
  text-transform: capitalize;
}
.section-copy p {
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.intro-band {
  width: 100%;
  max-width: none;
  padding: 80px var(--gutter);
  background: linear-gradient(115deg, #168d75, #25b296, #1c9c83, #38bea7);
  background-size: 220% 220%;
  border: 0;
  display: grid;
  place-items: center;
  animation: intro-band-shift 14s ease-in-out infinite;
}
@keyframes intro-band-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.intro-band h2 {
  max-width: 800px;
  margin: 0;
  color: #33e0bf;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(32px, 3.05vw, 42px);
  font-weight: 500;
  line-height: 1.2;
}
.intro-band-copy span { display: block; }
body.reveal-ready .intro-band-copy.reveal-item {
  opacity: 1;
  transform: none;
}
body.reveal-ready .intro-band-copy.reveal-item span {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}
body.reveal-ready .intro-band-copy.reveal-item.is-in-view span { opacity: 1; transform: translate3d(0, 0, 0); }
body.reveal-ready .intro-band-copy.reveal-item.is-in-view span:nth-child(2) { transition-delay: 170ms; }

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}
.service-card {
  position: relative;
  overflow: hidden;
  padding: 50px;
  min-height: 100%;
  background: var(--light);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow .42s cubic-bezier(.16, 1, .3, 1), transform .42s cubic-bezier(.16, 1, .3, 1);
}
.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .48s cubic-bezier(.16, 1, .3, 1);
}
.service-card:hover,
.service-card:focus-within { transform: translateY(-7px); box-shadow: 0 18px 34px rgba(0,0,0,.13); }
.service-card:hover::after,
.service-card:focus-within::after { transform: scaleX(1); }
.service-card img {
  width: 13%;
  min-width: 64px;
  max-width: 92px;
  height: auto;
  object-fit: contain;
  margin: 0 0 22px auto;
  animation: service-icon-float 5.2s ease-in-out infinite;
  will-change: transform;
}
.service-card:nth-child(2) img { animation-delay: -1.25s; }
.service-card:nth-child(3) img { animation-delay: -2.5s; }
.service-card:nth-child(4) img { animation-delay: -3.75s; }
@keyframes service-icon-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
.service-card h3 {
  margin: 0 0 18px;
  color: #000;
  font-family: var(--font-pixel);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.5px;
  text-transform: capitalize;
}
.service-card p {
  color: #000;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 0;
}

.section-heading {
  display: block;
  margin-bottom: 2rem;
}
.section-heading.compact { max-width: 700px; }
.eyebrow { display: none; }
.testimonials {
  width: 100%;
  max-width: none;
  padding: 0;
}
.testimonials .section-heading {
  margin: 0;
  padding: 80px var(--gutter);
  background: #43c4ac;
  text-align: center;
}
.testimonials h2 {
  margin: 0 auto;
  max-width: 800px;
  color: #000;
  font-family: var(--font-body);
  font-size: clamp(32px, 3.05vw, 42px);
  font-weight: 600;
  line-height: 1.2;
}
.testimonial-grid {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  padding: 100px var(--gutter) 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.testimonial-grid figure {
  margin: 0;
  padding: 75px 35px;
  background: #fff;
  border: 1px solid #f4f5fa;
  border-radius: 10px;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-grid figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .07);
}
blockquote { margin: 0; color: #333; font-size: 16px; font-weight: 500; line-height: 1.6; }
figcaption {
  margin-top: 30px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
}

.clients {
  display: grid;
  grid-template-columns: minmax(220px, 19fr) 81fr;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 40px;
}
.clients .section-heading {
  margin: 0;
}
.clients h2 {
  margin: 0;
  color: #000;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.5px;
}
.clients-marquee-column { min-width: 0; }
.logo-marquee {
  overflow: hidden;
  border: 0;
  background: transparent;
  padding: 20px 0;
}
.logo-track {
  --logo-gap: clamp(36px, 5vw, 70px);
  width: max-content;
  display: flex;
  align-items: center;
  animation: scroll-logos 34s linear infinite;
  will-change: transform;
}
.logo-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}
.logo-track img {
  width: 145px;
  max-height: 86px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.08) contrast(.95);
  opacity: .82;
  transition: opacity .18s ease, filter .18s ease, transform .18s ease;
}
.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1) contrast(1);
  transform: translateY(-1px);
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes scroll-logos { to { transform: translateX(-50%); } }

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 40%) 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
  padding-top: 80px;
}
.faq h2 {
  margin: 0;
  color: #000;
  font-family: var(--font-pixel);
  font-size: clamp(32px, 2.7vw, 39px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -.5px;
  text-transform: uppercase;
}
.faq-list {
  display: grid;
  gap: 20px;
}
details {
  background: transparent;
  border: 0;
  border-bottom: 6px solid #000;
  border-radius: 0;
  padding: 0;
  transition: border-color .32s ease, background .32s ease, padding .32s ease;
}
details[open] {
  border-color: var(--teal-dark);
  background: linear-gradient(90deg, rgba(50,224,191,.08), transparent 74%);
  padding-right: 14px;
  padding-left: 14px;
}
summary {
  list-style: none;
  padding: 20px 0 30px;
  color: #000;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  transition: color .25s ease, transform .25s cubic-bezier(.16, 1, .3, 1);
}
summary:hover { color: var(--teal-dark); transform: translateX(4px); }
summary::-webkit-details-marker { display: none; }
summary::before {
  content: "+";
  display: inline-block;
  width: 52px;
  color: #000;
  font-family: var(--font-pixel);
  font-size: .9em;
  vertical-align: .04em;
}
summary::after { content: none; }
summary::before { transition: color .32s ease, transform .42s cubic-bezier(.16, 1, .3, 1); }
details[open] summary { color: var(--teal-dark); }
details[open] summary::before { content: "−"; color: var(--teal-dark); transform: rotate(180deg); }
details p {
  margin: 0 0 24px 70px;
  color: #000;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 900px;
}
details[open] p { animation: faq-answer-reveal .5s cubic-bezier(.16, 1, .3, 1) both; }
@keyframes faq-answer-reveal {
  from { opacity: 0; transform: translate3d(0, -10px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Homepage motion enhancement: applied only after JavaScript is ready. */
body.reveal-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity .72s ease var(--reveal-delay, 0ms),
    transform .72s cubic-bezier(.2, .75, .25, 1) var(--reveal-delay, 0ms);
}
body.reveal-ready .reveal-item.reveal-from-left { transform: translate3d(-34px, 0, 0); }
body.reveal-ready .reveal-item.reveal-from-right { transform: translate3d(34px, 0, 0); }
body.reveal-ready .reveal-item.is-in-view { opacity: 1; transform: translate3d(0, 0, 0); }
body.reveal-ready .about-section .section-label.reveal-item,
body.reveal-ready .about-section .section-copy.reveal-item {
  transition-duration: .96s;
  transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}
body.reveal-ready .about-section .section-copy.reveal-item { transition-delay: 150ms; }

.subpage-hero h1 {
  margin: 0 0 1.2rem;
  color: #000;
  font-family: var(--font-pixel);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.contact-form {
  display: grid;
  gap: 10px;
}
label { display: grid; gap: .4rem; color: #000; font-weight: 600; }
input, textarea {
  width: 100%;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 13px 15px;
  background: var(--light);
  color: #000;
  font: inherit;
  outline: none;
}
input:focus,
textarea:focus { box-shadow: 0 0 0 4px rgba(50,224,191,.18); }
.btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 0;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-family: var(--font-pixel);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--teal-dark); }
.btn-small { min-height: 40px; padding: 10px 16px; }
.contact-form .btn { margin-top: 2px; }
.turnstile-wrap {
  display: grid;
  justify-items: start;
  gap: 6px;
  margin-top: 4px;
}
.turnstile-widget {
  min-height: 65px;
  max-width: 100%;
}
.turnstile-status,
.form-status {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 1.4;
}
.turnstile-status:empty,
.form-status:empty { display: none; }
@media (max-width: 460px) {
  .turnstile-widget { min-height: 140px; }
}



.site-footer {
  --move-x: -3.7037%;
  --move-y: -3.7037%;
  --mouse-bg-rest-x: -3.7037%;
  --mouse-bg-rest-y: -3.7037%;
  --mouse-bg-overscan: 8%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px var(--gutter);
  background: #102b27;
  color: #000;
  text-align: center;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + var(--mouse-bg-overscan));
  height: calc(100% + var(--mouse-bg-overscan));
  z-index: -2;
  background-image: url("../images/footer.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(var(--move-x), var(--move-y), 0);
  transition: transform 1s cubic-bezier(0, .33, .07, 1.03);
  will-change: transform;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(255,255,255,.02);
}
.footer-grid {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-items: center;
  text-align: center;
}
.footer-grid > div:first-child {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 14px;
}
.footer-brand img {
  display: block;
  margin: 0 auto;
}
.footer-grid p {
  max-width: 820px;
  margin: 0 auto;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.footer-second-line {
  display: inline-block;
  margin-top: 2px;
}
address { font-style: normal; display: grid; gap: .35rem; color: #000; text-align: center; justify-items: center; }
address strong { display: none; }
address,
address a { color: #dee3eb; text-decoration: none; }
address a:hover { color: #fff; }
.footer-cta { display: none; }
.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(50, 224, 191, .9);
  color: #000;
  text-decoration: none;
  font-weight: 900;
  box-shadow: var(--shadow);
}

/* Lightweight contact popup, replacing the Elementor popup runtime. */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility 0s linear .18s;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

/* Remote Support opens as an enhancement on pages that include this modal.
   The normal /remote-support/ link remains in the HTML as a no-JavaScript fallback.
   The panel intentionally follows the same white-card treatment as the contact popup. */
.remote-support-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility 0s linear .18s;
}
.remote-support-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.remote-support-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90svh, 680px);
  overflow: auto;
  display: grid;
  justify-items: stretch;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 14px;
  color: #000;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  text-align: left;
}
.remote-support-panel h2 {
  max-width: calc(100% - 46px);
  margin: 0;
  color: #000;
  font-family: var(--font-pixel);
  font-size: clamp(30px, 4.1vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
  text-transform: uppercase;
  white-space: nowrap;
}
.remote-support-panel > p {
  max-width: 470px;
  margin: 18px 0 22px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}
.remote-support-panel .remote-support-widget {
  width: auto;
  justify-self: center;
  transform: none;
  gap: 0;
  margin: 4px 0 0;
}
.remote-support-full-link {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 2px 0;
  color: var(--teal-dark);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: transform .18s ease, color .18s ease;
}
.remote-support-full-link:hover,
.remote-support-full-link:focus-visible {
  color: #000;
  background: transparent;
  transform: translateY(-1px);
}
@media (max-width: 520px) {
  .remote-support-panel h2 {
    max-width: calc(100% - 42px);
    font-size: clamp(27px, 8.2vw, 38px);
    white-space: normal;
  }
  .remote-support-panel > p { font-size: 15px; }
}
/* Keep the modal views mutually exclusive. The contact form itself uses
   display:grid, so the explicit rule is needed when JavaScript adds hidden. */
.contact-panel [hidden] { display: none !important; }
.contact-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(90svh, 760px);
  overflow: auto;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.contact-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-pixel);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  text-transform: uppercase;
}
.contact-panel > p,
.contact-panel [data-contact-intro] > p {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
}
.contact-success {
  padding: 8px 0 2px;
}
.contact-success:focus {
  outline: none;
}
.contact-success p {
  max-width: 470px;
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.login-page-shell {
  --move-x: -3.7037%;
  --move-y: -3.7037%;
  --mouse-bg-rest-x: -3.7037%;
  --mouse-bg-rest-y: -3.7037%;
  --mouse-bg-overscan: 8%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 100px;
}
.login-page-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + var(--mouse-bg-overscan));
  height: calc(100% + var(--mouse-bg-overscan));
  z-index: -2;
  background-image: url("../images/bgslider.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(var(--move-x), var(--move-y), 0);
  transition: transform 1s cubic-bezier(0, .33, .07, 1.03);
  will-change: transform;
}
.login-page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.04) 52%, transparent 70%);
}
.login-page-shell .login-shell {
  min-height: calc(100svh - 100px);
  transform: translateY(-5px);
}

.remote-support-shell {
  --move-x: -7.9832%;
  --move-y: -7.9832%;
  --mouse-bg-rest-x: -7.9832%;
  --mouse-bg-rest-y: -7.9832%;
  --mouse-bg-overscan: 19%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  place-items: center;
  padding: 100px var(--gutter) 0;
}
.remote-support-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + var(--mouse-bg-overscan));
  height: calc(100% + var(--mouse-bg-overscan));
  z-index: -2;
  background-image: url("../images/bgslider.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(var(--move-x), var(--move-y), 0);
  transition: transform 1s cubic-bezier(0, .33, .07, 1.03);
  will-change: transform;
}
.remote-support-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.04) 52%, transparent 70%);
}
.remote-support-widget {
  display: grid;
  justify-items: center;
  gap: 0;
  width: min(720px, calc(100vw - 40px));
  transform: translateY(-100px);
}
.remote-support-title {
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: var(--font-pixel);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
  text-align: center;
  text-transform: uppercase;
}
.screenconnect-crop {
  position: relative;
  width: min(314px, 92vw);
  height: 82px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(4, 32, 33, .042);
  border: 1px solid rgba(255,255,255,.045);
  box-shadow:
    0 1px 0 rgba(255,255,255,.035),
    0 0 28px rgba(16, 56, 57, .16),
    0 0 48px rgba(34, 226, 208, .12),
    0 0 78px rgba(34, 226, 208, .09),
    0 0 120px rgba(34, 226, 208, .10),
    0 0 165px rgba(34, 226, 208, .055),
    inset 0 0 0 1px rgba(22, 214, 198, .03);
  backdrop-filter: blur(1.8px);
}
.screenconnect-crop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(10, 38, 39, .12), transparent 14%, transparent 86%, rgba(10, 38, 39, .11)),
    linear-gradient(90deg, rgba(18, 56, 58, .11), transparent 10%, transparent 90%, rgba(18, 56, 58, .11)),
    radial-gradient(circle at center, transparent 70%, rgba(25, 215, 200, .035) 100%);
  box-shadow:
    inset 0 16px 24px rgba(8, 26, 27, .12),
    inset 0 -16px 24px rgba(8, 26, 27, .12),
    inset 18px 0 26px rgba(8, 26, 27, .12),
    inset -18px 0 26px rgba(8, 26, 27, .12),
    inset 0 0 18px rgba(28, 221, 205, .05),
    0 0 22px rgba(32, 230, 212, .10),
    0 0 44px rgba(32, 230, 212, .08);
}
.screenconnect-crop iframe {
  position: absolute;
  top: -292px;
  left: -810px;
  width: 1914px;
  height: 914px;
  min-width: 1914px;
  min-height: 914px;
  max-width: none;
  max-height: none;
  border: none;
  opacity: .968;
  filter: saturate(.86) brightness(1.055) contrast(.955);
}


.screenconnect-crop.is-loading iframe {
  opacity: 0;
}
.screenconnect-loading {
  --sc-field-x: 22px;
  --sc-field-y: 18px;
  --sc-field-w: 270px;
  --sc-field-h: 46px;
  --sc-arrow-w: 54px;
  --sc-hole-x: 25px;
  --sc-hole-y: 24px;
  --sc-hole-w: 195px;
  --sc-hole-h: 34px;
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(7, 42, 39, .98), rgba(10, 77, 70, .96) 48%, rgba(7, 42, 39, .98)),
    rgba(8, 48, 44, .98);
  box-shadow:
    inset 0 0 0 1px rgba(37, 235, 216, .30),
    inset 0 0 24px rgba(37, 235, 216, .14),
    0 0 24px rgba(37, 235, 216, .28),
    0 0 70px rgba(37, 235, 216, .10);
  backdrop-filter: blur(1px);
  transition: background .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
}
.screenconnect-loading-field {
  position: absolute;
  left: var(--sc-field-x);
  top: var(--sc-field-y);
  width: var(--sc-field-w);
  height: var(--sc-field-h);
  display: grid;
  grid-template-columns: 1fr var(--sc-arrow-w);
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(28, 36, 36, .98);
  border: 1px solid rgba(37, 235, 216, .60);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 0 18px rgba(37, 235, 216, .08),
    0 0 24px rgba(33, 230, 208, .28),
    0 9px 20px rgba(0,0,0,.16);
  transition: background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.screenconnect-loading-placeholder {
  position: relative;
  z-index: 2;
  padding: 0 13px;
  color: rgba(255,255,255,.48);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1;
  transition: opacity .14s ease;
}
.screenconnect-loading-arrow {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #2bd7c7, #18b7a4);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  padding-left: 2px;
  padding-bottom: 1px;
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,.18),
    0 0 18px rgba(33, 230, 208, .25);
  transition: opacity .14s ease, background .14s ease, box-shadow .14s ease;
}
.screenconnect-ready-skin {
  display: none;
}

/* Ready state: same shared widget as loading.
   Only the inner input fill is cut out, so the real ScreenConnect input/code
   is visible and usable underneath. */
.screenconnect-crop.is-ready iframe {
  opacity: 1;
  filter: none;
}
.screenconnect-crop.is-ready .screenconnect-loading {
  background:
    linear-gradient(180deg, rgba(7, 42, 39, .98), rgba(10, 77, 70, .96) 48%, rgba(7, 42, 39, .98)),
    rgba(8, 48, 44, .98);
  box-shadow:
    inset 0 0 0 1px rgba(37, 235, 216, .30),
    inset 0 0 24px rgba(37, 235, 216, .14),
    0 0 24px rgba(37, 235, 216, .28),
    0 0 70px rgba(37, 235, 216, .10);
  backdrop-filter: blur(1px);
  -webkit-mask:
    linear-gradient(#fff 0 0),
    linear-gradient(#fff 0 0);
  -webkit-mask-size:
    100% 100%,
    var(--sc-hole-w) var(--sc-hole-h);
  -webkit-mask-position:
    0 0,
    var(--sc-hole-x) var(--sc-hole-y);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.screenconnect-crop.is-ready .screenconnect-loading-field {
  position: absolute;
  left: var(--sc-field-x);
  top: var(--sc-field-y);
  width: var(--sc-field-w);
  height: var(--sc-field-h);
  display: grid;
  grid-template-columns: 1fr var(--sc-arrow-w);
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(28, 36, 36, .98);
  border: 1px solid rgba(37, 235, 216, .60);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 0 18px rgba(37, 235, 216, .08),
    0 0 24px rgba(33, 230, 208, .28),
    0 9px 20px rgba(0,0,0,.16);
  -webkit-mask:
    linear-gradient(#fff 0 0),
    linear-gradient(#fff 0 0);
  -webkit-mask-size:
    100% 100%,
    var(--sc-hole-w) var(--sc-hole-h);
  -webkit-mask-position:
    0 0,
    calc(var(--sc-hole-x) - var(--sc-field-x)) calc(var(--sc-hole-y) - var(--sc-field-y));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.screenconnect-crop.is-ready .screenconnect-loading-placeholder {
  opacity: 0;
}
.screenconnect-crop.is-ready .screenconnect-loading-arrow {
  position: relative;
  z-index: 5;
  opacity: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #2bd7c7, #18b7a4);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  padding-left: 2px;
  padding-bottom: 1px;
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,.18),
    0 0 18px rgba(33, 230, 208, .25);
}

/* Submitted/downloading state: return to the fully opaque local placeholder
   if ScreenConnect triggers another iframe load/state change. */
.screenconnect-crop.is-submitted iframe {
  opacity: 0;
}
.screenconnect-crop.is-submitted .screenconnect-loading {
  background:
    linear-gradient(180deg, rgba(7, 42, 39, .98), rgba(10, 77, 70, .96) 48%, rgba(7, 42, 39, .98)),
    rgba(8, 48, 44, .98);
  box-shadow:
    inset 0 0 0 1px rgba(37, 235, 216, .30),
    inset 0 0 24px rgba(37, 235, 216, .14),
    0 0 24px rgba(37, 235, 216, .28);
  backdrop-filter: blur(1px);
}
.screenconnect-crop.is-submitted .screenconnect-ready-skin {
  display: none;
}
.screenconnect-crop.is-submitted .screenconnect-loading-field {
  background: rgba(28, 36, 36, .98);
  border: 1px solid rgba(37, 235, 216, .60);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    inset 0 0 18px rgba(37, 235, 216, .08),
    0 0 24px rgba(33, 230, 208, .28),
    0 9px 20px rgba(0,0,0,.16);
}
.screenconnect-crop.is-submitted .screenconnect-loading-placeholder {
  opacity: 1;
}
.screenconnect-crop.is-submitted .screenconnect-loading-arrow {
  opacity: 1;
}

.remote-support-note {
  max-width: 620px;
  margin: 18px 0 20px;
  color: rgba(255,255,255,.86);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0;
}

.syncro-login-form {
  width: min(430px, 100%);
  margin: 0 auto;
  transform: translateY(-5px);
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, .92);
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.syncro-login-form h1 {
  margin: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
}
.syncro-login-form p { text-align: center; margin: 0; }
.syncro-login-form .form-group { display: grid; gap: 8px; }
.syncro-login-form .login-actions { display: grid; }
.syncro-login-form input[type="submit"] { width: 100%; }

.page-main { padding-top: 100px; }
.page-main.remote-support-shell {
  margin-top: 0;
  padding: 100px var(--gutter) 0;
}

.login-scroll-spacer {
  height: 2px;
  background: #fff;
}

.subpage-hero,
.login-shell {
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  min-height: 62svh;
  display: grid;
  align-content: center;
  padding: 80px var(--gutter);
}
.subpage-hero p:not(.eyebrow) { max-width: 680px; color: #000; font-size: 18px; }

@media (max-width: 980px) {
  .nav { min-height: 86px; padding-top: 22px; padding-bottom: 12px; }
  .section-anchor { scroll-margin-top: 86px; }
  .split,
  .faq,
  .clients { grid-template-columns: 1fr; }
  .services,
  .testimonial-grid { grid-template-columns: 1fr; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .service-card { padding: 30px; }
  .service-card img { width: 23%; min-width: 76px; max-width: 120px; }
  .testimonial-grid { padding-top: 60px; }
  summary { font-size: 22px; }
  details p { font-size: 16px; margin-left: 0; }
}

@media (max-width: 760px) {
  .nav { min-height: 74px; }
  .section-anchor { scroll-margin-top: 74px; }
  .brand img { width: 150px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 72px;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    padding: .6rem;
    background: rgba(255,255,255,.96);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transform-origin: top;
    transform: scaleY(.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
  }
  .nav-menu.is-open {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .nav-menu a { display: block; padding: 1rem; font-size: 16px; }
  .hero { padding-top: 130px; padding-bottom: 90px; }
  .typewriter { font-size: clamp(24px, 7vw, 40px); line-height: 1.5; }
  .hero-link { font-size: 14px; margin-top: 46px; }
  .section-label { font-size: 42px; }
  .intro-band h2,
  .testimonials h2 { font-size: 30px; }
  .faq h2 { font-size: 30px; line-height: 1.35; }
  summary::before { width: 34px; }
  .logo-track { animation-duration: 45s; }
}

@media (max-width: 425px) {
  .typewriter { font-size: 20px; line-height: 3; }
  .hero-link { margin-top: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .logo-track { animation: none; width: auto; justify-content: center; }
  details[open] p { animation: none; }
  .logo-set[aria-hidden="true"] { display: none; }
  .logo-set { flex-wrap: wrap; justify-content: center; padding-right: 0; }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .hero::before,
  .site-footer::before,
  .remote-support-shell::before,
  .login-page-shell::before {
    transform: translate3d(var(--mouse-bg-rest-x), var(--mouse-bg-rest-y), 0) !important;
    transition: none !important;
  }
}

@media (max-width: 520px) {
  .screenconnect-crop {
    transform: scale(.92);
    transform-origin: center;
  }
  .remote-support-widget {
    gap: .85rem;
  }
}

@media (max-width: 767px) {
  .remote-support-widget {
    transform: translateY(-56px);
  }
}


.field-error,
.formspree-error {
  min-height: 0;
  color: #a10000;
  font-size: 13px;
  line-height: 1.35;
}

.field-error:empty,
.formspree-error:empty {
  display: none;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

