/*!
Theme Name: plansys
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: plansys
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

plansys is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* =========================================================
   RESET & BASE
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #252C32;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --blue: #1D4ED8;
  --blue-light: #0D99FF;
  --blue-bg: #EFF6FF;
  --dark: #252C32;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --border: #E5E7EB;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .12);
  --tr: .2s ease;
}

/* =========================================================
   CONTAINER
   ========================================================= */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--tr), color var(--tr), border-color var(--tr), opacity var(--tr);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn--primary:hover {
  background: #1740b6;
  border-color: #1740b6;
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.btn--white:hover {
  opacity: .88;
}

/* =========================================================
   PRE-HEADER
   ========================================================= */

.preheder {
  background: #F8FAFF;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.preheder .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.preheder__tagline {
  font-size: 12px;
  color: var(--gray);
  flex: 1;
}

.preheder__search {
  position: relative;
  display: flex;
  align-items: center;
}

.preheder__search-icon {
  position: absolute;
  right: 10px;
  pointer-events: none;
}

.preheder__search input {
  height: 32px;
  padding: 0 30px 0 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  width: 180px;
  outline: none;
  transition: border-color var(--tr);
}

.preheder__search input:focus {
  border-color: var(--blue-light);
}

.preheder__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.messenger-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--tr);
}

.messenger-icon:hover {
  opacity: .8;
}

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

.phone-icon {
  display: flex;
  align-items: center;
}

.preheder__phone-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}

.header--scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}

.header .container {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  display: none;
}

.header__logo-text span {
  color: var(--blue);
}

.header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.header__menu>li>a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color var(--tr), background var(--tr);
}

.header__menu>li>a svg {
  flex-shrink: 0;
  transition: transform var(--tr);
}

.header__menu>li>a:hover,
.header__menu>li.current-menu-item>a,
.header__menu>li.current-menu-ancestor>a {
  color: var(--blue);
}

.header__menu>li.menu-item-has-children>a::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 7px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M0.5 0.5L5.5 5.5L10.5 0.5' stroke='%23252C32' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--tr);
}

.header__menu>li.menu-item-has-children>a:hover::after,
.header__menu>li.menu-item-has-children:hover>a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M0.5 0.5L5.5 5.5L10.5 0.5' stroke='%231D4ED8' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

/* =========================================================
   MEGA DROPDOWN
   ========================================================= */

.header__menu>li.menu-item-has-children {
  position: relative;
}

/* hover bridge: covers the gap so cursor doesn't lose hover state */
.header__menu>li.menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
    height: 23px;
  z-index: 199;
}

.header__menu>li.menu-item-has-children>.sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 24px 28px;
  min-width: 560px;
  columns: 2;
  column-gap: 36px;
  list-style: none;
  margin: 0;
  z-index: 200;
  transition: opacity .15s ease, visibility .15s ease;
  transition-delay: .18s;
}

.header__menu>li.menu-item-has-children>.sub-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 7px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.header__menu>li.menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

/* Category group (level 2 with children) */
.header__menu .sub-menu>li.menu-item-has-children {
  break-inside: avoid;
  margin-bottom: 18px;
  list-style: none;
}

/* Category title */
.header__menu .sub-menu>li.menu-item-has-children>a {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
  line-height: 1.35;
  transition: opacity var(--tr);
}

.header__menu .sub-menu>li.menu-item-has-children>a:hover {
  opacity: .7;
}

/* Level-3 sub-menu — static, always visible */
.header__menu .sub-menu>li.menu-item-has-children>.sub-menu {
  display: block !important;
  position: static !important;
  columns: unset;
  box-shadow: none;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  min-width: 0;
  transform: none;
  margin: 0;
  list-style: none;
}

.header__menu .sub-menu>li.menu-item-has-children>.sub-menu::before {
  display: none;
}

/* Level-3 links */
.header__menu .sub-menu>li.menu-item-has-children>.sub-menu>li {
  list-style: none;
}

.header__menu .sub-menu>li.menu-item-has-children>.sub-menu>li>a {
  display: block;
  font-size: 13.5px;
  color: var(--dark);
  padding: 4px 8px;
  border-radius: 5px;
  line-height: 1.4;
  transition: color var(--tr), background var(--tr);
}

.header__menu .sub-menu>li.menu-item-has-children>.sub-menu>li>a:hover,
.header__menu .sub-menu .current-menu-item>a {
  color: var(--blue);
  background: var(--blue-bg);
}

/* Level-2 leaf nodes */
.header__menu>li.menu-item-has-children>.sub-menu>li:not(.menu-item-has-children) {
  list-style: none;
}

.header__menu>li.menu-item-has-children>.sub-menu>li:not(.menu-item-has-children)>a {
  display: block;
  font-size: 13.5px;
  color: var(--dark);
  padding: 4px 8px;
  border-radius: 5px;
  line-height: 1.4;
  transition: color var(--tr), background var(--tr);
}

.header__menu>li.menu-item-has-children>.sub-menu>li:not(.menu-item-has-children)>a:hover {
  color: var(--blue);
  background: var(--blue-bg);
}

body {
  font-family: 'Inter', sans-serif;
  color: #252C32;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

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

/* ─── CONTAINER ─────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  opacity: 0.88;
}

.btn--primary {
  background: #0D99FF;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.108px;
  padding: 15px 25px;
  height: 52px;
  width: fit-content;
}

.btn--outline {
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.108px;
  padding: 15px 25px;
  border: 2px solid #ECEBEB;
  height: 52px;
}

.btn--white {
  background: #fff;
  color: #1D4ED8;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.114px;
  padding: 13px 83px;
  box-shadow: 0 4px 25px rgba(13, 153, 255, 0.35);

}

/* ─── PRE-HEADER ─────────────────────────────────── */
.preheder {
  background: #F5F5F5;
  height: 75px;
}

.preheder .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.preheder__tagline {
  font-size: 14px;
  font-weight: 400;
  color: #0D99FF;
  letter-spacing: -0.084px;
  line-height: 19px;
  flex-shrink: 0;
  max-width: 214px;
}

.preheder__search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 344px;
  height: 34px;
  background: #fff;
  border: 1px solid #DDDEE3;
  border-radius: 5px;
  padding: 5px 8px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
}

.preheder__search-icon {
  flex-shrink: 0;
}

.preheder__search input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: #252C32;
  width: 100%;
  background: transparent;
}

.preheder__search input::placeholder {
  color: #252C32;
}

.preheder__contacts {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.preheder__messengers {
  display: flex;
  align-items: center;
  gap: 15px;
}

.messenger-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}


.messenger-icon:hover {
  background: #1D4ED8;
  box-shadow: 0 0 20px rgba(16, 95, 197, 0.45);
  transition: all 0.4s;
}

.messenger-icon {
  background: #0D99FF;
}

a.messenger-icon.messenger-icon--tg1 img {
  margin-left: -3px;
}

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

.phone-icon {
  width: 19px;
  height: 19px;
  border: 1.5px solid #1D4ED8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preheder__phone-number {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  background: linear-gradient(90deg, #1D4ED8 45%, #f5f5f5 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: background .25s ease;
}

.preheder__phone-number.is-revealed {
  background: none;
  -webkit-text-fill-color: #1D4ED8;
  color: #1D4ED8;
}

/* ─── HEADER ─────────────────────────────────────── */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
  padding-top: 7px;
}

.header--scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
  border-bottom-color: transparent;
}

.header .container {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 60px;
}

.header__logo img {
  height: 62px;
  width: auto;
}

.header__logo-text {
  display: none;
  font-size: 22px;
  font-weight: 700;
  color: #03152F;
  letter-spacing: -0.5px;
}

.header__logo-text span {
  color: #0D99FF;
}

.header__nav {
  flex: 1;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__menu li a {
  font-size: 14px;
  font-weight: 400;
  color: #252C32;
  letter-spacing: -0.084px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: color 0.2s;
}

.header__menu li a:hover {
  color: #0D99FF;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 19px;
  height: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #252C32;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.header__burger:hover span {
  opacity: 0.6;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  height: 665px;
  background: radial-gradient(circle at 33% 7%, #034296 0%, #011530 100%);
  overflow: hidden;
}

.hero .container {
  position: relative;
  height: 100%;
}

.hero__content {
  position: relative;
  height: 607px;
}

.hero__left {
  position: absolute;
  left: 0;
  top: 158px;
  width: 604px;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

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

.hero__title {
font-size: 62px;
  font-weight: 600;
  color: #fff;
  line-height: 75px;
  letter-spacing: -0.42px;
  position: relative;
  z-index: 1;
}

.hero__subtitle {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.132px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 27px;
}

/* Visual polygon cluster */
.hero__visual {
  position: absolute;
  left: 459px;
  top: 0;
  width: 669px;
  height: 607px;
  will-change: transform;
  transform-origin: center center;
}

.hero__vdeco,
.hero__photo {
  position: absolute;
}

.hero__vdeco {
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  border-radius: 10px;
}


/* Decorative gradient polygons */
.hero__vdeco {
  width: 231px;
  height: 231px;
}

.hero__vdeco--1 {
  left: 0;
  top: 0;
  background: linear-gradient(137deg, rgba(1, 21, 48, 0) 19%, rgba(48, 77, 255, 0.5) 100%);
}

.hero__vdeco--2 {
  left: 219px;
  top: 0;
  background: linear-gradient(224deg, rgba(1, 21, 48, 0) 21%, rgba(48, 77, 255, 0.5) 100%);
}

.hero__vdeco--3 {
  left: 438px;
  top: 0;
  background: linear-gradient(224deg, rgba(1, 21, 48, 0) 21%, rgba(3, 24, 57, 0.02) 46%, rgba(48, 77, 255, 0.5) 100%);
}

.hero__vdeco--4 {
  left: 1px;
  top: 376px;
  background: linear-gradient(224deg, rgba(48, 77, 255, 0.5) 0%, rgba(1, 21, 48, 0) 79%);
}

.hero__vdeco--5 {
  left: 438px;
  top: 376px;
  background: linear-gradient(224deg, rgba(1, 21, 48, 0) 21%, rgba(48, 77, 255, 0.5) 100%);
}

.hero__photo-inner {
  position: absolute;
  inset: 4px;

  overflow: hidden;
}

.hero__photo-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo--1 {
  width: 232px;
  height: 232px;
  left: 123px;
  top: 184px;
  filter: drop-shadow(0 0 2px rgba(13, 153, 255, 0.5));
}

.hero__photo--3 {
  width: 232px;
  height: 232px;
  left: 337px;
  top: 178px;
  filter: drop-shadow(0 0 7px rgba(13, 153, 255, 1));
}

.hero__photo--2 {
  width: 231px;
  height: 231px;
  left: 231px;
  top: 369px;
  filter: drop-shadow(0 0 4px rgba(13, 153, 255, 0.25));
}

/* Stats */
.hero__stats {
  position: absolute;
  left: 1027px;
  top: 180px;
  width: 172px;
  display: flex;
  flex-direction: column;
  gap: 53px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__stat--right {
  align-items: flex-end;
  text-align: right;
  gap: 3px;
}

.hero__stat-number {
  font-size: 42px;
  font-weight: 600;
  color: #0D99FF;
  letter-spacing: -0.252px;
  line-height: 1;
}

.hero__stat-label {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.108px;
  line-height: 1.4;
}

@media (max-width: 990px) {
  .hero {
    height: auto;
    overflow: visible;
    padding: 40px 0 40px;
  }

  .hero .container {
    height: auto;
  }

  .hero__content {
    height: auto;
  }

  .hero__left,
  .hero__visual,
  .hero__stats {
    position: static;
    width: 100%;
  }

  .hero__left {
    margin-bottom: 40px;
  }

  .hero__visual {
    height: 400px;
    margin-bottom: 40px;
  }

  .hero__stats {
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
  }

  .hero__stat--right {
    align-items: flex-start;
    text-align: left;
  }

  .hero__title {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 18px;
  }
}

/* ─── CONSULTATION ───────────────────────────────── */
.consultation {
  position: relative;
  height: 275px;
  display: flex;
  align-items: center;

}

.consultation__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.consultation__bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.consultation .container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.consultation__row {
  display: flex;
  align-items: center;
  gap: 131px;
  margin-bottom: 8px;
  margin-top: -60px;
}

.consultation__title {
  font-size: 55px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.33px;
  line-height: 1.21;
  white-space: nowrap;
}

.consultation__text {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.102px;
}


@media (max-width: 990px) {
  .consultation {
    height: auto;
    padding: 98px 0;
  }

  .consultation__row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .consultation__title {
    font-size: 32px;
    white-space: normal;
  }
}

/* ─── MOBILE NAV ─────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 100vw);
  height: 100dvh;
  background: #0D1728;
  z-index: 1001;
  transition: right .3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mobile-nav.is-open {
  right: 0;
}

.mobile-nav__inner {
  padding: 20px 24px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav__close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: background var(--tr);
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, .18);
}

.mobile-nav__close svg path {
  stroke: #fff;
}

/* Menu list */
.mobile-nav__menu {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav__menu>li {
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

/* .mobile-nav__menu > li:first-child { border-top: 1px solid rgba(255,255,255,.09); } */
.mobile-nav__menu>.menu-item-has-children>.sub-menu>.menu-item:first-child a {
  border-top: none;
}

/* li with children — flex row: [link][chevron btn] then [sub-menu full-width] */
.mobile-nav__menu li.menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mobile-nav__menu li.menu-item-has-children>.sub-menu {
  flex-basis: 100%;
}

/* Top-level links */
.mobile-nav__menu>li>a {
  display: block;
  flex: 1;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  border-radius: 0;
  background: none;
  transition: color var(--tr);
}

.mobile-nav__menu>li>a:hover {
  color: #fff;
  background: none;
}

/* Chevron button — toggles sub-menu */
.mobile-nav__chevron {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  margin-right: -8px;
  padding: 0;
  transition: transform var(--tr);
}

.mobile-nav__menu li.menu-item-has-children.is-expanded>.mobile-nav__chevron {
  transform: rotate(180deg);
}

/* Level-2 sub-menu (accordion) */
.mobile-nav__menu .sub-menu {
  display: none;
  padding: 4px 0 12px 0;
  list-style: none;
}

.mobile-nav__menu .sub-menu.is-open {
  display: block;
}

/* Level-2 items */
.mobile-nav__menu .sub-menu>li {
  border: none;
  padding: 0;
}

.mobile-nav__menu .sub-menu.is-open ul.sub-menu.is-open {
  padding-left: 12px;
  padding-right: 16px;
}

.mobile-nav__menu>.menu-item-has-children>.sub-menu {
  padding-left: 12px;
  background: rgba(167, 194, 217, 0.10);
}

/* Level-2 items WITHOUT children — bullet + blue link */
.mobile-nav__menu .sub-menu>li:not(.menu-item-has-children) {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.mobile-nav__menu .sub-menu>li:not(.menu-item-has-children)::before {
  content: '•';
  color: #A7C2D9;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-nav__menu .sub-menu>li:not(.menu-item-has-children)>a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: #A7C2D9;
  background: none;
  border-radius: 0;
  transition: opacity var(--tr);
}

.mobile-nav__menu .sub-menu>li:not(.menu-item-has-children)>a:hover {
  opacity: .75;
  background: none;
}

/* Level-2 items WITH children — act as sub-accordion headers */
.mobile-nav__menu .sub-menu>li.menu-item-has-children {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.mobile-nav__menu .sub-menu>li.menu-item-has-children>a {
  display: block;
  flex: 1;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  background: none;
  border-radius: 0;
  transition: color var(--tr);
}

.mobile-nav__menu .sub-menu>li.menu-item-has-children>a:hover {
  color: #fff;
  background: none;
}

/* Level-3 items — plain indented links */
.mobile-nav__menu .sub-menu .sub-menu {
  padding: 2px 0 8px 12px;
}

.mobile-nav__menu .sub-menu .sub-menu>li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.mobile-nav__menu .sub-menu .sub-menu>li::before {
  content: '–';
  color: rgba(255, 255, 255, .3);
  font-size: 13px;
  flex-shrink: 0;
}

.mobile-nav__menu .sub-menu .sub-menu>li>a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  background: none;
  border-radius: 0;
  transition: color var(--tr);
}

.mobile-nav__menu .sub-menu .sub-menu>li>a:hover {
  color: rgba(255, 255, 255, .9);
  background: none;
}

/* Overlay */
.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mobile-nav__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ─── ADVANTAGES ─────────────────────────────────── */
.advantages {
  background: #F5F5F5;
  padding: 100px 0 120px;
  margin-top: -60px;
}

.advantages__title {
  font-size: 36px;
  font-weight: 700;
  color: #252C32;
  letter-spacing: -0.216px;
  text-align: center;
  margin-bottom: 58px;
}

.advantages__cards {
  display: flex;
  gap: 19px;
}

.advantages__card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #DDE2E4;
  border-radius: 10px;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  min-height: 312px;
}

.advantages__card:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transform: all 0.4s;
}

.advantages__card-icon {
  width: 44px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.advantages__card-icon img {
  display: block;
}

.advantages__card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advantages__card-title {
  font-size: 17px;
  font-weight: 700;
  color: #252C32;
  letter-spacing: -0.102px;
  line-height: 1.3;
}

.advantages__card-text {
  font-size: 15px;
  font-weight: 400;
  color: #252C32;
  letter-spacing: -0.09px;
  line-height: 17px;
}

/* ─── SERVICES (ORG SOLUTIONS) ───────────────────── */
.services {
  background: #fff;
  overflow: hidden;
}

.services__title-wrap {
  margin: 0 auto;
  padding: 120px 20px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 810px;

}

.services__title {
  font-size: 55px;
  font-weight: 600;
  line-height: 63px;
  color: #011530;
  letter-spacing: -0.33px;
}

.services__title span {
  color: #1D4ED8;
}

.services__grid-outer {
  position: relative;
  max-width: 1366px;
  margin: -35px auto 0;
  height: auto;
  overflow: hidden;
  padding-bottom: 137px;
}

.services__grid {
  position: relative;
  width: 1366px;
  min-height: 852px;
  margin: 0 auto;
  margin-top: -137px;
}

/* ── Hex base ─────────────────────────────────────── */
.svc-hex {
  position: absolute;
  width: 290px;
  height: 290px;
}

/* gradient ring via ::before (full hex) + ::after (inner cutout) */
.svc-hex::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  border-radius: 10px;
}

.svc-hex--deco::after {
  content: '';
  position: absolute;
  inset: 5px;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  border-radius: 8px;
  background: #fff;
}

/* ── Deco hex stroke variants ─────────────────────── */
.svc-hex--deco-top::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(13, 153, 255, 0.5) 100%);
}

.svc-hex--deco-left::before {
  background: linear-gradient(270deg, rgba(13, 153, 255, 0.5) 4%, rgba(255, 255, 255, 0) 65%);
}

.svc-hex--deco-right::before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 42%, rgba(13, 153, 255, 0.5) 100%);
}

.svc-hex--deco-bot::before {
  background: linear-gradient(180deg, rgba(13, 153, 255, 0.5) 0%, rgba(255, 255, 255, 0) 40%);
}

/* ── Content hex (photo + label) ──────────────────── */
.svc-hex--photo::before {
  background: linear-gradient(180deg, rgba(13, 153, 255, 0.5) 0%, rgba(25, 119, 240, 1) 100%);
}

.svc-hex__inner {
  position: absolute;
  inset: 5px;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
}

.svc-hex__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.2;
}

.svc-hex__label {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 600;
  color: #011530;
  text-align: center;
  padding: 0 22px;
  letter-spacing: -0.102px;
  line-height: 1.3;
}


/* Blue-tinted first hex */
.svc-hex--photo:hover .svc-hex__inner {
  background: rgba(13, 153, 255, 0.8);
}

.svc-hex--photo:hover span.svc-hex__label {
  color: #fff;
}

.svc-hex--pending {
  display: none;
}

/* ── "Show more" button ───────────────────────────── */
.services__more {
  position: absolute;
  width: 271px;
  background: #E2E8F0;
  border: none;
  border-radius: 5px;
  padding: 13px 0;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #1D4ED8;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

/* ── Mobile services (≤1100px) ────────────────────── */
.svc-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .services__title-wrap {
    font-size: 30px;
  }

  .services__title {
    font-size: 30px;
    line-height: 1.2;
            margin-bottom: 40px;
  }

  .services__grid-outer {
    display: none;
  }

  .svc-mobile {
    display: block;
    padding-bottom: 60px;
  }
}

.svc-mobile__wrap {
  max-width: 668px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Each row: height set by padding-bottom = hex width ratio (41.02%) */
.svc-mobile__row {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 41.02%;
}

/* Vertical overlap between rows: 48px/668px ≈ 7.18% of container width */
.svc-mobile__row+.svc-mobile__row {
  margin-top: -7.18%;
}

.svc-mobile__row--hidden {
  display: none;
}

/* Hex base */
.svc-mobile__hex {
  position: absolute;
  top: 0;
  width: 41.02%;
  height: 100%;
}

.svc-mobile__hex::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  border-radius: 10px;
}

/* Ghost hex inner cutout */
.svc-mobile__hex--ghost::after {
  content: '';
  position: absolute;
  inset: 4.5%;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  border-radius: 8px;
  background: #fff;
}

/* Left row: content at 20.81%, ghost at 58.98% */
.svc-mobile__row--left .svc-mobile__hex--content {
  left: 20.81%;
}

.svc-mobile__row--left .svc-mobile__hex--gr {
  left: 58.98%;
}

/* Right row: ghost at 0%, content at 38.17% */
.svc-mobile__row--right .svc-mobile__hex--gl {
  left: 0;
}

.svc-mobile__row--right .svc-mobile__hex--content {
  left: 38.17%;
}

/* Ghost gradients */
.svc-mobile__hex--gr::before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 61%, rgba(13, 153, 255, 0.5) 100%);
}

.svc-mobile__hex--gl::before {
  background: linear-gradient(270deg, rgba(13, 153, 255, 0.5) 4%, rgba(255, 255, 255, 0) 42%);
}

/* Content hex ring + inner */
.svc-mobile__hex--content::before {
  background: linear-gradient(180deg, rgba(13, 153, 255, 0.5) 0%, rgba(25, 119, 240, 1) 100%);
}

.svc-mobile__inner {
  position: absolute;
  inset: 4.5%;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.svc-mobile__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.svc-mobile__name {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 600;
  color: #011530;
  text-align: center;
  padding: 0 14%;
  letter-spacing: -0.006em;
  line-height: 1.3;
}

.svc-mobile__hex--content:hover .svc-mobile__inner {
  background: rgba(13, 153, 255, 0.8);
}

.svc-mobile__hex--content:hover .svc-mobile__name {
  color: #fff;
}

/* Show more */
.svc-mobile__more {
  display: block;
  margin: 28px auto 0;
  width: 271px;
  max-width: 90%;
  background: #E2E8F0;
  border: none;
  border-radius: 5px;
  padding: 13px 0;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #1D4ED8;
  cursor: pointer;
}


@media (max-width: 480px) {
  .svc-mobile__name {
    font-size: 14px;
  }

  .svc-mobile__wrap {
    padding: 0 12px;
  }
}


/* ── Tablet hex grid (640–1100px) ─────────────────── */
.svc-tablet {
  display: none;
}

@media (min-width: 640px) and (max-width: 1100px) {
  .svc-mobile {
    display: none;
  }

  .svc-tablet {
    display: block;
    padding-bottom: 60px;
  }
}

.svc-tablet__wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Each row: height = 34% of wrap width (square hex containers) */
.svc-tablet__row {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 34%;
}

.svc-tablet__row + .svc-tablet__row {
  margin-top: -6%;
}

.svc-tablet__row--hidden {
  display: none;
}

.svc-tablet__hex {
  position: absolute;
  top: 0;
  width: 34%;
  height: 100%;
  text-decoration: none;
}

/* 3-hex row: centers at 17%, 50%, 83% */
.svc-tablet__row--3 .svc-tablet__hex:nth-child(1) { left: 0%; }
.svc-tablet__row--3 .svc-tablet__hex:nth-child(2) { left: 33%; }
.svc-tablet__row--3 .svc-tablet__hex:nth-child(3) { left: 66%; }

/* 2-hex row: centers at 33.5%, 66.5% (offset between 3-row hexes) */
.svc-tablet__row--2 .svc-tablet__hex:nth-child(1) { left: 16.5%; }
.svc-tablet__row--2 .svc-tablet__hex:nth-child(2) { left: 49.5%; }

/* Single hex in any row: center it */
.svc-tablet__row .svc-tablet__hex:only-child { left: 33%; }

/* Hex outer ring */
.svc-tablet__hex::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  background: linear-gradient(180deg, rgba(13, 153, 255, 0.5) 0%, rgba(25, 119, 240, 1) 100%);
  border-radius: 10px;
}

/* Hex inner face */
.svc-tablet__inner {
  position: absolute;
    inset: 2.5%;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  transition: background 0.2s;
}

.svc-tablet__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.svc-tablet__name {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
  color: #011530;
  text-align: center;
  padding: 0 14%;
  letter-spacing: -0.006em;
  line-height: 1.3;
}

.svc-tablet__hex:hover .svc-tablet__inner {
  background: rgba(13, 153, 255, 0.8);
}

.svc-tablet__hex:hover .svc-tablet__name {
  color: #fff;
}

.svc-tablet__hex:hover img {
  opacity: 0.35;
}

/* Show more button */
.svc-tablet__more {
  display: block;
  margin: 24px auto 0;
  width: 271px;
  max-width: 90%;
  background: #E2E8F0;
  border: none;
  border-radius: 5px;
  padding: 13px 0;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #1D4ED8;
  cursor: pointer;
  transition: background 0.2s;
}

.svc-tablet__more:hover {
  background: #cdd5e0;
}

/* Smaller font on narrow tablet/large phones */
@media (max-width: 760px) {
  .svc-tablet__name {
    font-size: 13px;
  }
}


.services__more:hover {
  background: #cdd5e0;
}

@media (max-width: 900px) {
  .advantages__cards {
    flex-direction: column;
    gap: 16px;
  }

  .advantages__card {
    min-height: auto;
  }

  .advantages__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .advantages {
    padding: 60px 0 80px;
  }
}

/* ─── Software Solutions ─── */
.software {
  background: #F5F5F5;
  padding: 107px 20px 120px;
}

.software__wrap {
  max-width: 1082px;
  margin: 0 auto;
}

.software__title {
  font-size: 55px;
  font-weight: 600;
  color: #1D4ED8;
  line-height: 63px;
  letter-spacing: -0.33px;
  text-align: center;
  margin-bottom: 55px;
}

.software__tabs {
  display: flex;
  align-items: center;
  gap: 21px;
}

.software__arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.software__arrow:hover {
  opacity: 0.75;
}

.software__arrow.is-disabled {
  opacity: 0.25;
  pointer-events: none;
}

.software__tabs-list {
  display: flex;
  flex: 1;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.software__tabs-list::-webkit-scrollbar {
  display: none;
}

.software__tab {
  flex: 0 0 calc(100% / 3);
  height: 45px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1D4ED8;
  letter-spacing: -0.09px;
  background: #fff;
  clip-path: polygon(4.2% 0, 95.8% 0, 100% 50%, 95.8% 100%, 4.2% 100%, 0 50%);
  filter: drop-shadow(0 0 0.5px #D8D8D8) drop-shadow(0 0 0.5px #D8D8D8);
  transition: background 0.2s, color 0.2s, filter 0.2s;
}

.software__tab.is-active {
  background: #0D99FF;
  color: #fff;
  filter: none;
}

.software__swiper {
  margin-top: 51px;
}

.software__body {
  display: flex;
  align-items: center;
  gap: 102px;
  padding-left: 42px;
}

.software__text {
  width: 473px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.software__product {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.software__name {
  font-size: 30px;
  font-weight: 600;
  color: #1D4ED8;
  letter-spacing: -0.18px;
  line-height: 1.2;
}

.software__desc {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.software__desc p {
  font-size: 15px;
  font-weight: 400;
  color: #252C32;
  letter-spacing: -0.09px;
  margin: 0;
  line-height: 1.5;
}

.software__desc strong {
  font-weight: 700;
}

.software__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.software__list li {
  font-size: 15px;
  font-weight: 400;
  color: #252C32;
  letter-spacing: -0.09px;
  line-height: 22.2px;
  padding-left: 12px;
  position: relative;
}

.software__list li::before {
  content: '–';
  position: absolute;
  left: 0;
}

.software__diagram img {
  display: block;
  width: 364px;
  height: auto;
}

/* ─── Consultation Form ─── */
.form-section {
  position: relative;
  padding: 74px 0 126px;
  background: #F5F5F5;
}

.form-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-section__bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.form-section .container {
  position: relative;
  z-index: 1;
}

.form-section__inner {
  max-width: 1052px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 44px;
}

.form-section__left {
  width: 418px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.form-section__title {
  font-size: 55px;
  font-weight: 600;
  color: #fff;
  line-height: 63px;
  letter-spacing: -0.33px;
}

.form-section__subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.09px;
  line-height: 1.5;
}

.form-section__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.form-section__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

span.wpcf7-list-item label {
  display: flex;
  gap: 10px;
  max-width: 514px;
}

.form-section__row p {
  display: flex;
    gap: 10px;
}

.form-section__input,
.form-section__textarea {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 7px;
  padding: 10px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.09px;
  outline: none;
  box-sizing: border-box;
  width: 100%;
}

.form-section__input {
  flex: 1;
  min-width: 0;
}

.form-section__input::placeholder,
.form-section__textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-section__textarea {
  width: 100%;
  min-height: 132px;
  resize: none;
  line-height: 1.5;
}

/* Hide native CF7 checkbox */
.form-section__consent {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Row layout: custom box + text side by side */
.form-section__consent+.wpcf7-list-item-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

/* Custom checkbox box via ::before */
.form-section__consent+.wpcf7-list-item-label::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(1, 21, 48, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color var(--tr), background var(--tr);
  margin-top: 10px;
}

/* Hover */
label:hover .form-section__consent+.wpcf7-list-item-label::before {
  border-color: rgba(255, 255, 255, 0.5);
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

/* Checked — dark box + white checkmark */
.form-section__consent:checked+.wpcf7-list-item-label::before {
    background: #3996fd;
  border-color: rgba(255, 255, 255, 0.7);
  background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='18' viewBox='0 0 24 18' fill='none'%3E%3Cpath d='M2 9L9 16L22 2' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
}

/* Focus ring for accessibility */
.form-section__consent:focus+.wpcf7-list-item-label::before {
  border-color: rgba(255, 255, 255, 0.6);
  outline: 2px solid rgba(13, 153, 255, 0.5);
  outline-offset: 2px;
}

.form-section__consent-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.084px;
  line-height: 1.5;
  margin-top: 6px;
}

.form-section__submit {
  width: 100%;
  background: #0D99FF;
  border: none;
  border-radius: 7px;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.114px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 12px;
}

.form-section__submit:hover {
  opacity: 0.88;
}

@media (max-width: 900px) {
  .form-section__row br {
    display: none;
  }

  section.form-section svg g {
    display: none;
  }

  section.consultation svg g {
    display: none;
  }

  .form-section {
    padding: 30px 0 100px;
    background-size: cover;
  }

  .form-section__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }

  .form-section__left {
    width: 100%;
    padding-top: 0;
  }

  .form-section__title {
    font-size: 30px;
    line-height: 1.2;
  }
}

/* ─── Team ─── */
.team {
  background: #fff;
  padding: 80px 20px 100px;
  padding: 112px 20px 100px;
}

.team__wrap {
  max-width: 1016px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.team__title {
  font-size: 55px;
  font-weight: 600;
  color: #1D4ED8;
  line-height: 63px;
  letter-spacing: -0.33px;
  text-align: center;
}

.team__slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.team__swiper {
  flex: 1;
  min-width: 0;
}

.team__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F5F5;
  border: 1px solid #DDE2E4;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.team__arrow:hover { background: #EFF6FF; border-color: #1D4ED8; }
.team__arrow.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

.team__card {
  background: #F5F5F5;
  border: 1px solid #DDE2E4;
  border-radius: 7px;
  padding: 22px 22px 35px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  box-sizing: border-box;
}

.team__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}

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

.team__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.team__name {
  font-size: 22px;
  font-weight: 600;
  color: #1D4ED8;
  line-height: 1.2;
  margin: 0;
}

.team__role {
  font-size: 14px;
  font-weight: 400;
  color: #525252;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 900px) {
  .team {
    padding: 60px 20px 80px;
  }

  .team__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .team__slider-wrap { gap: 8px; }
  .team__arrow { width: 32px; height: 32px; }
}

/* ─── Clients Slider ─── */
.clients {
  background: #F5F5F5;
  padding: 100px 0 95px;
}

.clients__title {
  font-size: 55px;
  font-weight: 600;
  color: #1D4ED8;
  line-height: 63px;
  letter-spacing: -0.33px;
  text-align: center;
  margin-bottom: 50px;
}

.clients__slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.clients__arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.clients__arrow:hover {
  opacity: 0.7;
}

.clients__swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.client-card {
  background: #fff;
  border: 1px solid #DDE2E4;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 12px 25px;
  box-sizing: border-box;
  height: 100%;
}

.client-card__logo {
  display: block;
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  width: auto;
  height: auto;
}

.client-card__name {
  font-size: 12px;
  font-weight: 400;
  color: #808080;
  text-align: center;
  letter-spacing: -0.072px;
  line-height: 1.5;
  margin: 0;
}

.client-card__name strong {
  font-weight: 600;
  color: #808080;
}

@media (max-width: 900px) {
  .clients {
    padding: 60px 0 60px;
  }

  .clients__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 32px;
  }
}

@media (max-width: 900px) {
  .software {
    padding: 60px 20px 80px;
  }

  .software__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .software__tabs {
    overflow-x: auto;
    gap: 10px;
  }

  .software__tab-img {
    width: 220px;
    height: auto;
  }

  .software__swiper {
    margin-top: 30px;
  }

  .software__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-left: 0;
  }

  .software__text {
    width: 100%;
    gap: 28px;
  }

  .software__diagram img {
    width: 100%;
    max-width: 364px;
  }
}

/* ── Mobile software accordion (≤1100px) ─────────── */
.sw-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .software>.container {
    display: none;
  }

  .sw-mobile {
    display: block;
  }
}

.sw-mobile__wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 0 0px;
}

.sw-mobile__title {
  font-size: 30px;
  font-weight: 600;
  color: #1D4ED8;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 32px;
  letter-spacing: -0.006em;
  line-height: 1.2;
}

.sw-mobile__list {
  border: 1px solid #DDE2E4;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 16px;
}

.sw-mobile__item+.sw-mobile__item {
  border-top: 1px solid #D8D8D8;
}

.sw-mobile__header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 20px;
  height: 64px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1D4ED8;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.sw-mobile__item.is-open>.sw-mobile__header {
  background: #0D99FF;
  color: #fff;
}

.sw-mobile__icon {
  width: 20px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.sw-mobile__item.is-open .sw-mobile__icon {
  filter: brightness(0) invert(1);
}

.sw-mobile__name {
  flex: 1;
}

.sw-mobile__chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: currentColor;
}

.sw-mobile__item.is-open .sw-mobile__chevron {
  transform: rotate(180deg);
}

.sw-mobile__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.sw-mobile__item.is-open .sw-mobile__body {
  max-height: 800px;
}

.sw-mobile__desc {
  padding: 20px 20px 4px;
  font-size: 14px;
  color: #252C32;
  letter-spacing: -0.006em;
  line-height: 22px;
}

.sw-mobile__desc p {
  margin: 0 0 8px;
}

.sw-mobile__desc strong {
  font-weight: 700;
}

.sw-mobile__desc ul,
.sw-mobile__desc ol {
  padding-left: 18px;
  margin: 4px 0 8px;
}

.sw-mobile__desc li {
  margin-bottom: 4px;
}

.sw-mobile__cta {
  display: inline-block;
  margin: 12px 20px 20px;
  padding: 14px 28px;
  background: #0D99FF;
  color: #fff;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.006em;
  box-shadow: 0 4px 25px rgba(13, 153, 255, 0.35);
  transition: opacity 0.2s;
}

.sw-mobile__cta:hover {
  opacity: 0.85;
}

/* ─── How We Work ─── */
.how-we-work {
  background: #F5F5F5;
  padding: 120px 0 110px;
}

.how__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 867px;
  margin: 0 auto 55px;
}

.how__title {
  font-size: 55px;
  font-weight: 600;
  color: #011530;
  line-height: 63px;
  letter-spacing: -0.33px;
  text-align: center;
}

.how__title-blue {
  color: #1D4ED8;
}

.how__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #525252;
  letter-spacing: -0.11px;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 700px;
  margin-top: 24px;
}

.how__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 56px;
}

.how__row {
  display: flex;
  gap: 20px;

}

.how__card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid #DDE2E4;
  border-radius: 10px;
  min-height: 431px;
  box-sizing: border-box;
}

.how__card-inner {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 55px 35px 40px 37px;
}

.how__icon {
  width: 45px;
  height: 50px;
  flex-shrink: 0;
  margin-top: 2px;
}

.how__card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.how__card-heading {
  margin: 0;
}

.how__card-heading strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #1D4ED8;
  line-height: 22px;
  letter-spacing: -0.132px;
}

.how__card-heading span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #525252;
  line-height: 22px;
  letter-spacing: -0.09px;
}

.how__card-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #252C32;
  letter-spacing: -0.084px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.how__card-body p {
  margin: 0;
}

.how__card-body strong {
  font-weight: 600;
}

.how__card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how__card-body ul li {
  padding-left: 12px;
  position: relative;
}

.how__card-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
}

/* ─── Scroll animations ─── */
.anim-item {
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-item.is-hidden {
  opacity: 0;
  transform: translateY(30px);
}

@media (max-width: 900px) {
  .how-we-work {
    padding: 60px 0 70px;
  }

  .how__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .how__subtitle {
    font-size: 15px;
  }

  .how__header {
    margin-bottom: 36px;
  }

  .how__row {
    flex-direction: column;
  }

  .how__card {
    min-height: auto;
  }
}

/* ─── Values ─── */
.values {
  background: #fff;
  padding: 100px 0 110px;
}

.values__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  max-width: 573px;
  margin: 0 auto 55px;
}

.values__title {
  font-size: 55px;
  font-weight: 600;
  color: #1D4ED8;
  line-height: 63px;
  letter-spacing: -0.33px;
  text-align: center;
}

.values__title-dark {
  color: #252C32;
}

.values__subtitle {
  font-size: 25px;
  font-weight: 400;
  color: #011530;
  letter-spacing: -0.15px;
  line-height: 50px;
  text-align: center;
}

.values__body {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hexagon cluster */
.values__hexes {
  position: relative;
  width: 615px;
  height: 562px;
  flex-shrink: 0;
  will-change: transform;
  transform-origin: center center;
}

.val-hex {
  position: absolute;
  border-radius: 10px;
}

.val-hex--p9,
.val-hex--p14 {
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  overflow: hidden;
}

.val-hex--p9 img,
.val-hex--p14 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.val-hex--p10 .val-hex__inner {
  position: absolute;
  inset: 3px;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  overflow: hidden;
  border-radius: 8px;
}

.val-hex--p10 .val-hex__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.val-hex--p11 {
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  background: linear-gradient(224deg, rgba(13, 153, 255, 0.5) 0%, rgba(255, 255, 255, 0) 79%);
}

.val-hex--p12,
.val-hex--p13 {
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  background: linear-gradient(224deg, rgba(255, 255, 255, 0) 21%, rgba(13, 153, 255, 0.5) 100%);
}

.val-hex--p9 {
  left: 101px;
  top: 172px;
  width: 216px;
  height: 216px;
}

.val-hex--p10 {
  left: 200px;
  top: 346px;
  width: 216px;
  height: 216px;
}

.val-hex--p11 {
  left: 0;
  top: 347px;
  width: 215px;
  height: 215px;
}

.val-hex--p12 {
  left: 200px;
  top: 0;
  width: 217px;
  height: 217px;
}

.val-hex--p13 {
  left: 400px;
  top: 347px;
  width: 215px;
  height: 215px;
}

.val-hex--p14 {
  left: 300px;
  top: 172px;
  width: 216px;
  height: 216px;
}

/* Value cards */
.values__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.values__card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #F5F5F5;
  border: 1px solid #DDE2E4;
  border-radius: 7px;
}

.values__icon-wrap {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 42px;
}

.values__icon {
  width: 38px;
  height: 42px;
  display: block;
}

.values__num {
  position: absolute;
  left: 8px;
  top: 10px;
  width: 22px;
  height: 22px;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #fff;
  text-align: center;
  line-height: 22px;
}

.values__text {
  font-size: 15px;
  font-weight: 400;
  color: #252C32;
  line-height: 22px;
  letter-spacing: -0.09px;
}

@media (max-width: 1100px) {
  .values__hexes {
    width: 420px;
    height: 384px;
  }

  .val-hex--p9 {
    left: 69px;
    top: 117px;
    width: 147px;
    height: 147px;
  }

  .val-hex--p10 {
    left: 136px;
    top: 236px;
    width: 147px;
    height: 147px;
  }

  .val-hex--p11 {
    left: 0;
    top: 237px;
    width: 147px;
    height: 147px;
  }

  .val-hex--p12 {
    left: 136px;
    top: 0;
    width: 148px;
    height: 148px;
  }

  .val-hex--p13 {
    left: 273px;
    top: 237px;
    width: 147px;
    height: 147px;
  }

  .val-hex--p14 {
    left: 204px;
    top: 117px;
    width: 147px;
    height: 147px;
  }
}

@media (max-width: 900px) {
  .values {
    padding: 60px 0 70px;
  }

  .values__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .values__subtitle {
    font-size: 18px;
    line-height: 1.5;
  }

  .values__head {
    margin-bottom: 36px;
  }

  .values__body {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }

  .values__hexes {
    height: 300px;
    position: relative;
    left: 50%;
    transform: translate(-45%, 0%);
  }

  .val-hex--p9 {
    left: calc(16% + 0px);
    top: 90px;
    width: 120px;
    height: 120px;
  }

  .val-hex--p10 {
    left: calc(16% + 60px);
    top: 180px;
    width: 120px;
    height: 120px;
  }

  .val-hex--p11 {
    left: calc(16% - 60px);
    top: 180px;
    width: 115px;
    height: 115px;
  }

  .val-hex--p12 {
    left: calc(16% + 60px);
    top: 0;
    width: 120px;
    height: 120px;
  }

  .val-hex--p13 {
    left: calc(16% + 180px);
    top: 180px;
    width: 115px;
    height: 115px;
  }

  .val-hex--p14 {
    left: calc(16% + 120px);
    top: 90px;
    width: 120px;
    height: 120px;
  }
}

/* ─── Footer ─── */
.footer {
  background: radial-gradient(circle at 50% -41%, rgba(29, 78, 216, 1) 6%, rgba(1, 21, 48, 1) 53%);

  padding-top: 76px;
}

.home .footer {
  margin-top: -76px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Cards row */
.footer__cards {
  display: flex;
  gap: 20px;
  margin-bottom: 112px;
}

.footer__card {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.footer__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.096px;
  line-height: 1;
}

/* Promo */
.footer__promo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__promo-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 14.3px;
}

.footer__promo-title span {
  color: #0D99FF;
}

.footer__promo-text {
  font-size: 13px;
  font-weight: 400;
  color: #9E9E9E;
  line-height: 1.5;
}

.footer__item-date {
  font-size: 13px;
  font-weight: 400;
  color: #9E9E9E;
  line-height: 24px;
  font-family: 'Inter', sans-serif;
}

/* News */
.footer__news {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__news-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__news-thumb {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 3px;
}

.footer__news-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__news-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 14.3px;
  font-family: 'Inter', sans-serif;
}

.footer__news-sep {
  height: 1px;
  background: #4B5768;
  border: none;
}

/* Articles */
.footer__articles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__article-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Info row */
.footer__info {
  display: flex;
  align-items: flex-start;
  gap: 39px;
}

.footer__logo-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-shrink: 0;
  width: 240px;
}

.footer__logo {
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 22px;
  letter-spacing: -0.084px;
  max-width: 239px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 8px;
}

.footer__social {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer__social:hover {
  opacity: 0.75;
}

/* Footer nav */
.footer__nav {
  flex: 1;
  display: flex;
  gap: 39px;
  min-width: 0;
}

.footer__nav-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.footer__nav-head {
  font-size: 14px;
  font-weight: 600;
  color: #0D99FF;
  letter-spacing: -0.084px;
  line-height: 1.2;
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-col ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.084px;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer__nav-col ul li a:hover {
  color: #0D99FF;
}

/* Footer contacts */
.footer__contacts {
  flex-shrink: 0;
  width: 174px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contacts-head {
  font-size: 14px;
  font-weight: 600;
  color: #0D99FF;
  letter-spacing: -0.084px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact-item svg {
  flex-shrink: 0;
}

.footer__contact-phone {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 60%, rgba(1, 21, 48, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
}

.footer__contact-phone.is-revealed {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.footer__contact-link {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}

.footer__contact-link:hover {
  color: #0D99FF;
}

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 40px;
  padding: 22px 20px;
  text-align: center;
}

.footer__copy {
  font-size: 14px;
  font-weight: 400;
  color: #DDE2E4;
  line-height: 22px;
}

.footer__copy a {
  color: #DDE2E4;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__copy a:hover {
  color: #0D99FF;
}

@media (max-width: 900px) {
  .footer__cards {
    flex-direction: column;
    gap: 16px;
  }

  .footer__info {
    flex-direction: column;
    gap: 32px;
  }

  .footer__logo-col {
    width: 100%;
  }

  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer__contacts {
    width: 100%;
  }
}



/* ─── PAGE BANNER & CONTENT ──────────────────────── */
.consultation--page .consultation__row {
  display: none;
}

.consultation--page .consultation__text {
  display: none;
}

.page-banner__title {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.31px;
  line-height: 1.18;
  position: relative;
  z-index: 1;
  margin-top: -50px;
}

@media (max-width: 900px) {
  .page-banner__title {
    font-size: 30px;
    margin-top: 0;
  }
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.page-breadcrumb__item {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--tr);
}

a.page-breadcrumb__item:hover {
  color: #fff;
}

.page-breadcrumb__item--current {
  color: rgba(255, 255, 255, 0.45);
}

.page-breadcrumb__sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
}

/* ─── PAGE CONTENT ───────────────────────────────── */
.page-content {
  padding: 64px 0 80px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin: 1.6em 0 0.6em;
}

.page-content h1 {
  font-size: 40px;
  letter-spacing: -0.24px;
  margin-top: 0;
}

.page-content h2 {
  font-size: 32px;
  letter-spacing: -0.19px;
}

.page-content h3 {
  font-size: 24px;
}

.page-content h4 {
  font-size: 20px;
}

.page-content h5,
.page-content h6 {
  font-size: 17px;
}

.page-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 1.2em;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}

.page-content li {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 0.4em;
}

.page-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content a:hover {
  color: var(--blue-light);
}

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

.page-content blockquote {
  border-left: 3px solid var(--blue-light);
  margin: 1.6em 0;
  padding: 12px 24px;
  background: var(--blue-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px;
  color: var(--dark);
  font-style: italic;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 15px;
}

.page-content th,
.page-content td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
}

.page-content th {
  background: var(--gray-light);
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 768px) {
  .page-content {
    padding: 40px 0 56px;
  }

  .page-content h1 {
    font-size: 28px;
  }

  .page-content h2 {
    font-size: 22px;
  }

  .page-content h3 {
    font-size: 19px;
  }
}


/* ─── 404 PAGE ───────────────────────────────────── */
.notfound {
  height: 665px;
  background: radial-gradient(circle at 33% 7%, #034296 0%, #011530 100%);
  overflow: hidden;
  margin-bottom: 76px;
}

.notfound .container {
  position: relative;
  height: 100%;
}

.notfound__left {
  position: absolute;
  left: 0;
  top: 130px;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.notfound__code {
  display: block;
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -6px;
  background: linear-gradient(135deg, #ffffff 30%, #0D99FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}

.notfound__title {
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.26px;
}

.notfound__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  letter-spacing: -0.1px;
}

@media (max-width: 900px) {
  .notfound {
    height: auto;
    padding: 60px 0 48px;
  }

  .notfound .container {
    height: auto;
  }

  .notfound .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: auto;
  }

  .notfound__left {
    position: static;
    width: 100%;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }

  .notfound__code {
    font-size: 100px;
    letter-spacing: -4px;
  }

  .notfound__title {
    font-size: 30px;
  }

  .notfound .hero__visual {
    position: static;
    width: 100%;
    height: 340px;
  }
}


@media (max-width: 1200px) {
  .hero__title {
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    line-height: 66px;
    letter-spacing: -0.42px;
    position: relative;
    z-index: 1;
  }

  .header__menu,
  .hero__visual,
  .preheder__search {
    display: none;
  }

  .consultation__title {
    font-size: 42px;
  }

  .hero__stats {
    position: relative;
    left: unset;
    top: unset;
    width: 172px;
    display: flex;
    flex-direction: unset;
    gap: 53px;
  }

  .hero__left {
    position: relative;
    left: unset;
    top: unset;
    width: unset;
    display: flex;
    flex-direction: column;
    gap: 38px;
  }

  .hero__content {
    display: flex;
    height: auto;
    flex-wrap: wrap;
    gap: 32px;
  }

  .header__nav {
    justify-content: flex-end;
  }
}

@media (max-width:990px) {
  img.footer__logo {
    height: auto;
    width: 235px;
  }

  .advantages {
    background: #ffffff;
    margin-top: unset;
  }

  .advantages__card {
    border-radius: 10px;
    border: 1px solid #DDE2E4;
    background: #F5F5F5;
  }
}

@media (max-width:670px) {
  .how__card-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer__news-title {
    font-size: 12px;
  }

  .header__logo {

    margin-right: 22px;
  }

  .values {
    padding: 60px 0 70px;
    overflow: hidden;
    width: 100%;
  }

  .home .footer {
    margin-top: -99px;

  }

  .hero__stat {
    text-align: center;
  }

  .services__title-wrap {
    margin: 0 auto;
    padding: 0px 20px 0;
  }

  .form-section__row p {
    gap: 14px;
    flex-wrap: wrap;
  }

  .how__card-inner {
    padding: 25px 25px;
  }

  p.consultation__text {
    text-align: center;
  }

  h2.consultation__title {
    font-size: 30px;
    text-align: center;
  }

  .sw-mobile__list {
    margin: 0;
  }

  .header__logo img {
    height: 41px;
    width: auto;
  }

  .hero__left {
    margin-bottom: 0;
  }

  .hero__stat.hero__stat--right span {
    display: contents;
  }

  .hero__stat.hero__stat--right {
    max-width: 127px;
    text-align: center;
  }

  .hero__stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }

  .hero__buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  p.hero__subtitle {
    text-align: center;
  }

  h1.hero__title {
    font-size: 33px;
    line-height: 45px;
    text-align: center;
  }

  .preheder__tagline,
  .preheder__phone {
    display: none;
  }

  .preheder .container {
    justify-content: center;
  }
}

/* ── Mobile search (≤1200px) ─────────────────────── */
.mob-search {
  display: none;
  align-items: center;
  flex-direction: row-reverse;
  gap: 4px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .mob-search {
    display: flex;
  }
}

.mob-search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  flex-shrink: 0;
}

.mob-search__field {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
}

.mob-search.is-open .mob-search__field {
  width: 150px;
  position: absolute;
  right: 70px;
}

.mob-search__form {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.mob-search__input {
  flex: 1;
  width: 100%;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.mob-search__input:focus {
  border-color: #0D99FF;
}

.mob-search__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  flex-shrink: 0;
  border-radius: 4px;
  transition: background 0.15s;
}

.mob-search__submit:hover {
  background: #F3F4F6;
}

.mob-search__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  flex-shrink: 0;
  color: #6B7280;
}

/* ── Floating phone button (≤1200px) ──────────────── */
.float-phone {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 998;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .float-phone {
    display: flex;
  }
}

/* Pulsing rings */
.float-phone__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 153, 255, 0.45);
  transform: translate(-50%, -50%) scale(1);
  animation: fp-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.float-phone__ring:nth-child(2) {
  animation-delay: 1.2s;
}

@keyframes fp-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.6);
    opacity: 0;
  }
}

.float-phone svg {
  position: relative;
  z-index: 1;
  display: block;
  transition: transform 0.2s ease;
}

.float-phone:hover svg {
  transform: scale(1.08);
}

/* ── Modal ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(1, 21, 48, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #102c67;
  border-radius: 16px;
  padding: 48px 40px 40px;
  max-width: 580px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal__close:hover {
  background: #F3F4F6;
}

.modal__title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

@media (max-width: 600px) {
  footer.footer {
    padding-top: 42px;
  }

  .modal {
    padding: 40px 20px 28px;
    border-radius: 12px;
  }

  .modal__title {
    font-size: 20px;
  }
}

/* ── Single Post ──────────────────────────────────── */
article.single-post {
  padding: 64px 0 100px;
}

.single-post__wrap {
  margin: 0 auto;
}

.single-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.single-post__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6B7280;
}

.single-post__cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.single-post__cat {
  display: inline-block;
  padding: 4px 14px;
  background: #EFF6FF;
  color: #1D4ED8;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}

.single-post__cat:hover {
  background: #DBEAFE;
}

.single-post__thumb {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
max-width: 170px;
}

.single-post__img {
  width: 100%;
  height: 100%;
    object-fit: contain;
  display: block;
}

.single-post__content {
  margin-bottom: 48px;
}

.single-post__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.single-post__tags-label {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

.single-post__tag {
  display: inline-block;
  padding: 5px 14px;
  background: #F3F4F6;
  color: #252C32;
  border-radius: 6px;
  font-size: 13px;
  transition: background 0.2s;
}

.single-post__tag:hover {
  background: #E5E7EB;
}

.single-post__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.single-post__nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #F8FAFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.single-post__nav-item:hover {
  border-color: #1D4ED8;
  background: #EFF6FF;
}

.single-post__nav-item--next {
  text-align: right;
}

.single-post__nav-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.single-post__nav-item--next .single-post__nav-label {
  justify-content: flex-end;
}

.single-post__nav-title {
  font-size: 14px;
  font-weight: 600;
  color: #011530;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .single-post {
    padding: 40px 0 70px;
  }

  .single-post__thumb {
    aspect-ratio: 16 / 9;
  }

  .single-post__nav {
    grid-template-columns: 1fr;
  }

  .single-post__nav-item--next {
    text-align: left;
  }

  .single-post__nav-item--next .single-post__nav-label {
    justify-content: flex-start;
  }
}

/* ── Contacts page ────────────────────────────────── */
.cpage {
  padding: 80px 0 100px;
}

.cpage__title {
  font-size: 30px;
  font-weight: 600;
  color: #011530;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.cpage__divider {
  width: 48px;
  height: 3px;
  background: #1D4ED8;
  border-radius: 2px;
  margin: 0 auto 60px;
}

.cpage__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.cpage__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cpage__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cpage__item-icon {
  flex-shrink: 0;
  width: 24px;
  margin-top: 2px;
}

.cpage__item-body {
  border-left: 1px solid #DDE2E4;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cpage__item-label {
  font-size: 15px;
  font-weight: 600;
  color: #011530;
}

.cpage__item-value {
  font-size: 14px;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}

.cpage__item-value:hover {
  color: #1D4ED8;
}

/* CF7 form overrides in contacts context */
.cpage__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cpage__form .wpcf7-form input[type="text"],
.cpage__form .wpcf7-form input[type="email"],
.cpage__form .wpcf7-form input[type="tel"],
.cpage__form .wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #DDE2E4;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #011530;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.cpage__form .wpcf7-form input:focus,
.cpage__form .wpcf7-form textarea:focus {
  border-color: #1D4ED8;
}

.cpage__form .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cpage__form .wpcf7-form input[type="submit"] {
  padding: 14px 36px;
  background: #1D4ED8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: auto;
}

.cpage__form .wpcf7-form input[type="submit"]:hover {
  background: #1740b6;
}

/* Map */
.cpage__map {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.cpage__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .cpage {
    padding: 60px 0 80px;
  }

  .cpage__title {
    font-size: 24px;
  }

  .cpage__body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cpage__map {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .cpage__map {
    height: 260px;
  }
}

section.cpage .form-section__consent-text {
  color: rgb(4 20 48);

}

section.cpage ::placeholder {
  color: rgb(4 20 48);
}

/* ── Search page ──────────────────────────────────── */
.search-page__query {
  font-style: normal;
}

.search-page {
  padding: 64px 0 100px;
}

/* Search refine form */
.search-page__form {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

.search-page__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  height: 48px;
  border: 1px solid #DDE2E4;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s;
}

.search-page__input-wrap:focus-within {
  border-color: #1D4ED8;
}

.search-page__input {
  flex: 1;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 15px;
  color: #011530;
  outline: none;
  min-width: 0;
}

/* Results count */
.search-page__count {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 32px;
}

/* Results list */
.search-page__results {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #DDE2E4;
  border: 1px solid #DDE2E4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}

/* Result card */
.search-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  transition: background 0.2s;
}

.search-card:hover {
  background: #F8FAFF;
}

.search-card__thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.search-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-card__cat {
  display: inline-block;
  padding: 3px 10px;
  background: #EFF6FF;
  color: #1D4ED8;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.search-card__cat:hover {
  background: #DBEAFE;
}

.search-card__date {
  font-size: 13px;
  color: #6B7280;
}

.search-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.search-card__title a {
  color: #011530;
  transition: color 0.2s;
}

.search-card__title a:hover {
  color: #1D4ED8;
}

.search-card__excerpt {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.search-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #1D4ED8;
  margin-top: 4px;
  transition: gap 0.2s;
}

.search-card__link:hover {
  gap: 8px;
}

/* Pagination */
.search-page__pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.search-page__pagination .page-numbers li a,
.search-page__pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #252C32;
  background: #F3F4F6;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.search-page__pagination .page-numbers li a:hover {
  background: #1D4ED8;
  color: #fff;
}

.search-page__pagination .page-numbers li span.current {
  background: #1D4ED8;
  color: #fff;
}

/* Empty state */
.search-page__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
}

.search-page__empty-title {
  font-size: 20px;
  font-weight: 600;
  color: #011530;
}

.search-page__empty-text {
  font-size: 15px;
  color: #6B7280;
}

.search-page__empty-text a {
  color: #1D4ED8;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .search-page {
    padding: 40px 0 70px;
  }

  .search-page__form {
    flex-direction: column;
    align-items: stretch;
  }

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

  .search-card__thumb {
    width: 100%;
    height: 180px;
  }

  .search-card__title {
    font-size: 16px;
  }
}

.hex-how {
  fill: transparent;
  stroke: #DDE2E4;
  fill: #fff;
  transition: fill 0.4s;
}

g.hex-how-g:hover .hex-how,
.hex-how-g.active .hex-how {
  fill: #3996fd;
  transition: fill 0.4s;

}
.hex-txt {
  fill: #fff;
}

/* ── Organizational solutions page ───────────────── */
.org-solutions {
  padding: 64px 0 100px;
}

.org-solutions__list {
  border: 1px solid #DDE2E4;
  border-radius: 10px;
  overflow: hidden;
}

.org-solutions__list .org-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: #fff;
  border-bottom: 1px solid #DDE2E4;
  transition: background 0.2s;
}
.org-solutions__list .org-card:last-child { border-bottom: none; }
.org-solutions__list .org-card:hover { background: #F8FAFF; }

.org-solutions__list .org-card .org-card__thumb {
  flex: 0 0 220px;
  width: 220px;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.org-solutions__list .org-card .org-card__thumb img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

.org-solutions__list .org-card .org-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.org-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #011530;
  line-height: 1.3;
}
.org-card__title a { color: inherit; transition: color 0.2s; }
.org-card__title a:hover { color: #1D4ED8; }

.org-card__excerpt {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
}

.org-card__action {
  flex-shrink: 0;
}

.org-card__btn {
  display: inline-block;
  padding: 11px 22px;
  border: 1.5px solid #1D4ED8;
  border-radius: 6px;
  background: none;
  color: #1D4ED8;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.org-card__btn:hover {
  background: #1D4ED8;
  color: #fff;
}

@media (max-width: 900px) {
  .org-solutions__list .org-card { gap: 20px; padding: 20px; }
  .org-solutions__list .org-card .org-card__thumb { flex: 0 0 160px; width: 160px; height: 110px; }
  .org-card__title { font-size: 17px; }
}

@media (max-width: 640px) {
  .org-solutions__list .org-card { flex-wrap: wrap; }
  .org-solutions__list .org-card .org-card__thumb { flex: 0 0 100%; width: 100%; height: 180px; }
  .org-card__action { width: 100%; }
  .org-card__btn { width: 100%; text-align: center; }
  .org-solutions { padding: 40px 0 70px; }
}

/* ── Org service single page ──────────────────────── */
.org-service {
  padding: 64px 0 100px;
}

.org-service__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.org-service__thumb {
  margin-bottom: 36px;
  border-radius: 10px;
max-width: 172px;
}
.org-service__img { width: 100%; height: auto; display: block; }

.org-service__cta {
  background: #F8FAFF;
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.org-service__cta-title {
  font-size: 18px;
  font-weight: 700;
  color: #011530;
}

.org-service__cta-text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

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

.org-service__related {
  background: #fff;
  border: 1px solid #DDE2E4;
  border-radius: 12px;
  padding: 20px 24px;
}

.org-service__related-title {
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.org-service__related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.org-service__related-link {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  color: #252C32;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  transition: color 0.2s;
  line-height: 1.4;
}
.org-service__related-link:last-child { border-bottom: none; }
.org-service__related-link svg { flex-shrink: 0; margin-top: 2px; color: #1D4ED8; }
.org-service__related-link:hover { color: #1D4ED8; }

@media (max-width: 900px) {
  .org-service__layout { grid-template-columns: 1fr; }
  .org-service__sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .org-service { padding: 40px 0 70px; }
  .org-service__sidebar { grid-template-columns: 1fr; }
}
.primer-wrap {
    border-left: 5px solid #2250d5;
    padding-left: 10px;
    margin-top: 12px;
    display: flex;
    gap: 14px;
}

/* ── Projects page ────────────────────────────────── */
.projects-page {
  padding: 64px 0 100px;
}

.projects-page__intro {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prj-card {
  background: #fff;
  border: 1px solid #DDE2E4;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.prj-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 8px 32px rgba(29, 78, 216, 0.08);
}

.prj-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px 20px;
  min-height: 110px;
  border-bottom: 1px solid #F3F4F6;
  background: #F8FAFF;
}

.prj-card__logo {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.prj-card__body {
  flex: 1;
  padding: 20px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prj-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #011530;
  line-height: 1.3;
}

.prj-card__subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #1D4ED8;
  letter-spacing: 0.01em;
}

.prj-card__desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.65;
  margin-top: 4px;
}

.prj-card__btn {
  margin: 0 24px 24px;
  padding: 10px 0;
  border: 1.5px solid #1D4ED8;
  border-radius: 6px;
  background: none;
  color: #1D4ED8;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: calc(100% - 48px);
}
.prj-card__btn:hover {
  background: #1D4ED8;
  color: #fff;
}

@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .projects-page { padding: 40px 0 70px; }
  .projects-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Team card clickable ──────────────────────────── */
.team__card--clickable {
  cursor: pointer;
}
.team__card--clickable:hover .team__photo img {
  transform: scale(1.04);
}
.team__card--clickable .team__photo {
  overflow: hidden;
}
.team__card--clickable .team__photo img {
  transition: transform 0.3s ease;
}

.team__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #1D4ED8;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.team__more::after {
  content: '→';
  transition: transform 0.2s;
}
.team__card--clickable:hover .team__more::after {
  transform: translateX(3px);
}

/* ── Team bio modal ───────────────────────────────── */
.modal--team {
  max-width: 680px;
  padding: 40px;
}

.team-modal__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Populated by JS from #teamBioData */
.team-modal__body .tbio-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.team-modal__head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-modal__body .tbio-name {
  font-size: 22px;
  font-weight: 700;
  color: #011530;
  margin-bottom: 4px;
}

.team-modal__body .tbio-role {
  font-size: 14px;
  color: #1D4ED8;
  font-weight: 500;
}

.team-modal__body .tbio-content {
  font-size: 15px;
  color: #252C32;
  line-height: 1.7;
}

.team-modal__body .tbio-content p { margin-bottom: 12px; }
.team-modal__body .tbio-content p:last-child { margin-bottom: 0; }
.team-modal__body .tbio-content ul { padding-left: 20px; list-style: disc; }
.team-modal__body .tbio-content li { margin-bottom: 6px; }
.team-modal__body .tbio-content strong { font-weight: 600; }

@media (max-width: 600px) {
  .modal--team { padding: 32px 20px; }
  .team-modal__head { flex-direction: column; text-align: center; }
}
#teamModal .modal.modal--team {
    background: #fff;
}
.modal.modal--team .table-wrap {
    overflow-y: auto;
}

/* =========================================================
   WORDPRESS CONTENT STYLES
   ========================================================= */

/* ── Image alignment ──────────────────────────────── */
.alignleft {
  float: left;
  margin: 0.5em 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: 0.5em 0 1em 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

.alignnone {
  margin: 0.5em 1.5em 1em 0;
}

/* ── Image caption ────────────────────────────────── */
.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5em;
}

.wp-caption img {
  display: block;
  width: 100%;
  height: auto;
}

.wp-caption-text,
.wp-caption .wp-caption-text {
  font-size: 13px;
  color: #6B7280;
  text-align: center;
  margin-top: 6px;
  line-height: 1.5;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5em;
}

.gallery-item {
  flex: 1 0 calc(33.333% - 6px);
  overflow: hidden;
  border-radius: 4px;
}

.gallery-columns-2 .gallery-item { flex-basis: calc(50% - 4px); }
.gallery-columns-3 .gallery-item { flex-basis: calc(33.333% - 6px); }
.gallery-columns-4 .gallery-item { flex-basis: calc(25% - 6px); }
.gallery-columns-5 .gallery-item { flex-basis: calc(20% - 7px); }
.gallery-columns-6 .gallery-item { flex-basis: calc(16.666% - 7px); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  font-size: 12px;
  color: #6B7280;
  text-align: center;
  padding: 4px 0;
}

/* ── Block editor alignment ───────────────────────── */
.wp-block-image img { height: auto; }

.wp-block-image.alignleft  { float: left;  margin: 0.5em 1.5em 1em 0; }
.wp-block-image.alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.wp-block-image.aligncenter,
.wp-block-image.aligncenter img { margin-left: auto; margin-right: auto; }

.alignwide  { margin-left: -40px; margin-right: -40px; }
.alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }

/* ── Block quotes ─────────────────────────────────── */
.wp-block-quote,
blockquote {
  border-left: 4px solid #1D4ED8;
  padding: 16px 20px;
  margin: 1.5em 0;
  background: #F8FAFF;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #252C32;
}

.wp-block-quote cite,
blockquote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  color: #6B7280;
  margin-top: 8px;
}

.wp-block-quote.is-style-plain {
  border-left: none;
  background: none;
  padding: 0;
}

/* ── Pullquote ────────────────────────────────────── */
.wp-block-pullquote {
  border-top: 4px solid #1D4ED8;
  border-bottom: 4px solid #1D4ED8;
  padding: 24px 0;
  text-align: center;
  margin: 2em 0;
}

.wp-block-pullquote blockquote {
  border: none;
  background: none;
  padding: 0;
}

/* ── Code & preformatted ──────────────────────────── */
.wp-block-code code,
pre {
  display: block;
  background: #1e293b;
  color: #e2e8f0;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: auto;
  margin: 1.5em 0;
  font-family: 'Courier New', Courier, monospace;
}

code {
  background: #F1F5F9;
  color: #1D4ED8;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
  font-family: 'Courier New', Courier, monospace;
}

pre code { background: none; color: inherit; padding: 0; border-radius: 0; }

/* ── Separator ────────────────────────────────────── */
.wp-block-separator,
hr {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 2em 0;
}

.wp-block-separator.is-style-wide  { border-top-width: 1px; }
.wp-block-separator.is-style-dots  { border: none; text-align: center; line-height: 1; }
.wp-block-separator.is-style-dots::before {
  content: '···';
  font-size: 20px;
  color: #9CA3AF;
  letter-spacing: 0.5em;
}

/* ── Buttons block ────────────────────────────────── */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 1.5em 0;
}

.wp-block-button__link {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: #1D4ED8;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  border: 2px solid transparent;
}
.wp-block-button__link:hover { background: #1740b6; }

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #1D4ED8;
  border-color: #1D4ED8;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: #1D4ED8;
  color: #fff;
}

/* ── Table ────────────────────────────────────────── */
.wp-block-table table,
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 1.5em 0;
}

.wp-block-table td,
.wp-block-table th,
.table-wrap td,
.table-wrap th {
  padding: 10px 14px;
  border: 1px solid #DDE2E4;
  text-align: left;
}

.wp-block-table th,
.table-wrap th {
  background: #F3F4F6;
  font-weight: 600;
  color: #011530;
}

.wp-block-table.is-style-stripes tr:nth-child(even) td {
  background: #F8FAFF;
}

.table-wrap {
overflow-x: auto;
 width: 100%;
  margin: 1.5em 0;
}

.table-wrap table { 
   min-width: 300px;
  margin: 0; 
}

/* ── Embed / Video ────────────────────────────────── */
.wp-block-embed,
.wp-block-video {
  margin: 1.5em 0;
}

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe,
.wp-block-embed__wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.wp-block-video video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ── Columns ──────────────────────────────────────── */
.wp-block-columns {
  display: flex;
  gap: 32px;
  margin: 1.5em 0;
  flex-wrap: wrap;
}

.wp-block-column {
  flex: 1 1 200px;
  min-width: 0;
}

/* ── Cover block ──────────────────────────────────── */
.wp-block-cover {
  position: relative;
  padding: 40px 24px;
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  max-width: 640px;
}

/* ── Clearfix for floats ──────────────────────────── */
.page-content::after,
.single-post__content::after {
  content: '';
  display: table;
  clear: both;
}

/* ── Responsive tweaks ────────────────────────────── */
@media (max-width: 640px) {
  .alignleft,
  .alignright {
    float: none;
    margin: 0 0 1em 0;
    display: block;
  }
  .gallery-item { flex-basis: calc(50% - 4px) !important; }
  .alignwide  { margin-left: 0; margin-right: 0; }
  .alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
  .wp-block-columns { flex-direction: column; }
}
.home .footer__cards {

    padding-top: 78px;
}
aside.org-service__sidebar {
    margin-bottom: 131px;
}
/* * {
  outline: 1px solid red;g
} */
.org-service__body {
    overflow: hidden;
}

/* ─── ARCHIVE PAGE ───────────────────────────────── */
.archive-posts {
  padding: 72px 0 100px;
}

.archive-posts__desc {
  margin-bottom: 48px;
  font-size: 15px;
  color: var(--gray);
  max-width: 680px;
}

.archive-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Post card */
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr);
}

.post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Thumbnail */
.post-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.post-card:hover .post-card__img {
  transform: scale(1.04);
}

/* Body */
.post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 12px;
}

/* Categories */
.post-card__cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.post-card__cat {
  display: inline-block;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-bg);
  border-radius: 20px;
  transition: background var(--tr);
}

.post-card__cat:hover {
  background: #DBEAFE;
}

/* Title */
.post-card__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.post-card__title a {
  color: var(--dark);
  transition: color var(--tr);
}

.post-card__title a:hover {
  color: var(--blue);
}

/* Excerpt */
.post-card__excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Footer: date + read link */
.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.post-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  transition: gap var(--tr), color var(--tr);
}

.post-card__link:hover {
  gap: 8px;
  color: #1742c0;
}

/* Card without thumbnail */
.post-card--no-thumb .post-card__body {
  padding-top: 28px;
}

/* Infinite scroll sentinel & loader */
.archive-sentinel {
  height: 1px;
  margin-top: 48px;
}

.archive-loader {
  display: flex;
  justify-content: center;
  padding: 32px 0 48px;
}

.archive-loader__ring {
  display: block;
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: archive-spin .7s linear infinite;
}

@keyframes archive-spin {
  to { transform: rotate(360deg); }
}

.archive-posts__empty {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  padding: 80px 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .archive-posts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .archive-posts {
    padding: 48px 0 64px;
  }

  .archive-posts__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .post-card__body {
    padding: 20px;
  }

  .post-card__title {
    font-size: 16px;
  }
}

/* ─── SITEMAP PAGE ───────────────────────────────── */
.smap {
  padding: 72px 0 100px;
}

.smap__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.smap__col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue);
}

/* Nested page list */
.smap__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.smap__list .smap__list {
  padding-left: 16px;
  margin-top: 2px;
  border-left: 2px solid var(--border);
  margin-left: 6px;
}

.smap__item {
  margin: 0;
  padding: 0;
}

.smap__item > a {
  display: block;
  padding: 5px 0 5px 10px;
  font-size: 14px;
  color: var(--dark);
  border-radius: 4px;
  transition: color var(--tr), background var(--tr);
  position: relative;
}

.smap__item > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--tr);
}

.smap__item > a:hover {
  color: var(--blue);
  background: var(--blue-bg);
}

.smap__item > a:hover::before {
  background: var(--blue);
}

/* Deeper nesting — lighter text */
.smap__list .smap__list .smap__item > a {
  font-size: 13px;
  color: var(--gray);
  padding-top: 3px;
  padding-bottom: 3px;
}

.smap__list .smap__list .smap__item > a:hover {
  color: var(--blue);
}

/* Posts section — category groups */
.smap__cat {
  margin-bottom: 28px;
}

.smap__cat:last-child {
  margin-bottom: 0;
}

.smap__cat-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
  padding: 4px 14px 4px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  transition: color var(--tr);
}

.smap__cat-name:hover {
  color: #1742c0;
}

.smap__cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-bg);
  border-radius: 10px;
  margin-left: auto;
}

.smap__cat .smap__list {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.smap__cat .smap__item > a {
  padding-left: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .smap__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .smap {
    padding: 48px 0 64px;
  }
}
button.software__tab[data-slide="4"] {
    background: #c9c9c9;
    color: #969696;
}
h2.ps_advantages_2-h2 {
    margin-bottom: 32px;
}