:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --ink: #101828;
  --muted: #617084;
  --muted-2: #8290a4;
  --line: #dce5f2;
  --primary: #2563eb;
  --primary-2: #00a7c7;
  --accent: #7c3aed;
  --green: #10b981;
  --orange: #f97316;
  --dark: #08111f;
  --dark-2: #101a2e;
  --shadow: 0 24px 70px rgba(12, 24, 48, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.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;
  padding: 16px 0;
  transition: background .2s ease, box-shadow .2s ease, padding .2s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 249, 252, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(15, 23, 42, .08);
  padding: 10px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 28px rgba(37, 99, 235, .32);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: .04em;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}

.main-nav a {
  text-decoration: none;
  color: #314054;
  font-weight: 700;
  font-size: .92rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
  background: #eff6ff;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .12);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.section {
  padding: 108px 0;
  overflow-x: clip;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 122px;
  padding-bottom: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, .20), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(0, 167, 199, .22), transparent 34%),
    linear-gradient(140deg, rgba(255,255,255,.94), rgba(239, 246, 255, .82)),
    url("../images/desktop.jpg") center / cover;
  opacity: .98;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,249,252,.96), rgba(247,249,252,.76) 50%, rgba(247,249,252,.58));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .78fr);
  gap: 54px;
  align-items: center;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.9rem, 6.2vw, 5.7rem);
  line-height: .92;
  letter-spacing: -.075em;
  max-width: 850px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.hero-lead {
  max-width: 720px;
  color: #314054;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 32px;
}

.mission-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 760px;
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
}

.mission-banner strong {
  color: var(--primary);
  white-space: nowrap;
}

.mission-banner span {
  color: #314054;
  font-weight: 700;
}

.mission-banner b {
  color: var(--ink);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: .95rem;
}

.hero-quick-links span {
  font-weight: 900;
  color: #314054;
}

.hero-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255,255,255,.62);
  text-decoration: none;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 32px rgba(37, 99, 235, .28);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.72);
  border-color: rgba(37, 99, 235, .16);
}

.button-ghost-dark {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button-light {
  color: var(--dark);
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
}

.hero-stats div {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}

.hero-stats dt {
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.hero-panel {
  perspective: 1200px;
}

.windows-app-card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 26px;
  background: #f6f8fb;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .22);
  transform: rotateY(-5deg) rotateX(3deg);
}

.win-titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #263448;
  background: linear-gradient(180deg, #ffffff, #edf2f9);
  border-bottom: 1px solid #d9e3f0;
  font-size: .88rem;
  font-weight: 900;
}

.win-app-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 20px rgba(37, 99, 235, .22);
  font-size: .82rem;
}

.win-controls {
  display: flex;
  gap: 8px;
}

.win-controls i {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid #9badc5;
  background: #fff;
}

.win-body {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 430px;
}

.win-sidebar {
  padding: 18px 12px;
  background: #eaf0f8;
  border-right: 1px solid #d9e3f0;
}

.win-sidebar strong {
  display: block;
  margin: 4px 10px 18px;
  color: var(--primary);
  font-size: .82rem;
  letter-spacing: .08em;
}

.win-sidebar a {
  display: block;
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #4a5b70;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
}

.win-sidebar a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 24px rgba(37, 99, 235, .20);
}

.win-content {
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 167, 199, .12), transparent 34%),
    #fff;
}

.win-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #dbe5f2;
  border-radius: 14px;
  background: #f8fafc;
  color: #263448;
  font-size: .92rem;
  font-weight: 900;
}

.win-toolbar button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.win-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.win-kpis article {
  padding: 14px;
  border: 1px solid #dbe5f2;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f4f8fd);
}

.win-kpis b,
.win-kpis strong,
.win-kpis small {
  display: block;
}

.win-kpis b {
  color: var(--primary);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.win-kpis strong {
  color: var(--ink);
  font-size: 1rem;
  margin: 5px 0 2px;
}

.win-kpis small {
  color: var(--muted);
}

.win-table {
  overflow: hidden;
  border: 1px solid #dbe5f2;
  border-radius: 18px;
  background: #fff;
}

.win-table div {
  display: grid;
  grid-template-columns: 1.2fr .5fr .65fr .85fr;
  gap: 10px;
  padding: 13px 14px;
  color: #3c4d63;
  font-size: .9rem;
}

.win-table div:first-child {
  color: #66758a;
  background: #f1f5fb;
  font-weight: 900;
}

.win-table div + div {
  border-top: 1px solid #edf2f7;
}

.product-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(8,17,31,.94), rgba(16,26,46,.88));
  box-shadow: var(--shadow);
  transform: rotateY(-7deg) rotateX(4deg);
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fa5252;
}

.window-bar span:nth-child(2) { background: #fab005; }
.window-bar span:nth-child(3) { background: #40c057; }

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-grid article {
  min-width: 0;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  color: #fff;
}

.dashboard-grid strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 1.1rem;
  line-height: 1.16;
}

.dashboard-grid p {
  color: #b9c5d6;
  font-size: .94rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
}

.chip-green { background: var(--green); }
.chip-blue { background: var(--primary); }
.chip-purple { background: var(--accent); }
.chip-orange { background: var(--orange); }

.trust-strip {
  margin-top: -1px;
  padding: 26px 0;
  background: var(--dark);
  color: #fff;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.strip-grid p {
  margin: 0;
  color: #c6d3e4;
}

.strip-grid strong {
  color: #fff;
}

.two-column,
.visual-grid,
.contact-grid,
.compliance-grid,
.split-cta {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.rich-text {
  color: #36465a;
  font-size: 1.08rem;
}

.feature-stack {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}

.feature {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.feature-large {
  grid-row: span 2;
  background: linear-gradient(145deg, #fff, #ecf8ff);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: #eaf1ff;
  color: var(--primary);
  font-weight: 900;
}

.feature h3,
.module-card h3,
.possibilities-grid h3,
.technology-grid h3,
.security-grid h3 {
  margin-bottom: 10px;
}

.feature p,
.module-card li,
.possibilities-grid p,
.technology-grid p,
.security-grid p {
  color: var(--muted);
}

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

.technology-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid #d7e6fb;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}

.technology-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
}

.sectors-section {
  background:
    radial-gradient(circle at 0 12%, rgba(37,99,235,.08), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(0,167,199,.10), transparent 30%),
    #fff;
}

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

.sector-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .05);
}

.sector-grid span,
.implementation-timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--primary);
  background: #eaf2ff;
  font-weight: 900;
}

.sector-grid p,
.problem-grid span,
.custom-grid p,
.implementation-timeline p,
.faq-card-grid p {
  color: var(--muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.problem-grid article {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 22px;
  border: 1px solid #d7e6fb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .05);
}

.problem-grid strong {
  font-size: 1.08rem;
  color: var(--ink);
}

.custom-section {
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(37,99,235,.30), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(124,58,237,.24), transparent 30%),
    var(--dark);
}

.custom-section .eyebrow {
  color: #7dd3fc;
}

.custom-section .rich-text,
.custom-section .rich-text p {
  color: #c6d3e4;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.custom-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}

.custom-grid p {
  color: #c6d3e4;
}

.implementation-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.implementation-timeline article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .05);
}

.faq-section {
  background:
    radial-gradient(circle at 12% 0, rgba(37,99,235,.08), transparent 28%),
    #fff;
}

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

.faq-card-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .05);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(37,99,235,.28), transparent 34%),
    radial-gradient(circle at 100% 30%, rgba(0,167,199,.25), transparent 30%),
    var(--dark);
}

.section-dark .eyebrow {
  color: #7dd3fc;
}

.section-dark p {
  color: #c6d3e4;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

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

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

.process div {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
}

.process span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-weight: 900;
}

.process strong,
.process small {
  display: block;
}

.process strong {
  font-size: 1.05rem;
}

.process small {
  color: #9fb1c8;
}

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

.module-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .05);
}

.module-card ul {
  padding-left: 18px;
  margin: 0;
}

.module-card li + li {
  margin-top: 9px;
}

.visual-section {
  padding-top: 0;
}

.image-card {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.quote-card {
  margin-top: 28px;
  padding: 26px;
  border-left: 5px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.quote-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.section-soft {
  background: linear-gradient(180deg, #edf6ff, #f7f9fc);
}

.kit-proof {
  margin-top: 64px;
}

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

.kit-proof-grid article {
  padding: 24px;
  border: 1px solid #d7e6fb;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}

.kit-proof-grid p {
  color: var(--muted);
}

.clients-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(37,99,235,.08), transparent 26%),
    radial-gradient(circle at 90% 15%, rgba(0,167,199,.10), transparent 30%),
    #fff;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.client-logo-grid figure {
  display: grid;
  place-items: center;
  min-height: 118px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .05);
}

.client-logo-grid img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.client-name-panel {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .05);
}

.client-name-panel h3 {
  margin-bottom: 8px;
}

.client-name-panel p {
  color: var(--muted);
}

.client-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.client-name-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid #d7e6fb;
  border-radius: 999px;
  color: #334155;
  background: #fff;
  font-size: .9rem;
  font-weight: 800;
}

.note {
  padding: 16px 18px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  color: #34506d;
  font-size: .96rem;
}

.verifactu-callout {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(37, 99, 235, .22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(0,167,199,.16), transparent 34%),
    #fff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .08);
}

.verifactu-callout span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.verifactu-callout h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.verifactu-callout p {
  color: var(--muted);
}

.kit-source-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #34506d;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #bfdbfe;
  font-size: .95rem;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
  overflow: hidden;
}

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

.accordion-item button strong {
  font-size: 1.35rem;
  color: var(--primary);
}

.accordion-panel {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.accordion-item.is-open button strong {
  transform: rotate(45deg);
}

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

.possibilities-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,246,255,.86));
  box-shadow: 0 16px 44px rgba(15, 23, 42, .05);
}

.security-section {
  background:
    radial-gradient(circle at 0 8%, rgba(37,99,235,.10), transparent 28%),
    radial-gradient(circle at 100% 20%, rgba(16,185,129,.10), transparent 30%),
    #f8fbff;
}

.inline-link {
  color: var(--primary);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

.security-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .05);
}

.mikrotik-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  gap: 36px;
  align-items: center;
  margin-top: 44px;
  padding: 34px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,167,199,.28), transparent 30%),
    radial-gradient(circle at 95% 0, rgba(124,58,237,.22), transparent 34%),
    var(--dark);
  box-shadow: var(--shadow);
}

.mikrotik-card .eyebrow {
  color: #7dd3fc;
}

.mikrotik-card p {
  color: #c6d3e4;
}

.firewall-benefits {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
}

.firewall-benefits ul {
  margin: 0;
  padding-left: 20px;
  color: #d7e4f4;
}

.firewall-benefits li + li {
  margin-top: 10px;
}

.recommendation-panel {
  margin-top: 54px;
}

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

.recommendation-grid article {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.recommendation-grid strong {
  color: var(--ink);
}

.recommendation-grid span {
  color: var(--muted);
}

.support-card,
.contact-card {
  padding: 32px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.section-dark .support-card h3,
.section-dark .support-card p {
  color: var(--ink);
}

.contact-section {
  background:
    radial-gradient(circle at 12% 0, rgba(37,99,235,.14), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(124,58,237,.12), transparent 28%);
}

address {
  font-style: normal;
  color: var(--muted);
}

.contact-card a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 64px 0 28px;
  color: #c6d3e4;
  background: #050b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-grid h2 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  color: #c6d3e4;
  text-decoration: none;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #8da0b9;
}

.legacy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}

.legacy-button:hover,
.legacy-button:focus-visible {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}

@media (max-width: 1050px) {
  .hero-grid,
  .two-column,
  .visual-grid,
  .contact-grid,
  .compliance-grid,
  .split-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-card {
    transform: none;
  }

  .feature-stack,
  .technology-grid,
  .sector-grid,
  .module-grid,
  .possibilities-grid,
  .kit-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-grid,
  .recommendation-grid,
  .problem-grid,
  .custom-grid,
  .implementation-timeline,
  .faq-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mikrotik-card {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 12px;
  }

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

  .main-nav a {
    padding: 14px 16px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .hero-stats,
  .strip-grid,
  .dashboard-grid,
  .feature-stack,
  .technology-grid,
  .sector-grid,
  .module-grid,
  .possibilities-grid,
  .kit-proof-grid,
  .security-grid,
  .recommendation-grid,
  .problem-grid,
  .custom-grid,
  .implementation-timeline,
  .faq-card-grid,
  .process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .windows-app-card {
    transform: none;
  }

  .win-body {
    grid-template-columns: 1fr;
  }

  .win-sidebar {
    display: flex;
    gap: 8px;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid #d9e3f0;
  }

  .win-sidebar strong {
    display: none;
  }

  .win-sidebar a {
    white-space: nowrap;
    margin-bottom: 0;
  }

  .win-kpis {
    grid-template-columns: 1fr;
  }

  .win-table {
    overflow-x: auto;
  }

  .win-table div {
    min-width: 520px;
  }

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

  .feature-large {
    grid-row: auto;
  }

  .image-card img {
    height: 360px;
  }

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

@media (max-width: 520px) {
  .container {
    width: auto;
    max-width: 362px;
    margin-left: 14px;
    margin-right: 14px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.6vw, 1.92rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

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

  .hero-copy,
  .hero-lead,
  .rich-text,
  .section-heading,
  .module-card,
  .feature,
  .technology-grid article,
  .sector-grid article,
  .possibilities-grid article,
  .security-grid article,
  .mikrotik-card,
  .custom-grid article,
  .implementation-timeline article,
  .faq-card-grid article,
  .contact-card,
  .support-card {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-quick-links {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-quick-links a {
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .eyebrow {
    overflow-wrap: anywhere;
  }

  .product-card {
    padding: 12px;
    border-radius: 26px;
  }

  .dashboard-grid article {
    min-height: auto;
  }

  .mission-banner {
    flex-direction: column;
    gap: 4px;
  }

  .win-titlebar {
    grid-template-columns: auto 1fr;
  }

  .win-controls {
    display: none;
  }

  .client-logo-grid figure {
    min-height: 96px;
    padding: 16px;
  }
}

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

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