:root {
  --ink: #0e1c2f;
  --muted: #5d6d82;
  --muted-strong: #334155;
  --ring: rgba(15, 23, 42, 0.1);
  --ring-strong: rgba(15, 23, 42, 0.18);
  --card: rgba(255, 255, 255, 0.88);
  --surface: #ffffff;
  --surface-alt: #f2f6fb;
  --surface-deep: #08121d;
  --brand: #0b1623;
  --brand-2: #1f5eff;
  --accent: #ff7a00;
  --success: #0f766e;
  --tap: 46px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 30px 80px rgba(11, 22, 35, 0.18);
  --font-display: "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 90% -10%, rgba(31, 94, 255, 0.18), transparent 58%),
    radial-gradient(900px 540px at -10% 20%, rgba(255, 122, 0, 0.1), transparent 52%),
    linear-gradient(180deg, #f7fafe 0%, #eef4f9 100%);
  line-height: 1.5;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease, background-color 0.2s ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  transform: translateY(calc(-100% - 24px));
  transition: transform 0.2s ease;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 254, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.bar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
  max-width: 100%;
  flex: none;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-tag {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

nav.desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-weight: 700;
}

.nav-link:hover {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.82);
}

.nav-link.is-active {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(31, 94, 255, 0.12);
}

.header-cta {
  padding-inline: 18px;
}

.nav-toggle,
.mobile-close {
  border: 1px solid var(--ring-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: var(--tap);
  height: var(--tap);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(8, 18, 29, 0.46);
  z-index: 80;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .sheet {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(88vw, 360px);
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: var(--shadow-strong);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.mobile-menu__subtitle {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.mobile-menu__links,
.mobile-menu__cta {
  display: grid;
  gap: 12px;
}

.mobile-nav-link {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--ring);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.mobile-nav-link.is-active {
  border-color: rgba(31, 94, 255, 0.26);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(31, 94, 255, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(11, 22, 35, 0.88);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  box-shadow: 0 16px 30px rgba(11, 22, 35, 0.14);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(11, 22, 35, 0.16);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  border-color: var(--ring-strong);
  box-shadow: none;
}

.btn.ghost:hover {
  background: #fff;
}

.btn.btn-accent {
  background: linear-gradient(135deg, #ff8a1f 0%, #ff6a00 100%);
  border-color: rgba(255, 122, 0, 0.72);
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 122, 0, 0.22);
}

.btn.ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 94, 255, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: left;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.76);
}

.eyebrow--light,
.badge-accent {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.badge-muted {
  border-color: rgba(15, 23, 42, 0.08);
  background: #eef3fb;
  color: #274266;
}

.small {
  font-size: 13px;
  color: var(--muted);
}

.narrow-container {
  max-width: 760px;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 64ch;
  margin: 0;
}

.lead--light {
  color: rgba(255, 255, 255, 0.78);
}

.section-card-title {
  margin: 16px 0 18px;
  font-size: clamp(24px, 3vw, 30px);
}

.section-card-title--tight {
  margin-bottom: 12px;
}

.section-card-lead {
  margin-bottom: 24px;
}

.copy-note {
  margin-top: 14px;
  max-width: 62ch;
}

.grid-compact {
  gap: 18px;
}

.content-list-spaced {
  margin-bottom: 24px;
}

.alert-dark {
  background: #0b1623;
  border: 0;
  color: #fff;
}

.alert-dark .small {
  color: rgba(255, 255, 255, 0.68);
}

.alert-kicker {
  margin-bottom: 6px;
}

.alert-dark .alert-kicker {
  color: #ffb067;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-hotline {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.link-inline {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.response-title {
  margin: 18px 0 14px;
  font-size: clamp(28px, 4vw, 36px);
}

.response-actions {
  margin-top: 28px;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding-top: 28px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.6));
}

.section-contrast {
  padding: 24px 0 92px;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head--left {
  margin-inline: 0;
  text-align: left;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--brand);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
}

h2 {
  font-size: clamp(24px, 3.5vw, 40px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

p {
  margin: 0;
}

.hero {
  padding: 54px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy .lead {
  margin-top: 4px;
}

.hero-copy__seo {
  margin-top: 14px;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-proof-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.hero-proof-value {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--brand);
}

.hero-proof-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.glow {
  box-shadow: var(--shadow-strong);
}

.hero-panel {
  padding: 14px;
  border-radius: var(--radius-lg);
}

.hero-panel-media {
  aspect-ratio: 1.1;
  border-radius: 22px;
  overflow: hidden;
  background: #dce9f8;
}

.hero-panel-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-panel-body {
  padding: 24px 12px 10px;
  display: grid;
  gap: 16px;
}

.hero-panel-kicker {
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-list,
.compact-list,
.product-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list {
  display: grid;
  gap: 14px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-list li::before,
.product-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: none;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-2), var(--accent));
  box-shadow: 0 0 0 5px rgba(31, 94, 255, 0.08);
}

.hero-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--ring);
}

.hero-contact span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-contact a:not(.btn) {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--brand);
}

.trust-strip {
  padding: 8px 0 0;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.trust-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 2px;
}

.trust-item {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted-strong);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.official-proof {
  padding: 0;
  overflow: hidden;
  border: 0;
  background: linear-gradient(135deg, #08121d 0%, #123359 58%, #1f5eff 100%);
  color: #fff;
}

.official-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.official-proof__content {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.official-proof__content h2 {
  color: #fff;
  max-width: 14ch;
}

.official-proof__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.official-proof__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 32px 32px 32px 0;
  align-content: center;
}

.official-proof__fact {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.official-proof__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-proof__fact strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.08;
  color: #fff;
}

.official-proof__fact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.value-grid,
.solution-grid,
.process-grid,
.service-layout {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.solution-card,
.product-card {
  height: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-highlight {
  margin-top: 24px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-card h3 a {
  color: inherit;
  text-decoration: none;
}

.feature-card h3 a:hover,
.feature-card h3 a:focus-visible {
  color: var(--brand-2);
  text-decoration: underline;
}

.icon-chip {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 94, 255, 0.12), rgba(255, 122, 0, 0.14));
  color: var(--brand-2);
}

.solution-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.solution-media,
.img {
  background: #dce7f5;
  overflow: hidden;
}

.solution-media {
  aspect-ratio: 4 / 3;
}

.img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}

.solution-media img,
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-body,
.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.solution-body {
  padding: 22px;
}

.solution-meta,
.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.compact-list {
  display: grid;
  gap: 10px;
}

.compact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.compact-list li::before {
  content: "+";
  color: var(--accent);
  font-weight: 900;
  margin-top: 1px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.process-grid {
  margin-top: 30px;
}

.step-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ring);
  background: rgba(255, 255, 255, 0.82);
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.step-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-highlight {
  padding: 28px;
  background: linear-gradient(180deg, #0b1623 0%, #112741 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.service-highlight h3 {
  color: #fff;
}

.service-highlight p,
.service-highlight .hero-list li {
  color: rgba(255, 255, 255, 0.78);
}

.service-highlight .hero-list li::before {
  background: linear-gradient(135deg, #ffd18e, #ff8a1f);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, #08121d 0%, #14355b 58%, #1f5eff 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cta-band > * {
  min-width: 0;
}

.cta-band h2 {
  margin-top: 12px;
  color: #fff;
  overflow-wrap: anywhere;
}

.cta-band p {
  overflow-wrap: anywhere;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-banner {
  padding: 42px 0 18px;
}

.page-banner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.page-banner__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.metric-stack {
  display: grid;
  gap: 10px;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ring);
}

.metric-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.metric-label {
  color: var(--muted);
}

.metric-value {
  color: var(--brand);
  font-weight: 800;
  text-align: right;
}

.metric-value a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.product-filter-shell {
  display: grid;
  gap: 24px;
}

.product-filter-shell__intro {
  max-width: 760px;
}

.product-filter-shell__intro h2,
.product-empty-state h2 {
  margin-bottom: 0;
}

.product-filter-controls {
  display: grid;
  gap: 18px;
}

.product-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.8fr);
  gap: 16px;
  align-items: end;
}

.product-search-field,
.product-filter-field {
  display: grid;
  gap: 8px;
}

.product-search-field {
  max-width: none;
}

.product-filter-note {
  margin: 0;
  max-width: 78ch;
  color: var(--muted);
}

.product-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted-strong);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.filter-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 94, 255, 0.24);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.filter-pill.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0b1623 0%, #1f5eff 100%);
  box-shadow: 0 16px 36px rgba(31, 94, 255, 0.24);
}

.product-filter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-filter-summary {
  margin: 0;
}

.product-filter-reset {
  flex: none;
}

.products {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-section .section-head {
  margin-bottom: 28px;
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__body {
  padding: 22px;
}

.product-points {
  display: grid;
  gap: 10px;
}

.product-points--spaced {
  margin-top: 14px;
}

.product-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.62;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.product-card__actions .btn,
.row-cta .btn {
  flex: 1 1 170px;
}

.product-card__actions--modal .btn {
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
}

.product-empty-state {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.product-empty-state .lead {
  max-width: 700px;
  margin: 0;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(31, 94, 255, 0.46);
  box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.12);
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form {
  display: grid;
  gap: 20px;
}

.form .row {
  display: grid;
  gap: 16px;
}

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

.alert {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.16);
  color: var(--success);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

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

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--ring);
  font-size: 14px;
}

.card.glass:hover,
.solution-card:hover,
.product-card:hover,
.step-card:hover {
  transform: translateY(-3px);
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.active {
  display: block;
}

.modal .overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 29, 0.72);
}

.modal .sheet {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal .modal-body {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(92vh, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(8, 18, 29, 0.42);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
}

.modal .gallery {
  position: relative;
  min-height: 420px;
  background: radial-gradient(circle at 30% 20%, rgba(31, 94, 255, 0.16), transparent 36%),
    #08121d;
  overflow: hidden;
}

.modal .gallery .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal .gallery .slide.active {
  opacity: 1;
}

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

.modal .gallery .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}

.modal .gallery .nav.prev {
  left: 16px;
}

.modal .gallery .nav.next {
  right: 16px;
}

.modal .gallery .thumbs {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.modal .gallery .thumbs img {
  width: 72px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
  opacity: 0.7;
  background: rgba(255, 255, 255, 0.16);
}

.modal .gallery .thumbs img.active {
  opacity: 1;
  border-color: #fff;
}

.modal .details {
  padding: 30px;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 18px;
}

.modal .details p {
  color: var(--muted);
  line-height: 1.72;
}

.modal .spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-alt);
}

.modal .spec-card {
  display: grid;
  gap: 6px;
}

.modal .spec-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer {
  padding: 28px 0 36px;
  background: linear-gradient(180deg, rgba(11, 22, 35, 0.96), rgba(8, 18, 29, 1));
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(160px, 0.8fr));
  gap: 24px;
  padding: 26px 0 24px;
}

.footer-title,
.footer-heading {
  font-family: var(--font-display);
  font-weight: 800;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-heading {
  margin-bottom: 12px;
  color: #fff;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.68);
  max-width: 42ch;
  line-height: 1.7;
}

.footer-company-meta {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links--compact {
  gap: 8px;
}

.site-footer .footer-links a,
.site-footer .footer-links span {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-layout {
  display: grid;
  gap: 24px;
}

.legal-card {
  display: grid;
  gap: 18px;
}

.legal-card h2 {
  margin-bottom: 4px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.legal-card strong {
  color: var(--muted-strong);
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  background: #dce7f5;
  min-height: 280px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  width: min(420px, calc(100% - 32px));
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(8, 18, 29, 0.96);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-strong);
}

.cookie-banner__inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner__inner a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 1100px) {
  .hero-grid,
  .official-proof__inner,
  .split-panel,
  .contact-layout,
  .page-banner__grid,
  .modal .modal-body {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-panel,
  .contact-layout,
  .service-layout,
  .page-banner__grid {
    gap: 20px;
  }

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

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

  .modal .gallery {
    min-height: 360px;
  }
}

@media (max-width: 920px) {
  nav.desktop,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .grid-2,
  .form .row-2,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .card,
  .step-card,
  .service-highlight {
    padding: 20px;
  }

  .hero-proof,
  .official-proof__facts,
  .solution-grid,
  .value-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-filter-grid {
    grid-template-columns: 1fr;
  }

  .product-search-field {
    max-width: none;
  }

  .cta-band,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .section-contrast {
    padding: 68px 0;
  }
}

@media (max-width: 720px) {
  .bar {
    min-height: 74px;
  }

  .brand-tag {
    display: none;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .mobile-nav .sheet {
    width: min(100vw, 360px);
    padding: 18px;
  }

  .btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 18px;
  }

  .hero,
  .page-banner {
    padding-top: 28px;
  }

  .hero-proof {
    gap: 12px;
  }

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

  .hero-grid,
  .official-proof__inner,
  .split-panel,
  .page-banner__grid,
  .contact-layout,
  .service-layout,
  .footer-grid {
    gap: 16px;
  }

  .hero-actions,
  .official-proof__actions,
  .product-card__actions,
  .cta-actions,
  .mobile-menu__cta {
    gap: 10px;
  }

  .hero-actions .btn,
  .official-proof__actions .btn,
  .product-card__actions .btn,
  .cta-actions .btn,
  .mobile-menu__cta .btn,
  .hero-contact .btn {
    width: 100%;
  }

  .product-card__actions .btn,
  .row-cta .btn {
    flex: 1 1 auto;
  }

  .hero-contact > div {
    width: 100%;
  }

  .hero-contact a:not(.btn) {
    font-size: 18px;
    line-height: 1.35;
  }

  .cta-band {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .page-banner,
  .section-tight {
    padding-top: 24px;
  }

  .section {
    padding: 56px 0;
  }

  .section-contrast {
    padding: 20px 0 64px;
  }

  .card,
  .step-card,
  .service-highlight {
    padding: 18px;
    border-radius: 20px;
  }

  .solution-body,
  .product-card__body,
  .hero-panel-body {
    gap: 14px;
  }

  .metric-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 0;
  }

  .metric-value {
    text-align: left;
  }

  .product-filter-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .product-filter-reset {
    width: 100%;
  }

  .trust-item {
    padding: 11px 14px;
    font-size: 14px;
  }

  .official-proof__content,
  .official-proof__facts {
    padding: 22px;
  }

  .official-proof__content {
    gap: 16px;
  }

  .modal .sheet {
    padding: 0;
    align-items: flex-end;
  }

  .modal .modal-body {
    width: 100%;
    max-height: 100dvh;
    border-radius: 24px 24px 0 0;
  }

  .modal .details {
    padding: 20px 18px 22px;
  }

  .modal .spec-grid {
    grid-template-columns: 1fr;
  }

  .modal .modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .modal .gallery .nav {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  h2 {
    font-size: clamp(22px, 7vw, 30px);
  }

  h3 {
    font-size: clamp(18px, 5.8vw, 22px);
  }

  .hero-panel,
  .card,
  .step-card,
  .service-highlight {
    border-radius: 18px;
  }

  .hero-panel-body,
  .solution-body,
  .product-card__body,
  .modal .details {
    padding: 16px;
  }

  .hero-proof-card {
    padding: 14px;
  }

  .hero-proof-value {
    font-size: 21px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .small {
    font-size: 12px;
  }

  .brand-logo {
    width: 110px;
  }

  .brand-name {
    font-size: 16px;
  }

  .trust-item {
    width: 100%;
    text-align: center;
  }

  .mobile-nav .sheet {
    width: 100vw;
  }

  .mobile-nav-link {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .product-filter-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-pill {
    width: 100%;
    justify-content: center;
  }

  .page-banner {
    padding: 24px 0 12px;
  }

  .cta-band {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .modal .gallery {
    min-height: 220px;
  }

  .modal .gallery .thumbs {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 8px;
  }

  .modal .gallery .thumbs img {
    width: 54px;
    height: 40px;
    border-radius: 10px;
  }

  .footer-bottom {
    gap: 8px;
    padding-top: 18px;
  }

  .footer-bottom .small:last-child,
  .contact-hotline,
  .hero-contact a:not(.btn) {
    line-height: 1.45;
    word-break: break-word;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .bar {
    min-height: 68px;
  }

  .btn {
    padding: 10px 14px;
    border-radius: 16px;
  }

  .hero-proof-label,
  .metric-label,
  .metric-value {
    font-size: 13px;
  }
}
