:root {
  --bg: #f5f9ff;
  --bg-soft: #edf4ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #18283a;
  --muted: #4b6580;
  --line: rgba(28, 68, 115, 0.15);
  --accent: #1e82de;
  --accent-deep: #155ea5;
  --accent-warm: #72b7ff;
  --shadow: 0 16px 48px rgba(24, 60, 104, 0.12);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "IBM Plex Sans", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(30, 130, 222, 0.2), transparent 38%),
    radial-gradient(circle at 84% 8%, rgba(114, 183, 255, 0.22), transparent 30%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-loader-active {
  overflow: hidden;
}

body.is-loader-active .bg-orb,
body.is-loader-active .site-header,
body.is-loader-active .main-content,
body.is-loader-active .site-footer {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(2px);
}

.bg-orb,
.site-header,
.main-content,
.site-footer {
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.75, 0.15, 1),
    transform 0.72s cubic-bezier(0.2, 0.75, 0.15, 1),
    filter 0.72s cubic-bezier(0.2, 0.75, 0.15, 1);
  will-change: opacity, transform, filter;
}

.persoft-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(30, 130, 222, 0.18), transparent 40%),
    radial-gradient(circle at 84% 8%, rgba(114, 183, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(245, 249, 255, 0.98), rgba(236, 244, 255, 0.98));
  backdrop-filter: blur(2px);
  transition: opacity 0.78s cubic-bezier(0.2, 0.75, 0.15, 1), visibility 0.78s cubic-bezier(0.2, 0.75, 0.15, 1);
  transform: translateZ(0);
  will-change: opacity, visibility;
}

.persoft-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.persoft-loader.is-fading-out {
  opacity: 0;
}

.persoft-loader__canvas-wrap {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  will-change: transform;
}

.persoft-loader__canvas {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateZ(0);
  will-change: transform;
}

.persoft-loader__text {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, 24px);
  width: min(900px, calc(100% - 1.5rem));
  text-align: center;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  transform-style: preserve-3d;
  will-change: opacity, transform, filter;
}

.persoft-loader__text.is-revealed {
  opacity: 1;
  transform: translate(-50%, 0);
  filter: blur(0);
}

.persoft-loader__tagline {
  margin: 0;
  color: #8e949d;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 3.1rem);
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-shadow: 0 0 16px rgba(146, 152, 154, 0.25);
}

.persoft-loader__brandline {
  margin: 0.25rem 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 8.2vw, 8.4rem);
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 0.95;
}

.persoft-loader__per {
  color: #166572;
  font-weight: 500;
  text-shadow:
    0 0 14px rgba(22, 101, 114, 0.34),
    0 0 28px rgba(21, 157, 137, 0.18);
}

.persoft-loader__soft {
  color: #1f1d23;
  font-weight: 500;
  text-shadow: 0 0 14px rgba(31, 29, 35, 0.16);
}

.persoft-loader__claim {
  margin: 0.38rem 0 0;
  color: #5b6069;
  font-family: "IBM Plex Sans", "Trebuchet MS", sans-serif;
  font-size: clamp(1.15rem, 2.6vw, 3.55rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  top: -120px;
  left: -80px;
  background: #8fc9ff;
}

.orb-b {
  top: 18%;
  right: -140px;
  background: #b5dcff;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.main-content.container {
  width: min(1800px, calc(100% - 2rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 249, 255, 0.88);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-wordmark {
  line-height: 1;
}

.brand.is-admin {
  color: #12b8ff;
  text-shadow:
    0 0 8px rgba(18, 184, 255, 0.62),
    0 0 20px rgba(18, 184, 255, 0.28);
  animation: brand-admin-glow 2.2s ease-in-out infinite;
}

.brand-admin-icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  filter: drop-shadow(0 0 7px rgba(18, 184, 255, 0.52));
}

.brand-admin-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes brand-admin-glow {
  0% {
    text-shadow:
      0 0 8px rgba(18, 184, 255, 0.62),
      0 0 20px rgba(18, 184, 255, 0.28);
  }

  50% {
    text-shadow:
      0 0 12px rgba(18, 184, 255, 0.82),
      0 0 28px rgba(18, 184, 255, 0.4);
  }

  100% {
    text-shadow:
      0 0 8px rgba(18, 184, 255, 0.62),
      0 0 20px rgba(18, 184, 255, 0.28);
  }
}

.menu-toggle {
  margin-left: auto;
  padding: 0.55rem 0.9rem;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 600;
  display: none;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.22rem;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 0.93rem;
  padding: 0.42rem 0.72rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: 0.24s ease;
}

button.nav-link {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(30, 130, 222, 0.12);
}

.nav-link.is-active {
  background: rgba(30, 130, 222, 0.2);
  color: var(--accent-deep);
  font-weight: 600;
}

.nav-link-direct {
  background: linear-gradient(135deg, rgba(21, 157, 137, 0.16), rgba(22, 101, 114, 0.2));
  border: 1px solid rgba(21, 157, 137, 0.35);
  color: #0f5e6c;
  font-weight: 700;
}

.nav-link-direct-first {
  margin-left: auto;
}

.nav-link-direct:hover {
  background: linear-gradient(135deg, rgba(21, 157, 137, 0.24), rgba(22, 101, 114, 0.28));
  border-color: rgba(21, 157, 137, 0.52);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 0.42rem;
  font-size: 0.72em;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  min-width: 220px;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(16, 48, 92, 0.16);
  display: none;
  z-index: 25;
}

.nav-dropdown.is-open > .nav-dropdown-menu {
  display: block;
}

@media (min-width: 901px) {
  .nav-dropdown:hover > .nav-dropdown-menu,
  .nav-dropdown:focus-within > .nav-dropdown-menu {
    display: block;
  }
}

.nav-sub-link {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.52rem 0.6rem;
  border-radius: 9px;
}

.nav-sub-link:hover {
  background: rgba(30, 130, 222, 0.12);
}

.nav-sub-link.is-active {
  background: rgba(30, 130, 222, 0.2);
  color: var(--accent-deep);
  font-weight: 600;
}

.main-content {
  padding: 2.8rem 0 4rem;
}

.page-hero {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(235, 244, 255, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.4rem, 3vw, 2.8rem);
}

.page-hero.is-compact {
  padding: clamp(0.9rem, 2vw, 1.45rem);
}

.kicker {
  margin: 0;
  font-size: 0.77rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.page-hero h1 {
  margin: 0.45rem 0 0.85rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.16;
  text-wrap: balance;
}

.page-hero.is-compact h1 {
  margin: 0.35rem 0 0.42rem;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
  text-wrap: pretty;
}

.page-hero.is-compact .lead {
  font-size: 0.95rem;
  max-width: 62ch;
}

.meta {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.page-content {
  margin-top: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  min-height: 46px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.cta-secondary {
  background: rgba(30, 130, 222, 0.1);
  border-color: rgba(30, 130, 222, 0.35);
  color: var(--accent-deep);
}

.cta-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.home-services {
  margin-top: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.5vw, 1.6rem);
}

.home-section-head h2 {
  margin: 0.45rem 0 0.5rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.2;
}

.home-section-head p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.service-card {
  position: relative;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 130, 222, 0.34);
  box-shadow: 0 10px 22px rgba(22, 58, 101, 0.12);
}

.service-card:focus-visible {
  outline: 3px solid rgba(30, 130, 222, 0.36);
  outline-offset: 2px;
}

.service-card.is-bouncing {
  animation: service-card-rubber 0.28s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}

.service-card.is-unavailable {
  border-style: dashed;
}

.service-card.is-unavailable .service-link {
  color: var(--muted);
}

@keyframes service-card-rubber {
  0% {
    transform: scale(1);
  }

  34% {
    transform: scale(1.04);
  }

  58% {
    transform: scale(0.985);
  }

  78% {
    transform: scale(1.015);
  }

  100% {
    transform: scale(1);
  }
}

.service-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-link {
  display: inline-block;
  margin-top: 0.72rem;
  text-decoration: none;
  color: var(--accent-deep);
  font-weight: 600;
}

.service-edit-link {
  position: absolute;
  top: 0.58rem;
  right: 0.58rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(30, 130, 222, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-deep);
  z-index: 2;
}

.service-edit-link:hover {
  background: rgba(30, 130, 222, 0.12);
}

.service-edit-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.home-pillars {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.pillar {
  background: linear-gradient(170deg, #ffffff, #edf5ff);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.pillar h3 {
  margin: 0 0 0.46rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
}

.content-prose {
  padding: clamp(1.2rem, 2.7vw, 2.2rem);
  font-size: 1rem;
  line-height: 1.72;
}

.content-prose h2,
.content-prose h3,
.content-prose h4 {
  margin: 1.4em 0 0.55em;
  line-height: 1.25;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.content-prose p,
.content-prose ul,
.content-prose ol,
.content-prose figure,
.content-prose table {
  margin: 0 0 1rem;
}

.content-prose ul,
.content-prose ol {
  padding-left: 1.2rem;
}

.content-prose li + li {
  margin-top: 0.5rem;
}

.content-prose a {
  color: var(--accent-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.content-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(16, 44, 84, 0.16);
}

.content-prose iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(16, 44, 84, 0.16);
}

.slug-contact .contact-lead {
  max-width: 44ch;
}

.slug-contact .contact-lead a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
}

.slug-contact .vcard-top-info h4 {
  margin: 0 0 0.62rem;
  line-height: 1.35;
}

.slug-contact .contact-phone-row {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
}

.slug-contact .contact-phone-link {
  display: inline-block;
  margin-left: 0.2rem;
  font-size: clamp(1.25rem, 4.2vw, 1.72rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.content-prose table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}

.content-prose th,
.content-prose td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

.content-prose th {
  background: rgba(30, 130, 222, 0.1);
}

.portal-box,
.shortcode-box {
  border-radius: 14px;
  border: 1px dashed rgba(30, 130, 222, 0.4);
  background: rgba(30, 130, 222, 0.08);
  padding: 1rem 1.05rem;
  margin: 1rem 0;
}

.portal-box h3 {
  margin: 0 0 0.45rem;
}

.button-link {
  display: inline-block;
  text-decoration: none;
  padding: 0.58rem 0.95rem;
  border-radius: 11px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
}

.portal-web-page .portal-web-highlight {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(30, 130, 222, 0.28);
  background: linear-gradient(140deg, rgba(30, 130, 222, 0.08), rgba(114, 183, 255, 0.1));
  color: #163e67;
  font-weight: 500;
}

.portal-web-kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.15rem 0 1.3rem;
}

.portal-web-kpi-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.85rem 0.9rem;
}

.portal-web-kpi-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.portal-web-kpi-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.portal-web-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.portal-web-feature-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.95rem;
}

.portal-web-feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.portal-web-feature-card p {
  margin: 0;
  color: var(--muted);
}

.portal-web-gallery {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.portal-web-gallery figure {
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.65rem;
}

.portal-web-gallery img {
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(16, 44, 84, 0.18);
}

.portal-web-gallery figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.portal-web-security-box {
  border-radius: 12px;
  border: 1px solid rgba(30, 130, 222, 0.24);
  background: rgba(30, 130, 222, 0.06);
  padding: 0.8rem 0.9rem;
}

.portal-web-security-list {
  margin: 0;
  padding-left: 1.2rem;
  columns: 2;
  column-gap: 1.25rem;
}

.portal-web-security-list li {
  break-inside: avoid;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.45rem 0 2.2rem;
}

.footer-inner {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links {
  margin: 0;
  line-height: 1.4;
  word-break: normal;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.sep {
  opacity: 0.46;
  margin: 0 0.28rem;
}

.copyright {
  margin: 0 0 0 auto;
  font-size: 0.82rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card:hover,
  .service-card.is-bouncing {
    transition: none;
    animation: none;
    transform: none;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: calc(68px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    max-height: calc(100dvh - 68px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    background: rgba(245, 249, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 22px rgba(15, 40, 80, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    border-radius: 10px;
    padding: 0.84rem 0.78rem;
  }

  .nav-link-direct-first {
    margin-left: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin: 0.1rem 0 0.55rem;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.9);
  }

  .nav-dropdown:not(.is-open) > .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open > .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .main-content {
    padding-top: 1.45rem;
  }

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

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

@media (max-width: 640px) {
  .bg-orb {
    display: none;
  }

  .persoft-loader__text {
    top: 60.5%;
    width: calc(100% - 1rem);
  }

  .persoft-loader__tagline {
    letter-spacing: 0.02em;
  }

  .persoft-loader__claim {
    line-height: 1.15;
  }

  .container {
    width: calc(100% - 1rem);
  }

  .main-content.container {
    width: calc(100% - 1rem);
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo {
    width: 1.32rem;
    height: 1.32rem;
  }

  .brand-admin-icon {
    width: 1.03rem;
    height: 1.03rem;
  }

  .page-hero {
    border-radius: 14px;
    padding: 1.05rem 0.95rem 1.15rem;
  }

  .page-hero h1 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .slug-contact .contact-phone-link {
    margin-left: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .home-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .content-prose {
    padding: 1rem 0.9rem 1.2rem;
    font-size: 0.98rem;
  }

  .content-prose iframe {
    min-height: 240px;
  }

  .content-prose table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .content-prose th,
  .content-prose td {
    white-space: nowrap;
    font-size: 0.92rem;
  }

  .site-footer {
    padding-bottom: 1.6rem;
  }

  .service-grid,
  .home-pillars {
    grid-template-columns: 1fr;
  }

  .portal-web-kpi,
  .portal-web-feature-grid {
    grid-template-columns: 1fr;
  }

  .portal-web-gallery figure {
    padding: 0.5rem;
  }

  .portal-web-security-list {
    columns: 1;
  }
}
