:root {
  --bg: #f4f8fc;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #dbe6f4;
  --primary: #0082c6;
  --accent: #00a9b8;
  --primary-strong: #006da6;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 20px 55px rgba(16, 53, 97, 0.1);
  --nav-bg: rgba(246, 250, 255, 0.62);
  --nav-top-gap: 2.3rem;
  --section-top-safe: 9.75rem;
  --section-bottom-safe: 5.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.75rem;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 65%, #f6f9ff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  padding-top: 0;
}

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

.container {
  width: min(1140px, calc(100vw - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: var(--section-top-safe) 0 var(--section-bottom-safe);
}

.section-light {
  background: #ebf3fc;
}

.section-white {
  background: #ffffff;
}

main > section + section {
  border-top: 1px solid #d4e2f3;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: var(--nav-top-gap);
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: var(--nav-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 14px 34px rgba(12, 46, 87, 0.14);
  backdrop-filter: blur(20px) saturate(150%);
  margin-top: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 140px;
  padding-left: 0.35rem;
}

.brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 36px;
  object-fit: contain;
}

.menu-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.menu-links a {
  display: inline-flex;
  padding: 0.3rem 0.15rem;
  border-radius: 8px;
  font-weight: 600;
  color: #34506f;
  transition: color 0.2s ease;
}

.menu-links a:hover {
  color: var(--primary);
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

@media (min-width: 921px) {
  .nav {
    position: relative;
  }

  .menu-wrap {
    justify-content: flex-end;
  }

  .menu-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .menu-actions {
    margin-left: 0;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 38px;
  min-width: 78px;
  border: 1px solid rgba(168, 197, 230, 0.9);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(17, 62, 108, 0.12);
  padding: 0;
  z-index: 25;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.lang-switch::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #5c7693;
  border-bottom: 2px solid #5c7693;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.lang-switch-trigger {
  border: 0;
  background: transparent;
  height: 100%;
  width: 100%;
  padding: 0 1.65rem 0 0.75rem;
  border-radius: 999px;
  color: #34506f;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-align: left;
  transition: color 0.2s ease;
}

.lang-switch-trigger:focus {
  outline: none;
}

.lang-switch:focus-within {
  border-color: rgba(0, 130, 198, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 3px rgba(0, 130, 198, 0.16),
    0 10px 24px rgba(10, 70, 120, 0.18);
}

.lang-switch:hover {
  border-color: rgba(0, 130, 198, 0.45);
  transform: translateY(-1px);
}

.lang-switch.open::after {
  transform: translateY(-34%) rotate(225deg);
}

.lang-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 100%;
  display: grid;
  gap: 0.28rem;
  padding: 0.36rem;
  border-radius: 14px;
  border: 1px solid rgba(164, 194, 227, 0.95);
  background: linear-gradient(165deg, rgba(254, 255, 255, 0.98), rgba(237, 246, 255, 0.96));
  box-shadow:
    0 18px 36px rgba(12, 56, 96, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switch.open .lang-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lang-option {
  border: 0;
  background: transparent;
  color: #204261;
  border-radius: 10px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.52rem;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(0, 130, 198, 0.14);
  color: #083e67;
  outline: none;
}

.lang-option.is-active {
  background: linear-gradient(120deg, rgba(0, 130, 198, 0.86), rgba(0, 169, 184, 0.84));
  color: #fff;
  font-weight: 600;
}

.teamviewer-btn {
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.95rem;
  padding-right: 1.3rem;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  cursor: pointer;
}

.teamviewer-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.support-modal[hidden] {
  display: none;
}

.support-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 44, 0.52);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.support-modal-dialog {
  position: relative;
  width: min(860px, calc(100vw - 2rem));
  border-radius: 24px;
  border: 1px solid #c9ddf2;
  background: linear-gradient(150deg, #ffffff 0%, #f3f9ff 100%);
  box-shadow:
    0 30px 80px rgba(5, 28, 52, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  padding: 2rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.24s ease, transform 0.3s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.support-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.support-modal.is-open .support-modal-backdrop {
  opacity: 1;
}

.support-modal.is-open .support-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.support-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.85fr);
  gap: 1.6rem;
}

.support-modal-left h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.35rem, 1.4vw + 0.95rem, 1.9rem);
  line-height: 1.2;
}

.support-modal-left p {
  margin: 0;
  color: #47617c;
}

.support-modal-eyebrow {
  margin: 0 0 0.45rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-modal-right {
  border: 1px solid #d4e5f5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.support-modal-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 12px;
  border: 1px solid #d2e3f5;
  background: #fff;
  padding: 0.7rem 0.8rem;
  color: #1c4469;
  font-weight: 700;
}

.support-modal-contact-icon {
  width: 18px;
  height: 18px;
  color: #5e7d9d;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.support-modal-contact-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.9;
}

.support-modal-teamviewer {
  width: 100%;
  margin-top: 0.2rem;
}

.support-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #e6f1fb;
  color: #2a5178;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
}

body.support-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .support-modal,
  .support-modal-backdrop,
  .support-modal-dialog {
    transition: none;
  }

  .support-modal-dialog {
    transform: none;
  }
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #2b4664;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-gradient,
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  background:
    radial-gradient(circle at 15% 30%, rgba(0, 130, 198, 0.22), transparent 38%),
    radial-gradient(circle at 78% 20%, rgba(0, 169, 184, 0.18), transparent 34%),
    radial-gradient(circle at 55% 72%, rgba(88, 162, 255, 0.13), transparent 32%);
}

.hero-grid {
  background-image:
    linear-gradient(to right, rgba(0, 130, 198, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 130, 198, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 90%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 7.1rem 0 5.8rem;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 3.4vw + 1rem, 4.2rem);
}

.lead {
  margin: 1.2rem 0 1.8rem;
  max-width: 78ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.15rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  padding: 0.8rem 1.4rem;
  color: #fff;
  font-size: 0.96rem;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: 0 10px 32px rgba(0, 130, 198, 0.27);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 130, 198, 0.24);
}

.hero-vendors {
  margin-top: 2rem;
  max-width: 840px;
}

.hero-vendors p {
  margin: 0 0 0.7rem;
  color: #5e7491;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.vendor-window {
  overflow: hidden;
  border-radius: 10px;
}

.vendor-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0.2rem 0;
  transform: translateX(0);
}

.vendor-item {
  flex: 0 0 auto;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-logo img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.vendor-item img {
  width: auto;
  max-width: none;
  height: 20px;
  filter: grayscale(1) saturate(0) brightness(0.72) contrast(0.85);
  opacity: 0.4;
  transition: filter 380ms ease, opacity 380ms ease;
}

.vendor-item:hover img,
.vendor-item:focus-visible img,
.vendor-item:focus img {
  filter: grayscale(0) saturate(1) brightness(1) contrast(1);
  opacity: 1;
}

.services-grid,
.products-grid,
.why-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.why-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.45rem;
  box-shadow: var(--shadow);
}

.service-card h3,
.product-card h3,
.why-item h3 {
  margin: 0.15rem 0 0.75rem;
  line-height: 1.3;
}

.service-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  perspective: 1200px;
  min-height: 320px;
}

.product-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  perspective: 1200px;
  min-height: 320px;
}

.service-card:focus-visible {
  outline: 3px solid rgba(0, 130, 198, 0.32);
  outline-offset: 4px;
}

.service-card-inner {
  display: grid;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-card-inner {
  display: grid;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.service-card.is-flipped .service-card-inner {
  transform: rotateY(180deg);
}

.product-card.is-flipped .product-card-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .services-grid:not(.has-open-card) .service-card:hover .service-card-inner {
    transform: rotateY(180deg);
  }

  .products-grid:not(.has-open-card) .product-card:hover .product-card-inner {
    transform: rotateY(180deg);
  }
}

.service-card-face {
  grid-area: 1 / 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.45rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.product-card-face {
  grid-area: 1 / 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 2rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-card-face[aria-hidden="true"] {
  pointer-events: none;
}

.product-card-face[aria-hidden="true"] {
  pointer-events: none;
}

.service-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
}

.service-card-front .icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  margin: 0 auto 1rem;
}

.service-card-front .icon svg {
  width: 40px;
  height: 40px;
}

.service-card-front h3 {
  margin: 0;
  max-width: 24ch;
}

.service-card-back {
  transform: rotateY(180deg);
}

.product-card-back {
  transform: rotateY(180deg);
}

.service-card p,
.product-card p,
.why-item p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.service-card p:last-child,
.product-card p:last-child,
.why-item p:last-child {
  margin-bottom: 0;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 130, 198, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 0.55rem;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-logo {
  width: clamp(140px, 18vw, 170px);
  height: clamp(140px, 18vw, 170px);
  color: #7f95ad;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.product-meta {
  min-width: 0;
  text-align: center;
}

.product-meta h3 {
  margin-bottom: 0.35rem;
}

.tagline {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--primary);
}

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

.contact-wrap {
  max-width: 1020px;
}

.client-proof {
  margin-top: 3rem;
  padding: 0.25rem 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.client-proof-label {
  margin: 0 0 0.7rem;
  color: #5e7491;
  font-size: 0.88rem;
  font-weight: 600;
}

.client-logo-window {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  transform: translateX(0);
}

.client-logo-item {
  flex: 0 0 auto;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.client-logo-item img {
  width: auto;
  max-width: none;
  max-height: 26px;
  display: block;
  margin: 0;
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(0.82);
  opacity: 0.4;
  transition: filter 280ms ease, opacity 280ms ease;
}

.client-logo-item:hover img,
.client-logo-item:focus-within img {
  filter: grayscale(0.15) saturate(0.7) brightness(0.96);
  opacity: 0.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.section-head.compact {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: #1f3651;
}

.contact-form label span {
  color: #6d8098;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d9ee;
  border-radius: var(--radius-md);
  font: inherit;
  color: var(--text);
  background: #fcfeff;
  padding: 0.68rem 0.76rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #88c2e6;
  outline: 2px solid rgba(0, 130, 198, 0.12);
}

.contact-form button[disabled] {
  opacity: 0.78;
  cursor: wait;
  transform: none;
  box-shadow: 0 8px 20px rgba(0, 130, 198, 0.2);
}

.contact-form-status {
  margin: 0.1rem 0 0;
  min-height: 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form-status-success {
  color: #1f6a44;
}

.contact-form-status-error {
  color: #9a2d2d;
}

.contact-meta {
  margin-top: 0.2rem;
  display: grid;
  gap: 0.52rem;
}

.contact-meta-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem;
}

.contact-meta-icon {
  width: 20px;
  height: 20px;
  color: #7a8fa7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-meta-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.contact-meta-text {
  display: flex;
  align-items: center;
}

.contact-meta-value {
  color: #274560;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}

.contact-meta-text a.contact-meta-value {
  color: var(--primary);
}

.site-footer {
  border-top: 1px solid #d9e4f1;
  padding: 1.2rem 0;
  background: #f8fbff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #60758f;
  font-size: 0.93rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-links a {
  color: #3f638c;
  font-weight: 600;
}

@media (min-width: 1024px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  main {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  main::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  main > section {
    min-height: 100dvh;
  }
}

@media (max-width: 1023px) {
  html,
  body {
    height: auto;
    overflow: visible;
  }

  main {
    height: auto;
    overflow: visible;
  }
}

@media (max-width: 920px) {
  :root {
    --nav-top-gap: 0.75rem;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .menu-wrap {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    border-radius: 16px;
    border: 1px solid #cadbf0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 50px rgba(15, 46, 82, 0.18);
    padding: 0.9rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-wrap.open {
    display: flex;
  }

  .menu-links {
    display: grid;
    margin: 0;
    gap: 0.4rem;
  }

  .menu-actions {
    justify-content: space-between;
  }

  .teamviewer-btn {
    text-align: center;
  }

  .service-card {
    min-height: 290px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section-top-safe: 5.9rem;
    --section-bottom-safe: 4.3rem;
  }

  .container {
    width: min(1140px, calc(100vw - 1.35rem));
  }

  .nav {
    min-height: 64px;
    padding: 0.4rem 0.55rem;
  }

  .brand {
    min-width: 120px;
  }

  .brand img {
    height: 32px;
  }

  .hero-content {
    padding: 4.3rem 0;
  }

  .hero-vendors {
    margin-top: 1.45rem;
  }

  .vendor-track {
    gap: 2rem;
    padding: 0.1rem 0;
  }

  .vendor-item {
    height: 40px;
  }

  .vendor-item img {
    height: 22px;
  }

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

  .client-proof {
    margin-top: 1rem;
  }

  .client-logo-track {
    gap: 2rem;
  }

  .client-logo-item {
    height: 30px;
  }

  .client-logo-item img {
    max-width: 108px;
    max-height: 22px;
  }

  .support-modal-dialog {
    border-radius: 20px;
    padding: 1.2rem;
  }

  .support-modal-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
