@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --ok-red: #d71920;
  --ok-red-dark: #b80f16;
  --ok-red-soft: #fff0f0;
  --ok-ink: #151c24;
  --ok-ink-2: #202a35;
  --ok-slate: #586574;
  --ok-muted: #7b8794;
  --ok-line: #dfe4e9;
  --ok-soft: #f4f6f8;
  --ok-white: #fff;
  --ok-steel: #aeb7c2;
  --ok-shadow: 0 20px 60px rgba(21, 28, 36, .09);
  --ok-shadow-sm: 0 10px 32px rgba(21, 28, 36, .07);
  --ok-radius: 18px;
  --ok-radius-sm: 12px;
  --ok-font-display: "Manrope", Arial, sans-serif;
  --ok-font-body: "Source Sans 3", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ok-site {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ok-white);
  color: var(--ok-slate);
  font-family: var(--ok-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.ok-menu-open {
  overflow: hidden;
}

.ok-site h1,
.ok-site h2,
.ok-site h3,
.ok-site h4,
.ok-site h5,
.ok-site h6 {
  margin-top: 0;
  color: var(--ok-ink);
  font-family: var(--ok-font-display);
  font-weight: 800;
  letter-spacing: -.035em;
}

.ok-site p {
  margin: 0 0 1rem;
}

.ok-site a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ok-site img {
  max-width: 100%;
  height: auto;
}

.ok-site ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ok-site .auto-container {
  width: min(1240px, calc(100% - 48px));
  max-width: none;
  margin-inline: auto;
  padding: 0;
}

.ok-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99999;
  padding: 10px 16px;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ok-white);
  color: var(--ok-ink);
  font-weight: 700;
}

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

.ok-section {
  position: relative;
  padding: 104px 0;
}

.ok-section--soft {
  background: var(--ok-soft);
}

.ok-section--dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 0, rgba(215, 25, 32, .15), transparent 27%),
    linear-gradient(135deg, #111820, #1c2631);
  color: #c6ced7;
}

.ok-section--dark h2,
.ok-section--dark h3 {
  color: var(--ok-white);
}

.ok-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ok-red);
  font-family: var(--ok-font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ok-kicker::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.ok-kicker--light {
  color: #ff7377;
}

.ok-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.ok-section-heading__copy {
  max-width: 740px;
}

.ok-section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.ok-section-heading p {
  max-width: 670px;
  margin: 0;
  color: var(--ok-slate);
  font-size: 18px;
}

.ok-section--dark .ok-section-heading p {
  color: #aeb8c4;
}

.ok-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ok-ink);
  font-family: var(--ok-font-display);
  font-size: 14px;
  font-weight: 800;
}

.ok-link:hover {
  gap: 14px;
  color: var(--ok-red);
}

.ok-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--ok-font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.ok-btn:hover {
  transform: translateY(-2px);
}

.ok-btn--sm {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 13px;
}

.ok-btn--primary {
  background: var(--ok-red);
  color: var(--ok-white) !important;
  box-shadow: 0 10px 24px rgba(215, 25, 32, .2);
}

.ok-btn--primary:hover {
  background: var(--ok-red-dark);
  box-shadow: 0 14px 30px rgba(215, 25, 32, .28);
}

.ok-btn--dark {
  background: var(--ok-ink);
  color: var(--ok-white) !important;
}

.ok-btn--dark:hover {
  background: #000;
}

.ok-btn--outline {
  border-color: #c9d0d7;
  background: rgba(255, 255, 255, .75);
  color: var(--ok-ink) !important;
}

.ok-btn--outline:hover {
  border-color: var(--ok-ink);
  background: var(--ok-white);
}

.ok-btn--light {
  background: var(--ok-white);
  color: var(--ok-ink) !important;
}

.ok-btn--light:hover {
  background: var(--ok-red);
  color: var(--ok-white) !important;
}

.ok-btn--ghost-light {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: var(--ok-white) !important;
}

.ok-btn--ghost-light:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .12);
}

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

.ok-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.ok-header {
  position: relative;
  z-index: 1000;
  background: var(--ok-white);
}

.ok-header.is-scrolled .ok-navbar {
  box-shadow: 0 8px 28px rgba(21, 28, 36, .08);
}

.ok-topbar {
  min-height: 36px;
  background: var(--ok-ink);
  color: #b9c2cc;
  font-size: 12.5px;
}

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

.ok-topbar p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-weight: 600;
}

.ok-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .1);
}

.ok-topbar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ok-topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ok-topbar__contact a:hover {
  color: var(--ok-white);
}

.ok-topbar__contact i {
  color: #ff5a5f;
  font-size: 11px;
}

.ok-navbar {
  position: relative;
  background: rgba(255, 255, 255, .98);
  transition: box-shadow .25s ease;
}

.ok-navbar__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.ok-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.ok-brand img {
  display: block;
  width: auto;
  max-width: 240px;
  max-height: 62px;
  object-fit: contain;
}

.ok-desktop-nav {
  min-width: 0;
  flex: 1 1 auto;
}

.ok-desktop-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.ok-desktop-nav > ul > li {
  position: relative;
}

.ok-desktop-nav > ul > li > a {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  color: #2d3742;
  font-family: var(--ok-font-display);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.ok-desktop-nav > ul > li > a::after {
  position: absolute;
  right: 13px;
  bottom: 0;
  left: 13px;
  height: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ok-red);
  transition: transform .2s ease;
}

.ok-desktop-nav > ul > li:hover > a,
.ok-desktop-nav > ul > li.is-active > a {
  color: var(--ok-red);
}

.ok-desktop-nav > ul > li:hover > a::after,
.ok-desktop-nav > ul > li.is-active > a::after {
  transform: scaleX(1);
}

.ok-desktop-nav > ul > li > a i {
  font-size: 9px;
}

.ok-navbar__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.ok-mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  width: min(1030px, calc(100vw - 48px));
  grid-template-columns: 255px 1fr;
  overflow: hidden;
  transform: translate(-50%, 12px);
  border: 1px solid var(--ok-line);
  border-top: 3px solid var(--ok-red);
  border-radius: 0 0 16px 16px;
  background: var(--ok-white);
  box-shadow: var(--ok-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.has-mega:hover .ok-mega-menu,
.has-mega:focus-within .ok-mega-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.ok-mega-menu__intro {
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(215, 25, 32, .92), rgba(171, 12, 18, .97)),
    #c8141b;
  color: rgba(255, 255, 255, .84);
}

.ok-mega-menu__intro span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ok-mega-menu__intro strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ok-white);
  font-family: var(--ok-font-display);
  font-size: 23px;
  line-height: 1.2;
}

.ok-mega-menu__intro p {
  margin-bottom: 26px;
  font-size: 14px;
  line-height: 1.6;
}

.ok-mega-menu__intro a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ok-white);
  font-size: 13px;
  font-weight: 800;
}

.ok-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 26px;
  padding: 32px;
}

.ok-mega-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ok-mega-group a {
  padding: 3px 0;
  color: #75808c;
  font-size: 13px;
}

.ok-mega-group a:hover {
  color: var(--ok-red);
}

.ok-mega-group .ok-mega-group__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--ok-ink);
  font-family: var(--ok-font-display);
  font-size: 14px;
  font-weight: 800;
}

.ok-mega-group__title i {
  width: 18px;
  color: var(--ok-red);
  text-align: center;
}

.ok-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--ok-line);
  border-radius: 8px;
  background: var(--ok-white);
  cursor: pointer;
}

.ok-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ok-ink);
}

.ok-mobile-panel {
  position: fixed;
  z-index: 2000;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}

.ok-mobile-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.ok-mobile-panel__backdrop {
  position: absolute;
  border: 0;
  background: rgba(9, 14, 20, .64);
  opacity: 0;
  inset: 0;
  transition: opacity .25s ease;
}

.ok-mobile-panel.is-open .ok-mobile-panel__backdrop {
  opacity: 1;
}

.ok-mobile-panel__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 92vw);
  height: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  background: var(--ok-white);
  transition: transform .3s ease;
}

.ok-mobile-panel.is-open .ok-mobile-panel__drawer {
  transform: none;
}

.ok-mobile-panel__head {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--ok-line);
}

.ok-mobile-panel__head img {
  width: auto;
  max-width: 205px;
  max-height: 56px;
  object-fit: contain;
}

.ok-mobile-panel__head button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--ok-soft);
  color: var(--ok-ink);
}

.ok-mobile-panel nav {
  padding: 14px 22px;
}

.ok-mobile-nav-item {
  display: flex;
  min-height: 50px;
  align-items: center;
  border-bottom: 1px solid #edf0f3;
}

.ok-mobile-nav-item > a {
  flex: 1;
  color: var(--ok-ink);
  font-family: var(--ok-font-display);
  font-size: 15px;
  font-weight: 750;
}

.ok-mobile-nav-item button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ok-muted);
}

.ok-mobile-submenu {
  display: none;
  padding: 5px 0 12px 14px;
  border-bottom: 1px solid #edf0f3;
}

.ok-mobile-submenu.is-open {
  display: block;
}

.ok-mobile-submenu a {
  display: block;
  padding: 7px 0;
  color: var(--ok-slate);
  font-size: 14px;
}

.ok-mobile-panel__contact {
  margin: 10px 22px 24px;
  padding: 22px;
  border-radius: 12px;
  background: var(--ok-soft);
}

.ok-mobile-panel__contact span {
  display: block;
  margin-bottom: 8px;
  color: var(--ok-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ok-mobile-panel__contact > a:not(.ok-btn) {
  display: block;
  padding: 3px 0;
  color: var(--ok-ink);
  font-weight: 700;
}

.ok-mobile-panel__contact .ok-btn {
  width: 100%;
  margin-top: 16px;
}

/* Hero */
.ok-hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--ok-ink);
}

.ok-hero__media {
  position: absolute;
  background-position: center;
  background-size: cover;
  inset: 0;
}

.ok-hero__media::after {
  position: absolute;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 17, 23, .96) 0%, rgba(11, 17, 23, .88) 33%, rgba(11, 17, 23, .35) 62%, rgba(11, 17, 23, .08) 100%),
    linear-gradient(0deg, rgba(11, 17, 23, .42), transparent 35%);
  inset: 0;
}

.ok-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 590px;
  max-width: 650px;
  align-items: center;
  padding: 70px 0 74px;
}

.ok-hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--ok-white);
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.ok-hero__lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: #c6ced6;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.ok-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ok-hero__proof {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, .11);
  background: rgba(11, 17, 23, .72);
  backdrop-filter: blur(10px);
}

.ok-hero__proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ok-hero-proof {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.ok-hero-proof:first-child {
  padding-left: 0;
}

.ok-hero-proof:last-child {
  border-right: 0;
}

.ok-hero-proof i {
  color: #ff4c51;
  font-size: 22px;
}

.ok-hero-proof strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ok-white);
  font-family: var(--ok-font-display);
  font-size: 13px;
}

.ok-hero-proof span {
  display: block;
  color: #8e9aa6;
  font-size: 12px;
  line-height: 1.35;
}

/* Cards */
.ok-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ok-category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--ok-radius);
  background: var(--ok-ink);
  box-shadow: var(--ok-shadow-sm);
}

.ok-category-card__media {
  position: absolute;
  inset: 0;
}

.ok-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.ok-category-card__media::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(14, 20, 27, .04) 25%, rgba(14, 20, 27, .95) 100%);
  inset: 0;
}

.ok-category-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 30px;
}

.ok-category-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #ff696e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ok-category-card h3 {
  margin-bottom: 10px;
  color: var(--ok-white);
  font-size: 24px;
  line-height: 1.2;
}

.ok-category-card p {
  margin: 0;
  color: #b6c0ca;
  font-size: 15px;
  line-height: 1.55;
}

.ok-category-card__arrow {
  position: absolute;
  right: 26px;
  bottom: 28px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transform: translateX(10px);
  border-radius: 50%;
  background: var(--ok-red);
  color: var(--ok-white);
  opacity: 0;
}

.ok-category-card:hover .ok-category-card__media img {
  transform: scale(1.04);
}

.ok-category-card:hover .ok-category-card__content {
  padding-right: 82px;
}

.ok-category-card:hover .ok-category-card__arrow {
  transform: none;
  opacity: 1;
}

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

.ok-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  background: var(--ok-white);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ok-product-card[hidden] {
  display: none;
}

.ok-product-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--ok-shadow);
}

.ok-product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef1f3;
}

.ok-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.ok-product-card:hover .ok-product-card__image img {
  transform: scale(1.035);
}

.ok-product-card__code {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 5px;
  background: rgba(21, 28, 36, .72);
  color: var(--ok-white);
  font-family: var(--ok-font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  backdrop-filter: blur(7px);
}

.ok-product-card__body {
  padding: 22px;
}

.ok-product-card__category {
  display: block;
  margin-bottom: 8px;
  color: var(--ok-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ok-product-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.ok-product-card h3 a:hover {
  color: var(--ok-red);
}

.ok-product-card p {
  display: -webkit-box;
  min-height: 47px;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--ok-slate);
  font-size: 14.5px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ok-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ok-ink);
  font-family: var(--ok-font-display);
  font-size: 13px;
  font-weight: 800;
}

.ok-product-card__link:hover {
  gap: 12px;
  color: var(--ok-red);
}

.ok-product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.ok-product-filters button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--ok-line);
  border-radius: 7px;
  background: var(--ok-white);
  color: var(--ok-slate);
  font-family: var(--ok-font-display);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.ok-product-filters button:hover,
.ok-product-filters button.is-active {
  border-color: var(--ok-red);
  background: var(--ok-red);
  color: var(--ok-white);
}

/* Process and feature blocks */
.ok-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.ok-process-card {
  position: relative;
  min-height: 260px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-right: 0;
  counter-increment: process;
}

.ok-process-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.ok-process-card::after {
  position: absolute;
  top: 25px;
  right: 25px;
  content: "0" counter(process);
  color: rgba(255, 255, 255, .12);
  font-family: var(--ok-font-display);
  font-size: 34px;
  font-weight: 800;
}

.ok-process-card__icon {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 10px;
  background: rgba(215, 25, 32, .17);
  color: #ff5257;
  font-size: 20px;
}

.ok-process-card h3 {
  margin-bottom: 10px;
  color: var(--ok-white);
  font-size: 18px;
}

.ok-process-card p {
  margin: 0;
  color: #9eabb7;
  font-size: 14.5px;
}

.ok-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.ok-about-media {
  position: relative;
  min-height: 550px;
}

.ok-about-media__main {
  position: absolute;
  top: 0;
  right: 0;
  width: 89%;
  height: 88%;
  overflow: hidden;
  border-radius: var(--ok-radius);
  box-shadow: var(--ok-shadow);
}

.ok-about-media__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ok-about-media__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 220px;
  min-height: 145px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 25px;
  border-radius: var(--ok-radius-sm);
  background: var(--ok-red);
  color: rgba(255, 255, 255, .8);
  box-shadow: 0 18px 42px rgba(215, 25, 32, .24);
}

.ok-about-media__badge strong {
  display: block;
  color: var(--ok-white);
  font-family: var(--ok-font-display);
  font-size: 34px;
  line-height: 1;
}

.ok-about-content h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.ok-about-content > p {
  margin-bottom: 26px;
  font-size: 18px;
}

.ok-check-list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.ok-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #394552;
  font-weight: 600;
}

.ok-check-list i {
  display: flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--ok-red-soft);
  color: var(--ok-red);
  font-size: 10px;
}

.ok-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  background: var(--ok-white);
  box-shadow: var(--ok-shadow-sm);
}

.ok-stat {
  min-height: 135px;
  padding: 28px 26px;
  border-right: 1px solid var(--ok-line);
}

.ok-stat:last-child {
  border-right: 0;
}

.ok-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ok-ink);
  font-family: var(--ok-font-display);
  font-size: 31px;
  font-weight: 800;
}

.ok-stat span {
  color: var(--ok-muted);
  font-size: 14px;
  font-weight: 600;
}

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

.ok-sector-card {
  display: flex;
  min-height: 140px;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  background: var(--ok-white);
}

.ok-sector-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--ok-shadow-sm);
}

.ok-sector-card i {
  display: flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--ok-red-soft);
  color: var(--ok-red);
  font-size: 18px;
}

.ok-sector-card h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.ok-sector-card p {
  margin: 0;
  color: var(--ok-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Inner page */
.ok-page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 78px;
  background:
    linear-gradient(90deg, rgba(16, 23, 31, .98), rgba(16, 23, 31, .78)),
    url("../../images/slider/okinoks-hero-industrial.jpg") center 58% / cover;
}

.ok-page-hero::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
}

.ok-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.ok-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #9ba6b2;
  font-size: 13px;
}

.ok-breadcrumb a:hover {
  color: var(--ok-white);
}

.ok-breadcrumb i {
  font-size: 8px;
}

.ok-page-hero h1 {
  margin-bottom: 18px;
  color: var(--ok-white);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.06;
}

.ok-page-hero p {
  max-width: 680px;
  margin: 0;
  color: #bcc5ce;
  font-size: 19px;
}

.ok-category-summary {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 50px;
}

.ok-category-summary h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
}

.ok-category-summary__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.ok-category-summary__links a {
  padding: 9px 13px;
  border: 1px solid var(--ok-line);
  border-radius: 6px;
  background: var(--ok-white);
  color: var(--ok-ink);
  font-size: 13px;
  font-weight: 700;
}

.ok-category-summary__links a:hover {
  border-color: var(--ok-red);
  color: var(--ok-red);
}

.ok-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 42px;
}

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

.ok-sidebar-card {
  padding: 24px;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  background: var(--ok-white);
}

.ok-sidebar-card h3 {
  margin-bottom: 17px;
  font-size: 17px;
}

.ok-sidebar-card a:not(.ok-btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #edf0f2;
  color: var(--ok-slate);
  font-size: 14px;
}

.ok-sidebar-card a:not(.ok-btn):last-child {
  border-bottom: 0;
}

.ok-sidebar-card a:hover,
.ok-sidebar-card a.is-active {
  color: var(--ok-red);
}

.ok-sidebar-cta {
  padding: 28px;
  border-radius: var(--ok-radius-sm);
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 25, 32, .24), transparent 36%),
    var(--ok-ink);
  color: #aeb9c3;
}

.ok-sidebar-cta i {
  margin-bottom: 22px;
  color: #ff4c51;
  font-size: 28px;
}

.ok-sidebar-cta h3 {
  margin-bottom: 10px;
  color: var(--ok-white);
  font-size: 20px;
}

.ok-sidebar-cta p {
  margin-bottom: 20px;
  font-size: 14px;
}

/* Product detail */
.ok-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: start;
  gap: clamp(44px, 6vw, 78px);
}

.ok-product-gallery__main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius);
  background: #eef1f3;
}

.ok-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ok-product-gallery__hint {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(21, 28, 36, .82);
  color: var(--ok-white);
  backdrop-filter: blur(7px);
}

.ok-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.ok-product-gallery__thumbs button {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #eef1f3;
  cursor: pointer;
}

.ok-product-gallery__thumbs button.is-active {
  border-color: var(--ok-red);
}

.ok-product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ok-product-info {
  position: sticky;
  top: 24px;
}

.ok-product-info h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
}

.ok-product-info__lead {
  margin-bottom: 28px;
  color: var(--ok-slate);
  font-size: 19px;
}

.ok-product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--ok-line);
  border-radius: 10px;
}

.ok-product-meta div {
  padding: 16px 18px;
  border-right: 1px solid var(--ok-line);
}

.ok-product-meta div:last-child {
  border-right: 0;
}

.ok-product-meta span,
.ok-product-meta strong {
  display: block;
}

.ok-product-meta span {
  margin-bottom: 3px;
  color: var(--ok-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ok-product-meta strong {
  color: var(--ok-ink);
  font-family: var(--ok-font-display);
  font-size: 14px;
}

.ok-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ok-product-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--ok-line);
  color: var(--ok-muted);
  font-size: 13px;
}

.ok-product-note i {
  margin-top: 3px;
  color: var(--ok-red);
}

.ok-product-copy {
  max-width: 900px;
}

.ok-product-copy h2,
.ok-product-copy h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.ok-product-copy h2 {
  font-size: 30px;
}

.ok-product-copy h3 {
  font-size: 22px;
}

.ok-product-copy p {
  font-size: 17px;
}

.ok-product-copy ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

.ok-product-copy li {
  position: relative;
  padding-left: 24px;
}

.ok-product-copy li::before {
  position: absolute;
  top: .65em;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--ok-red);
}

.ok-spec-panel {
  padding: 30px;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  background: var(--ok-white);
}

.ok-spec-panel h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.ok-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.ok-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f2;
}

.ok-spec-list i {
  margin-top: 5px;
  color: var(--ok-red);
  font-size: 11px;
}

/* Footer */
.ok-footer-cta {
  position: relative;
  z-index: 2;
  padding: 66px 0;
  overflow: hidden;
  background: var(--ok-red);
  color: rgba(255, 255, 255, .78);
}

.ok-footer-cta::after {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .04), 0 0 0 140px rgba(255, 255, 255, .025);
}

.ok-footer-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.ok-footer-cta__inner > div:first-child {
  max-width: 730px;
}

.ok-footer-cta h2 {
  margin-bottom: 12px;
  color: var(--ok-white);
  font-size: clamp(30px, 4vw, 46px);
}

.ok-footer-cta p {
  margin: 0;
  font-size: 17px;
}

.ok-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ok-footer {
  padding-top: 78px;
  background:
    radial-gradient(circle at 8% 0, rgba(215, 25, 32, .08), transparent 30%),
    #111820;
  color: #9da8b4;
}

.ok-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .72fr .9fr 1.15fr;
  gap: 50px;
  padding-bottom: 62px;
}

.ok-footer__brand img {
  width: auto;
  max-width: 275px;
  max-height: 76px;
  object-fit: contain;
  margin-bottom: 24px;
}

.ok-footer__brand p {
  max-width: 390px;
  font-size: 15px;
}

.ok-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.ok-footer__social a {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  color: #aeb8c2;
}

.ok-footer__social a:hover {
  border-color: var(--ok-red);
  background: var(--ok-red);
  color: var(--ok-white);
}

.ok-footer__column h3 {
  margin-bottom: 23px;
  color: var(--ok-white);
  font-size: 15px;
  letter-spacing: -.01em;
}

.ok-footer__column > a {
  display: block;
  padding: 5px 0;
  color: #98a4af;
  font-size: 14.5px;
}

.ok-footer__column > a:hover {
  padding-left: 4px;
  color: var(--ok-white);
}

.ok-footer__contact {
  display: block;
}

.ok-footer__contact > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 14px;
  font-size: 14px;
}

.ok-footer__contact i {
  width: 18px;
  margin-top: 5px;
  color: #f04b50;
  text-align: center;
}

.ok-footer__contact a:hover {
  color: var(--ok-white);
}

.ok-footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #77838f;
  font-size: 13px;
}

.ok-footer__bottom p {
  margin: 0;
}

.ok-footer__bottom div {
  display: flex;
  gap: 22px;
}

.ok-footer__bottom a:hover {
  color: var(--ok-white);
}

.ok-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 50px;
  background: #25d366;
  color: var(--ok-white) !important;
  font-family: var(--ok-font-display);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.ok-whatsapp i {
  font-size: 21px;
}

.ok-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .23);
}

.scroll-to-top {
  right: 24px;
  bottom: 82px;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--ok-ink);
  color: var(--ok-white);
}

/* Legacy page harmonization */
.ok-site .page-banner {
  position: relative;
  padding: 78px 0;
  background: var(--ok-ink);
}

.ok-site .page-banner .image-layer {
  opacity: .13;
}

.ok-site .page-banner h1 {
  color: var(--ok-white);
  font-size: clamp(38px, 5vw, 58px);
}

.ok-site .page-banner .bread-crumb a,
.ok-site .page-banner .bread-crumb li {
  color: #b6c0ca;
}

.ok-site .main-services,
.ok-site .projects-section,
.ok-site .contact-section,
.ok-site .about-section,
.ok-site .gallery-section,
.ok-site .news-section,
.ok-site .sidebar-page-container {
  padding: 90px 0;
}

.ok-site .service-block .inner-box,
.ok-site .project-block .inner-box,
.ok-site .news-block .inner-box {
  overflow: hidden;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  background: var(--ok-white);
  box-shadow: none;
}

.ok-site .service-block .lower,
.ok-site .project-block .lower-box,
.ok-site .news-block .lower-box {
  padding: 24px;
}

.ok-site .service-block h5,
.ok-site .project-block h5,
.ok-site .news-block h5 {
  font-size: 19px;
}

.ok-site .theme-btn .btn-title,
.ok-site .btn-style-two .btn-title,
.ok-site .btn-style-four .btn-title {
  border-color: var(--ok-red);
  background: var(--ok-red);
  color: var(--ok-white);
}

.ok-site .pagination .page-link {
  border-color: var(--ok-line);
  color: var(--ok-ink);
}

.ok-site .pagination .active .page-link {
  border-color: var(--ok-red);
  background: var(--ok-red);
}

/* Responsive */
@media (max-width: 1199px) {
  .ok-site .auto-container {
    width: min(100% - 40px, 1120px);
  }

  .ok-brand img {
    width: auto;
    max-width: 205px;
  }

  .ok-navbar__inner {
    gap: 20px;
  }

  .ok-desktop-nav > ul > li > a {
    padding-inline: 9px;
    font-size: 12px;
  }

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

  .ok-mega-menu {
    left: 38%;
  }

  .ok-footer__grid {
    grid-template-columns: 1.25fr .75fr .95fr 1.1fr;
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .ok-topbar__inner {
    justify-content: center;
  }

  .ok-topbar p {
    display: none;
  }

  .ok-navbar__inner {
    min-height: 72px;
  }

  .ok-desktop-nav,
  .ok-navbar__actions .ok-btn {
    display: none;
  }

  .ok-mobile-toggle {
    display: flex;
  }

  .ok-hero {
    min-height: auto;
  }

  .ok-hero__content {
    min-height: 560px;
  }

  .ok-hero__media {
    background-position: 63% center;
  }

  .ok-hero__media::after {
    background: linear-gradient(90deg, rgba(11, 17, 23, .96), rgba(11, 17, 23, .72));
  }

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

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

  .ok-process-card:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .ok-about-grid,
  .ok-category-summary {
    grid-template-columns: 1fr;
  }

  .ok-category-summary__links {
    justify-content: flex-start;
  }

  .ok-about-media {
    min-height: 500px;
  }

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

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

  .ok-stat:nth-child(2) {
    border-right: 0;
  }

  .ok-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--ok-line);
  }

  .ok-content-layout,
  .ok-product-detail {
    grid-template-columns: 1fr;
  }

  .ok-product-info {
    position: static;
  }

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

  .ok-footer-cta__actions {
    justify-content: flex-start;
  }

  .ok-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .ok-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .ok-site .auto-container {
    width: calc(100% - 32px);
  }

  .ok-section {
    padding: 74px 0;
  }

  .ok-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 34px;
  }

  .ok-section-heading h2 {
    font-size: 34px;
  }

  .ok-topbar__contact a:first-child {
    display: none;
  }

  .ok-brand img {
    width: auto;
    max-width: 195px;
  }

  .ok-hero__content {
    min-height: 520px;
    padding: 64px 0;
  }

  .ok-hero h1 {
    font-size: 44px;
  }

  .ok-hero__lead {
    font-size: 18px;
  }

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

  .ok-hero-proof {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .ok-hero-proof:first-child {
    padding-left: 12px;
  }

  .ok-hero-proof:nth-child(2) {
    border-right: 0;
  }

  .ok-category-grid,
  .ok-product-grid,
  .ok-sector-grid {
    grid-template-columns: 1fr;
  }

  .ok-category-card {
    min-height: 390px;
  }

  .ok-process-grid {
    grid-template-columns: 1fr;
  }

  .ok-process-card {
    min-height: 220px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 0;
  }

  .ok-process-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .ok-about-media {
    min-height: 420px;
  }

  .ok-about-media__main {
    width: 94%;
    height: 87%;
  }

  .ok-about-media__badge {
    width: 185px;
    min-height: 125px;
  }

  .ok-stats-grid {
    margin-top: 50px;
  }

  .ok-stat {
    min-height: 115px;
    padding: 22px 18px;
  }

  .ok-stat strong {
    font-size: 26px;
  }

  .ok-page-hero {
    padding: 64px 0;
  }

  .ok-page-hero h1 {
    font-size: 40px;
  }

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

  .ok-product-meta div {
    border-right: 0;
    border-bottom: 1px solid var(--ok-line);
  }

  .ok-product-meta div:last-child {
    border-bottom: 0;
  }

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

  .ok-footer-cta {
    padding: 54px 0;
  }

  .ok-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ok-footer__brand,
  .ok-footer__contact {
    grid-column: 1 / -1;
  }

  .ok-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

  .ok-whatsapp span {
    display: none;
  }

  .ok-whatsapp {
    width: 50px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .ok-hero h1 {
    font-size: 38px;
  }

  .ok-hero__actions .ok-btn,
  .ok-product-actions .ok-btn {
    width: 100%;
  }

  .ok-hero__proof-grid,
  .ok-stats-grid {
    grid-template-columns: 1fr;
  }

  .ok-hero-proof {
    border-right: 0;
  }

  .ok-stat {
    border-right: 0;
    border-bottom: 1px solid var(--ok-line);
  }

  .ok-stat:last-child {
    border-bottom: 0;
  }

  .ok-footer__grid {
    grid-template-columns: 1fr;
  }

  .ok-footer__column,
  .ok-footer__brand,
  .ok-footer__contact {
    grid-column: auto;
  }

  .ok-footer__bottom div {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

/* Contact, references and generic corporate pages */
.ok-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.ok-contact-content,
.ok-contact-cards,
.ok-form {
  display: grid;
}

.ok-contact-content {
  gap: 28px;
}

.ok-contact-cards {
  gap: 14px;
}

.ok-contact-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  color: var(--ok-ink);
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  box-shadow: var(--ok-shadow-sm);
}

.ok-contact-card > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ok-red);
  background: var(--ok-red-soft);
  border-radius: 12px;
}

.ok-contact-card strong,
.ok-contact-card span {
  display: block;
}

.ok-contact-card__copy small {
  display: block;
  color: var(--ok-muted);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ok-contact-card__copy strong {
  margin-top: 4px;
}

.ok-form-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius);
  box-shadow: var(--ok-shadow);
}

.ok-form-panel > p {
  margin: 8px 0 24px;
  color: var(--ok-muted);
}

.ok-form {
  gap: 16px;
}

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

.ok-form label {
  display: grid;
  gap: 7px;
  color: var(--ok-ink);
  font-size: .88rem;
  font-weight: 700;
}

.ok-form input,
.ok-form select,
.ok-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ok-ink);
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: 9px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ok-form textarea {
  min-height: 138px;
  resize: vertical;
}

.ok-form input:focus,
.ok-form select:focus,
.ok-form textarea:focus {
  border-color: var(--ok-red);
  box-shadow: 0 0 0 3px rgba(211, 31, 42, .1);
}

.ok-form__consent {
  grid-template-columns: 20px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: start;
  color: var(--ok-muted) !important;
  font-size: .78rem !important;
  font-weight: 500 !important;
}

.ok-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.ok-captcha-field {
  display: grid !important;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.ok-captcha-field img {
  display: block;
  width: 126px;
  height: 46px;
  object-fit: cover;
  border: 1px solid var(--ok-line);
  border-radius: 9px;
}

.ok-map {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--ok-radius);
  box-shadow: var(--ok-shadow-sm);
}

.ok-map iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

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

.ok-reference-card {
  display: grid;
  min-height: 140px;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  box-shadow: var(--ok-shadow-sm);
}

.ok-reference-card img {
  max-width: 150px;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .2s ease, opacity .2s ease;
}

.ok-reference-card:hover img {
  filter: none;
  opacity: 1;
}

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

.ok-team-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius-sm);
  box-shadow: var(--ok-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ok-team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, .24);
  box-shadow: var(--ok-shadow);
}

.ok-team-card__image {
  position: relative;
  display: grid;
  min-height: 176px;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, .12), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .12), transparent 28%),
    #17212b;
}

.ok-team-card__image::after {
  position: absolute;
  right: -38px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  content: "";
  border: 22px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.ok-team-card__image img {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.ok-team-card__monogram {
  position: relative;
  z-index: 1;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .15), transparent 46%),
    var(--ok-red);
  border: 5px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.ok-team-card__monogram small {
  margin-bottom: 2px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ok-team-card__monogram strong {
  color: #fff;
  font-family: var(--ok-heading);
  font-size: 35px;
  line-height: 1;
  letter-spacing: .04em;
}

.ok-team-card__badge {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 9px;
  color: rgba(255, 255, 255, .86);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(8, 13, 18, .56);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.ok-team-card__badge i {
  color: #69d399;
}

.ok-team-card__body {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 24px;
  text-align: left;
  border-top: 1px solid var(--ok-line);
}

.ok-team-card__eyebrow {
  margin-bottom: 8px;
  color: var(--ok-red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.ok-team-card__body h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.ok-team-card__body p {
  margin: 0;
  color: var(--ok-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.ok-team-card__contact {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.ok-team-card__contact-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 9px 11px;
  color: var(--ok-ink);
  background: #f7f8fa;
  border: 1px solid #edf0f2;
  border-radius: 10px;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.ok-team-card__contact-link:hover {
  color: var(--ok-red);
  background: var(--ok-red-soft);
  border-color: rgba(215, 25, 32, .16);
}

.ok-team-card__contact-link > i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ok-red);
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(21, 28, 36, .07);
}

.ok-team-card__contact-link span,
.ok-team-card__contact-link small,
.ok-team-card__contact-link strong {
  display: block;
  min-width: 0;
}

.ok-team-card__contact-link small {
  color: var(--ok-muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ok-team-card__contact-link strong {
  margin-top: 1px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ok-team-card__contact-link--muted > i {
  color: #66717d;
}

.ok-generic-content {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ok-body);
  font-size: 1.02rem;
  line-height: 1.82;
}

.ok-generic-content h2,
.ok-generic-content h3 {
  margin: 1.7em 0 .55em;
  color: var(--ok-ink);
}

.ok-generic-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--ok-radius-sm);
}

.ok-content-layout > div .ok-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 991px) {
  .ok-contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 767px) {
  .ok-contact-grid {
    gap: 30px;
  }

  .ok-form-panel {
    padding: 24px 18px;
  }

  .ok-form__grid {
    grid-template-columns: 1fr;
  }

  .ok-captcha-field {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .ok-captcha-field img {
    width: 112px;
  }

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

  .ok-team-grid {
    grid-template-columns: 1fr;
  }

  .ok-content-layout > div .ok-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  .ok-team-grid {
    grid-template-columns: 1fr;
  }

  .ok-team-card__image {
    min-height: 164px;
    padding: 20px;
  }

  .ok-team-card__image img,
  .ok-team-card__monogram {
    width: 106px;
    height: 106px;
  }

  .ok-team-card__body {
    min-height: 220px;
    padding: 22px 20px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ok-reveal {
    opacity: 1;
    transform: none;
  }
}
