@font-face {
  font-family: Xolonium;
  src: url("./fonts/Xolonium-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Xolonium;
  src: url("./fonts/Xolonium-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Akrobat;
  src: url("./fonts/Akrobat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Akrobat;
  src: url("./fonts/Akrobat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Akrobat;
  src: url("./fonts/Akrobat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Akrobat;
  src: url("./fonts/Akrobat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Akrobat;
  src: url("./fonts/Akrobat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brandbook: #000000, #464C6E, #6272BD, #DBDCE9 */
  /* Brandbook fonts: Xolonium (display) + Akrobat (UI/body) */
  --font-display: Xolonium, system-ui, sans-serif;
  --font-body: Akrobat, system-ui, sans-serif;
  --navy: #000000;
  --navy-mid: #464C6E;
  --blue: #6272BD;
  --blue-light: #9FA7D3;
  --accent: #6272BD;
  --accent-light: #9FA7D3;
  --accent-rgb: 98, 114, 189;
  --accent-light-rgb: 159, 167, 211;
  --teal: #6272BD;
  --teal-rgb: 98, 114, 189;
  --teal-soft: #DBDCE9;
  --gray-900: #000000;
  --gray-800: #2A2E42;
  --gray-700: #464C6E;
  --gray-400: #8B90A8;
  --gray-200: #DBDCE9;
  --gray-100: #EBECF4;
  --gray-50: #F5F5F9;
  --white: #fff;
  --text-primary: #000000;
  --text-secondary: #464C6E;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 20px 50px rgba(98, 114, 189, 0.18);
  --gradient-hero: radial-gradient(circle at 15% 20%, rgba(98, 114, 189, 0.16), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(70, 76, 110, 0.12), transparent 35%),
    linear-gradient(180deg, #F5F5F9 0%, #EBECF4 48%, #F5F5F9 100%);
  /* Brand blue #6272BD (violet undertone) as the visible blue stop */
  --gradient-dark: linear-gradient(135deg, #464C6E 0%, #545F95 48%, #6272BD 100%);
  --gradient-accent: linear-gradient(135deg, #6272BD 0%, #7B89C9 100%);
  --gradient-blue: linear-gradient(135deg, #464C6E 0%, #6272BD 100%);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  letter-spacing: 0.015em;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

::selection {
  background: rgba(98, 114, 189, 0.18);
  color: var(--navy);
}

a {
  color: inherit;
}

main {
  overflow: clip;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(245, 245, 249, 0.65), rgba(255, 255, 255, 0));
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(98, 114, 189, 0.1), rgba(var(--teal-rgb), 0.08));
  border: 1px solid rgba(98, 114, 189, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tag-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: clamp(40px, 5vw, 72px);
}

.subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 18px 0 0;
  max-width: 720px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 30px;
  border-radius: 14px;
  border: 0;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(var(--accent-rgb), 0.38);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border: 1.5px solid rgba(219, 220, 233, 0.95);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: rgba(98, 114, 189, 0.35);
  color: var(--blue);
  background: rgba(98, 114, 189, 0.05);
  transform: translateY(-1px);
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.center {
  text-align: center;
}

.center .subtitle {
  margin-left: auto;
  margin-right: auto;
}

.center-cta {
  text-align: center;
  margin-top: 36px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(219, 220, 233, 0.65);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  overflow: visible;
}

header.is-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10060;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.is-mobile-menu-open,
html.is-mobile-menu-open body {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}

html.is-mobile-menu-open .sticky-cta {
  display: none !important;
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  overflow: visible;
}

.header-brand,
.header-cta {
  display: flex;
  align-items: center;
}

.header-brand {
  min-width: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2px;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
  overflow: visible;
}

.header-nav-priority .nav-link,
.nav-link.header-nav-priority {
  cursor: pointer;
}

.header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(98, 114, 189, 0.12);
  border-radius: 12px;
  background: rgba(98, 114, 189, 0.06);
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.18s ease;
}

.header-burger:hover {
  background: rgba(98, 114, 189, 0.12);
  color: var(--blue);
}

.header-burger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.header-burger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: currentColor;
  transition: 0.2s ease;
  transform-origin: center;
}

header.is-menu-open .header-burger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

header.is-menu-open .header-burger-lines span:nth-child(2) {
  opacity: 0;
}

header.is-menu-open .header-burger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-mobile {
  position: fixed;
  top: var(--header-offset, 56px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  width: 100%;
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  background: #fff;
  border-bottom: 0;
  box-shadow: none;
}

.header-mobile.is-open {
  display: flex;
}

.header-mobile .container.header-mobile-shell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0;
  padding: 0;
}

.header-mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 4px;
  min-height: 100%;
  height: 100%;
  padding: 12px 0 max(20px, env(safe-area-inset-bottom));
  box-sizing: border-box;
}

.header-mobile-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
  border-bottom: 0;
}

.header-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.header-mobile-toggle:hover {
  background: rgba(98, 114, 189, 0.07);
  color: var(--blue);
}

.header-mobile-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.header-mobile-group.is-open .header-mobile-chevron {
  transform: rotate(180deg);
}

.header-mobile-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 0 6px;
}

.header-mobile-nav .header-mobile-link,
.header-mobile-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

.header-mobile-nav .header-mobile-link:hover,
.header-mobile-nav .nav-link:hover {
  background: rgba(98, 114, 189, 0.07);
  color: var(--blue);
}

.header-mobile-nav .header-mobile-sublink {
  font-weight: 600;
  color: var(--text-secondary);
  padding-left: 16px;
}

.header-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 4px;
}

.header-mobile-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.header-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  background: rgba(98, 114, 189, 0.06);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  box-sizing: border-box;
}

.header-mobile-actions .btn {
  width: 100%;
  min-height: 48px;
}

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

.logo-img {
  display: block;
  width: auto;
  height: 44px;
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand .logo-img-light {
  filter: none;
}

.header-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: 0.18s ease;
}

.header-nav .nav-link:hover {
  color: var(--blue);
  background: rgba(98, 114, 189, 0.07);
}

.nav-link-has-menu {
  gap: 6px;
}

.nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  transform: translateY(1px);
  opacity: 0.72;
}

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

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1100;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(219, 220, 233, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a,
.dropdown-menu .nav-link {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: auto;
  padding: 11px 12px;
  white-space: nowrap;
  border-radius: 12px;
  justify-content: flex-start;
}

.di {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--gray-100);
  display: grid;
  place-items: center;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header-phone-text {
  line-height: 1;
  white-space: nowrap;
}

.header-phone:hover {
  background: rgba(98, 114, 189, 0.06);
  color: var(--blue);
}

.btn-header {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  white-space: nowrap;
}

.btn-header-short {
  display: none;
}

.hero {
  padding: 96px 0 108px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(98, 114, 189, 0.14), transparent 68%);
}

.hero::after {
  bottom: -120px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1), transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas:
    "badge badge"
    "title title"
    "copy visual";
  gap: 18px 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-badge {
  grid-area: badge;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(98, 114, 189, 0.14);
  color: var(--blue);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(var(--teal-rgb), 0.14);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.55;
    transform: scale(1.35);
  }
}

.hero-title,
.hero h1 {
  grid-area: title;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 0;
  max-width: none;
}

.hero h1 em {
  font-style: normal;
}

.hero h1 em .hero-accent-a {
  color: var(--navy-mid); /* #464C6E */
}

.hero h1 em .hero-accent-b {
  color: var(--blue); /* #6272BD */
}

.hero-copy {
  grid-area: copy;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-height: 100%;
  padding-top: 4px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(219, 220, 233, 0.95);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.region-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.region-badges button {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.region-badges button:hover {
  border-color: rgba(98, 114, 189, 0.28);
  color: var(--blue);
  transform: translateY(-1px);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.hero-stats > div {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 220, 233, 0.9);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.hero-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.1vw + 0.55rem, 20px);
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-secondary);
}

.hero-visual {
  grid-area: visual;
  position: relative;
  align-self: stretch;
}

.hero-mockup {
  background: linear-gradient(180deg, #2A2E42 0%, #000000 100%);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  position: relative;
}

.hero-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(98, 114, 189, 0.22), transparent 42%);
  pointer-events: none;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
}

.mockup-title {
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--teal-rgb), 0.16);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
}

.mockup-map {
  height: 220px;
  background: linear-gradient(180deg, #464C6E 0%, #2A2E42 100%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(98, 114, 189, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 114, 189, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}

.route-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.map-car {
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0.18);
  animation: carMove 4.5s ease-in-out infinite alternate;
}

@keyframes carMove {
  from {
    top: 40%;
    left: 28%;
  }
  to {
    top: 58%;
    left: 62%;
  }
}

.mockup-vehicles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
  position: relative;
}

.vehicle-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.vehicle-row b {
  font-size: 11px;
}

.status-active {
  color: var(--teal);
}

.status-stop {
  color: var(--accent-light);
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 220, 233, 0.9);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 12px;
  align-items: center;
  backdrop-filter: blur(12px);
}

.float-1 {
  top: -18px;
  right: -18px;
  animation: float1 4s ease-in-out infinite;
}

.float-2 {
  bottom: 24px;
  left: -28px;
  animation: float2 4.5s ease-in-out infinite;
}

@keyframes float1 {
  50% {
    transform: translateY(-8px);
  }
}

@keyframes float2 {
  50% {
    transform: translateY(8px);
  }
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.fi-green {
  background: #e7f9f0;
}

.fi-blue {
  background: #DBDCE9;
}

.hero-float-card b {
  display: block;
  color: var(--navy);
  font-size: 17px;
}

.hero-float-card span {
  font-size: 11px;
  color: var(--text-secondary);
}

.trust-bar {
  background: var(--gradient-dark);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-bar-inner li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.trust-bar-inner li span {
  flex-shrink: 0;
}

.pain-section {
  background:
    radial-gradient(circle at top left, rgba(98, 114, 189, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(var(--accent-rgb), 0.06), transparent 24%),
    linear-gradient(180deg, #F5F5F9 0%, #fff 100%);
  overflow: hidden;
}

.pain-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(98, 114, 189, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 114, 189, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

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

.pain-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: end;
}

.pain-head-copy .subtitle {
  margin-bottom: 0;
}

.pain-summary {
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #464C6E 0%, #6272BD 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pain-summary-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 10px;
}

.pain-summary strong {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pain-summary-note {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}

.pain-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 24px;
  padding: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--pain-accent, linear-gradient(90deg, var(--blue), var(--teal)));
}

.pain-card:hover {
  border-color: rgba(98, 114, 189, 0.18);
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.pain-card-fuel {
  --pain-accent: linear-gradient(90deg, #6272BD, #DBDCE9);
}

.pain-card-route {
  --pain-accent: linear-gradient(90deg, #464C6E, #DBDCE9);
}

.pain-card-mileage {
  --pain-accent: linear-gradient(90deg, #6272BD, #464C6E);
}

.pain-card-risk {
  --pain-accent: linear-gradient(90deg, #464C6E, #6272BD);
}

.pain-index {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(74, 85, 120, 0.35);
}

.pain-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-right: 34px;
}

.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(98, 114, 189, 0.1), rgba(var(--teal-rgb), 0.08));
  display: grid;
  place-items: center;
  font-size: 24px;
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 18px;
  flex: 1;
}

.pain-cost {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.03));
  border: 1px solid rgba(var(--accent-rgb), 0.12);
}

.pain-cost span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--accent-rgb), 0.72);
  margin-bottom: 6px;
}

.pain-cost strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--accent);
}

.pain-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 249, 0.96));
  border: 1px solid rgba(219, 220, 233, 0.95);
  box-shadow: var(--shadow);
}

.pain-cta-panel b {
  display: block;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

.pain-cta-panel p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.calc-section {
  background: var(--gradient-dark);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}

.calc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(98, 114, 189, 0.22), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(var(--accent-rgb), 0.12), transparent 30%);
  pointer-events: none;
}

.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.calc-title {
  color: #fff;
}

.calc-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.calc-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.calc-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-box {
  background: var(--navy-mid);
  border: 1px solid rgba(219, 220, 233, 0.18);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.calc-box label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

.calc-box select,
.calc-box input[type="range"] {
  width: 100%;
  margin-top: 10px;
}

.calc-box select {
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(219, 220, 233, 0.18);
  border-radius: 14px;
  color: #fff;
  font: 600 15px var(--font-body);
}

.calc-box option {
  background: var(--navy-mid);
}

.calc-box input[type="range"] {
  accent-color: var(--accent);
}

.calc-result {
  text-align: center;
  background: linear-gradient(160deg, rgba(219, 220, 233, 0.18) 0%, rgba(98, 114, 189, 0.38) 100%);
  border: 1px solid rgba(219, 220, 233, 0.28);
  border-radius: 20px;
  padding: 28px;
  margin-top: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.calc-result b {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}

.calc-result-prefix {
  display: inline;
  margin-top: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #DBDCE9;
  text-transform: none;
}

.calc-result > span {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
}

.calc-result > small {
  display: block;
  color: rgba(219, 220, 233, 0.88);
  margin-top: 8px;
}

.calc-cta {
  width: 100%;
  margin-top: 22px;
  background: linear-gradient(135deg, #6272BD 0%, #8090D0 100%);
  border: 1px solid rgba(219, 220, 233, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.calc-cta:hover {
  background: linear-gradient(135deg, #6E7EC6 0%, #8E9CD8 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.info-note {
  font-size: 12px;
  color: rgba(219, 220, 233, 0.72);
  line-height: 1.6;
}

.info-note + .info-note {
  margin-top: 8px;
}

.info-note.center {
  text-align: center;
  margin-top: 24px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.usp-card {
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
  background: linear-gradient(180deg, #fff 0%, #F5F5F9 100%);
  transition: 0.24s ease;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.usp-card span {
  font-size: 30px;
}

.usp-card h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  color: var(--navy);
}

.usp-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.partner-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(98, 114, 189, 0.08), rgba(var(--teal-rgb), 0.06));
  border: 1px solid rgba(98, 114, 189, 0.12);
  box-shadow: var(--shadow);
}

.partner-logo {
  flex: 0 0 auto;
  min-width: 0;
  width: min(220px, 42vw);
  height: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

.partner-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
}

.partner-strip b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 6px;
}

.partner-strip span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.compare-wrap {
  overflow: auto;
  margin-top: 24px;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 760px;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

th {
  background: linear-gradient(180deg, #F5F5F9 0%, #EBECF4 100%);
  color: var(--navy);
  font-weight: 800;
}

td {
  color: var(--text-secondary);
}

tr:last-child td {
  border-bottom: 0;
}

.best {
  font-weight: 800;
  color: var(--blue);
  background: linear-gradient(90deg, rgba(98, 114, 189, 0.06), rgba(var(--teal-rgb), 0.04));
}

.cases-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(98, 114, 189, 0.38), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 100%, rgba(70, 76, 110, 0.55), transparent 52%),
    linear-gradient(160deg, #07080d 0%, #121524 42%, #0a0b12 100%);
  color: #fff;
}

.cases-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: -10% 20% auto;
  height: 55%;
  background: radial-gradient(circle, rgba(98, 114, 189, 0.22), transparent 70%);
  filter: blur(40px);
  animation: cases-pulse 7s ease-in-out infinite alternate;
}

@keyframes cases-pulse {
  from {
    opacity: 0.55;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(18px) scale(1.08);
  }
}

@keyframes case-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes case-sheen {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.cases-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.cases-head > div:first-child {
  max-width: 680px;
}

.cases-section .tag {
  color: #DBDCE9;
  background: rgba(98, 114, 189, 0.18);
  border-color: rgba(219, 220, 233, 0.18);
  box-shadow: none;
}

.cases-section .title {
  color: #fff;
  letter-spacing: -0.01em;
}

.cases-section .subtitle {
  color: rgba(219, 220, 233, 0.78);
  margin-bottom: 0;
  max-width: 34rem;
}

.cases-controls {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}

.cases-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 12px;
  border: 0;
  background: #464C6E;
  color: #F4F5FA;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 48px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.cases-nav--next {
  background: #6272BD;
}

.cases-nav .slider-nav-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  line-height: 0;
  color: inherit;
}

.cases-nav .brand-chevron-icon {
  display: block;
  width: 22px;
  height: 22px;
}

.cases-nav:hover:not(:disabled),
.cases-nav:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  outline: none;
  filter: brightness(1.06);
}

.cases-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.cases-track {
  list-style: none;
  margin: 36px 0 0;
  padding: 8px 4px 18px;
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cases-track::-webkit-scrollbar {
  display: none;
}

.cases-track:focus-visible {
  outline: 2px solid rgba(98, 114, 189, 0.45);
  outline-offset: 4px;
  border-radius: 18px;
}

.case-slide {
  scroll-snap-align: start;
  flex: 0 0 min(34%, 360px);
  width: min(34%, 360px);
  min-width: 300px;
  max-width: 360px;
  display: flex;
  align-self: stretch;
  height: auto;
  min-height: 0;
}

.case-slide .case-card {
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1 1 auto;
}

.case-grid {
  display: none;
}

.case-card {
  --i: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(219, 220, 233, 0.14);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.035) 100%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  animation: case-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i) * 0.12s);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #6272BD, #DBDCE9, #6272BD, #464C6E);
  background-size: 220% 100%;
  animation: case-sheen 5.5s linear infinite;
}

.case-card-shine {
  pointer-events: none;
  position: absolute;
  inset: auto -30% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 114, 189, 0.35), transparent 68%);
  opacity: 0.55;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(98, 114, 189, 0.45);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(98, 114, 189, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.case-card:hover .case-card-shine {
  opacity: 1;
  transform: translate(-12px, -18px) scale(1.15);
}

.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.case-logo--dva-vidra {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.case-logo img {
  display: block;
  width: auto;
  max-width: 118px;
  height: 28px;
  object-fit: contain;
}

.case-logo--fallback {
  min-width: 52px;
  background: linear-gradient(135deg, #464C6E 0%, #6272BD 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.case-logo-fallback {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.case-logo--dva-vidra img {
  height: 40px;
  max-width: 140px;
}

.case-index {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(219, 220, 233, 0.55);
}

.case-card-meta {
  display: grid;
  gap: 10px;
}

.case-tag {
  justify-self: start;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #DBDCE9;
  background: rgba(98, 114, 189, 0.22);
  border: 1px solid rgba(219, 220, 233, 0.12);
  padding: 6px 11px;
  border-radius: 999px;
  white-space: normal;
  max-width: 100%;
  line-height: 1.3;
}

.case-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.case-story {
  display: grid;
  gap: 10px;
  position: relative;
  flex: 1 1 auto;
  align-content: start;
}

.case-block {
  position: relative;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(219, 220, 233, 0.12);
}

.case-block-result {
  background: rgba(98, 114, 189, 0.2);
  border-color: rgba(159, 167, 211, 0.28);
}

.case-block small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B8BFD9;
}

.case-block-result small {
  color: #DBDCE9;
}

.case-block p,
.case-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #F5F5F9;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: none;
  white-space: pre-line;
}

.case-block-result p.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  white-space: normal;
  min-height: 0;
  max-height: calc(1.45em * 3);
}

.case-expand {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #DBDCE9;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.case-expand:hover,
.case-expand:focus-visible {
  color: #fff;
  outline: none;
}

.cases-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.cases-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(219, 220, 233, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.cases-dots button.is-active {
  width: 22px;
  background: #6272BD;
}

.case-link-muted {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.case-metrics + .case-link,
.case-metrics + .case-link-muted {
  margin-top: 0;
}

.case-metrics b {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  min-height: 0;
  padding: 10px 6px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(98, 114, 189, 0.28), rgba(70, 76, 110, 0.2));
  border: 1px solid rgba(219, 220, 233, 0.14);
  font-weight: 800;
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.case-card:hover .case-metrics b {
  border-color: rgba(219, 220, 233, 0.28);
  transform: translateY(-2px);
}

.case-metric-value {
  display: block;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: normal;
  overflow-wrap: anywhere;
}

.case-metric-label {
  display: block;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: rgba(219, 220, 233, 0.78);
  white-space: normal;
  overflow-wrap: anywhere;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.case-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(98, 114, 189, 0.35);
  border: 1px solid rgba(219, 220, 233, 0.16);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease;
}

.case-card:hover .case-link span {
  transform: translateX(4px);
  background: rgba(98, 114, 189, 0.55);
}

.case-link:hover {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .cases-atmosphere,
  .case-card,
  .case-card::before {
    animation: none !important;
  }

  .case-card,
  .case-metrics b,
  .case-link span,
  .case-card-shine {
    transition: none !important;
  }
}

@media (hover: none) {
  .case-card:hover {
    transform: none;
  }

  .case-card:hover .case-metrics b {
    transform: none;
  }

  .case-card:hover .case-link span {
    transform: none;
  }
}

.partners-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(98, 114, 189, 0.1), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(219, 220, 233, 0.7), transparent 36%),
    linear-gradient(180deg, #fff 0%, #F5F5F9 100%);
  overflow: hidden;
}

.partners-head {
  max-width: 640px;
}

.partners-head .subtitle {
  margin-bottom: 0;
}

.partners-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.partners-item {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.partners-item:hover,
.partners-item:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(98, 114, 189, 0.35);
  background: #fff;
  box-shadow: 0 18px 40px rgba(98, 114, 189, 0.16);
  outline: none;
}

.partners-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #F5F5F9 0%, #EBECF4 100%);
}

.partners-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 44px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.partners-logo--dva-vidra {
  background: transparent;
  padding: 8px;
}

.partners-logo--dva-vidra img {
  filter: none;
  opacity: 1;
  height: 56px;
  max-width: 100%;
}

.partners-item:hover .partners-logo img,
.partners-item:focus-visible .partners-logo img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.partners-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partners-copy b {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.partners-copy span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.partners-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.partners-cta span {
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.partners-item:hover .partners-cta span,
.partners-item:focus-visible .partners-cta span {
  transform: translateX(4px);
}

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

.industry-card,
.region-card {
  text-decoration: none;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #F5F5F9 100%);
  transition: 0.24s ease;
  box-shadow: var(--shadow);
}

.industry-card:hover,
.region-card:hover {
  border-color: rgba(98, 114, 189, 0.24);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.industry-card span {
  display: block;
  font-size: 34px;
  margin-bottom: 14px;
}

.industry-card b,
.region-card b {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.industry-card small,
.region-card span,
.region-card small {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 6px;
}

.region-section {
  background: linear-gradient(180deg, #F5F5F9 0%, #fff 100%);
}

.how-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, rgba(98, 114, 189, 0.34), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 100%, rgba(70, 76, 110, 0.5), transparent 52%),
    linear-gradient(165deg, #07080d 0%, #141726 46%, #0a0b12 100%);
  color: #fff;
}

.how-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 8% 12% auto;
  height: 48%;
  background: radial-gradient(circle, rgba(98, 114, 189, 0.28), transparent 70%);
  filter: blur(42px);
  animation: how-pulse 8s ease-in-out infinite alternate;
}

@keyframes how-pulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes step-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.how-head {
  position: relative;
  max-width: 680px;
}

.how-section .tag {
  color: #DBDCE9;
  background: rgba(98, 114, 189, 0.2);
  border-color: rgba(219, 220, 233, 0.16);
  box-shadow: none;
}

.how-section .title {
  color: #fff;
}

.how-section .subtitle {
  color: rgba(219, 220, 233, 0.78);
  margin-bottom: 0;
}

.how-board {
  position: relative;
  margin-top: 44px;
  padding: 28px 22px 22px;
  border-radius: 32px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(219, 220, 233, 0.14);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}



.steps-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.step-card {
  --i: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  animation: step-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i) * 0.1s);
}

.step-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  min-height: 250px;
  padding: 22px 20px 20px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(219, 220, 233, 0.12);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.step-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #6272BD, transparent 80%);
}

.step-card:hover .step-panel {
  transform: translateY(-6px);
  border-color: rgba(98, 114, 189, 0.4);
  background: rgba(98, 114, 189, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.step-ghost {
  position: absolute;
  right: 10px;
  bottom: -8px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(219, 220, 233, 0.08);
  pointer-events: none;
  user-select: none;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(98, 114, 189, 0.4), rgba(70, 76, 110, 0.35));
  border: 1px solid rgba(219, 220, 233, 0.16);
  color: #DBDCE9;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-index {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9FA7D3;
}

.step-panel h3,
.step-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
}

.step-panel p,
.step-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(235, 236, 244, 0.88);
  position: relative;
  z-index: 1;
}

.how-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(219, 220, 233, 0.12);
}

.how-footer p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(245, 245, 249, 0.9);
}

.how-footer .btn {
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .how-atmosphere,
  .step-card,
  .step-panel {
    transition: none !important;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  border: 1.5px solid rgba(219, 220, 233, 0.95);
  border-radius: 28px;
  padding: 36px 30px;
  background: #fff;
  position: relative;
  box-shadow: var(--shadow);
  transition: 0.24s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: rgba(98, 114, 189, 0.35);
  background: linear-gradient(180deg, rgba(98, 114, 189, 0.05) 0%, #fff 100%);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
  content: "Популярний";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(98, 114, 189, 0.28);
}

.pricing-card > span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  margin: 14px 0 6px;
  color: var(--navy);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.pricing-card small {
  color: var(--text-secondary);
}

.pricing-card ul {
  padding: 24px 0 0;
  margin: 24px 0;
  border-top: 1px solid var(--gray-100);
  list-style: none;
}

.pricing-card li {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 12px;
  display: flex;
  gap: 8px;
}

.pricing-card li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.mini-cost {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin: 40px auto 0;
  padding: 28px;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(98, 114, 189, 0.12), transparent 42%),
    linear-gradient(180deg, #fff 0%, #F5F5F9 100%);
  box-shadow: var(--shadow);
}

.mini-cost-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.mini-cost-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.mini-cost-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.mini-cost-hint {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
}

.mini-cost-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 220, 233, 0.95);
}

.mini-cost-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.mini-cost-stepper {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
}

.mini-cost-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(98, 114, 189, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #EBECF4 100%);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.mini-cost-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(98, 114, 189, 0.45);
  background: #fff;
}

.mini-cost-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mini-cost-stepper input {
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.mini-cost-stepper input::-webkit-outer-spin-button,
.mini-cost-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mini-cost-stepper input:focus {
  outline: 0;
  border-color: rgba(98, 114, 189, 0.5);
  box-shadow: 0 0 0 4px rgba(98, 114, 189, 0.12);
}

.mini-cost-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-cost-preset {
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(219, 220, 233, 0.95);
  background: #fff;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.mini-cost-preset:hover,
.mini-cost-preset.is-active {
  color: #fff;
  background: var(--gradient-blue);
  border-color: transparent;
}

.mini-cost-result {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(160deg, #464C6E 0%, #6272BD 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(70, 76, 110, 0.28);
}

.mini-cost-result-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(219, 220, 233, 0.82);
}

.mini-cost-result-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.mini-cost-result-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 245, 249, 0.78);
}

.mini-cost-cta {
  width: 100%;
  margin-top: 10px;
}

#trial,
.trial-section {
  scroll-margin-top: calc(var(--header-offset, 76px) + 16px);
}

.trial-section {
  background: linear-gradient(135deg, #464C6E 0%, #1A1D2E 55%, #000000 100%);
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 42%);
  pointer-events: none;
}

.trial-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  position: relative;
}

.trial-sub {
  max-width: 680px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  position: relative;
}

.trial-perks {
  display: flex;
  justify-content: center;
  gap: 18px 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}

.trial-perk {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 14px;
}

.trial-perk::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  margin-right: 8px;
}

.trial-form {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 28px;
  padding: 36px;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  position: relative;
}

.trial-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 24px;
  color: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  font: 500 16px var(--font-body);
  color: var(--navy);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: 0;
  border-color: rgba(98, 114, 189, 0.45);
  box-shadow: 0 0 0 4px rgba(98, 114, 189, 0.1);
}

.form-field.is-invalid input {
  border-color: #c45c4a;
  box-shadow: 0 0 0 4px rgba(196, 92, 74, 0.12);
}

.form-error {
  margin: 8px 0 0;
  font: 500 13px/1.35 var(--font-body);
  color: #c45c4a;
}

.form-submit {
  width: 100%;
  padding: 16px;
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-note {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin: 12px 0 0;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.content-needed {
  margin-top: 24px;
  border: 2px dashed rgba(var(--accent-rgb), 0.35);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.05), rgba(255, 255, 255, 0.9));
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--accent);
  font-family: var(--font-body);
}

.content-needed b {
  font-family: var(--font-display);
}

.content-needed p {
  color: var(--text-secondary);
  margin: 8px 0 0;
  line-height: 1.65;
}

.testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(98, 114, 189, 0.1), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(219, 220, 233, 0.7), transparent 36%),
    linear-gradient(180deg, #fff 0%, #F5F5F9 100%);
}

.testimonials-intro {
  max-width: 640px;
}

.testimonials-intro .subtitle {
  margin-bottom: 0;
}

.testimonial-feature {
  margin: 40px 0 28px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 220, 233, 0.95);
  box-shadow: 0 18px 48px rgba(70, 76, 110, 0.08);
}

.testimonial-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.7;
  color: var(--blue);
  opacity: 0.85;
  user-select: none;
}

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

.testimonials-count {
  min-width: 52px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.testimonials-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 0;
  background: #464C6E;
  color: #F4F5FA;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 44px;
  box-shadow: 0 8px 18px rgba(70, 76, 110, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.testimonials-nav--next {
  background: #6272BD;
  box-shadow: 0 8px 18px rgba(98, 114, 189, 0.3);
}

.testimonials-nav .slider-nav-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  line-height: 0;
  color: inherit;
}

.testimonials-nav .brand-chevron-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.testimonials-nav:hover,
.testimonials-nav:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
  outline: none;
}

.testimonial-quote {
  margin: 0;
  max-width: 920px;
}

.testimonial-quote p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  letter-spacing: 0.01em;
  white-space: pre-line;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(219, 220, 233, 0.95);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #464C6E 0%, #6272BD 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-author-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-author cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-role,
.testimonial-region {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

.testimonial-region {
  color: var(--blue);
}

.testimonials-people {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonials-people::-webkit-scrollbar {
  display: none;
}

.testimonial-person {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  max-width: 220px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(219, 220, 233, 0.95);
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-person:hover,
.testimonial-person:focus-visible {
  border-color: rgba(98, 114, 189, 0.4);
  background: #fff;
  transform: translateY(-2px);
  outline: none;
}

.testimonial-person.is-active {
  border-color: rgba(98, 114, 189, 0.5);
  background: #fff;
  box-shadow: 0 10px 28px rgba(98, 114, 189, 0.14);
}

.testimonial-person-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-person-meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 720px) {
  .testimonial-feature {
    margin-top: 28px;
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .testimonial-feature-top {
    align-items: flex-start;
  }

  .testimonial-quote p {
    font-size: 17px;
  }

  .testimonial-author {
    align-items: flex-start;
  }

  .testimonial-person {
    max-width: 180px;
    padding: 10px 12px;
  }
}

.local-section {
  background: linear-gradient(180deg, #F5F5F9 0%, #fff 100%);
}

.about-head {
  margin-bottom: 40px;
}

.about-title {
  max-width: none;
  width: 100%;
}

.about-subtitle {
  max-width: 820px;
}

.local-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px 64px;
  align-items: start;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.about-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-channel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(219, 220, 233, 0.95);
}

.about-channel-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--navy-mid);
  background: var(--teal-soft);
  flex: 0 0 auto;
}

.about-channel-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.about-channel-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 44px;
}

.about-phone-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  margin: 0 -12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy);
  transition: background 0.18s ease, transform 0.18s ease;
}

.about-phone-line:hover {
  background: rgba(98, 114, 189, 0.08);
}

.about-phone-line:focus-visible {
  outline: 3px solid rgba(98, 114, 189, 0.45);
  outline-offset: 2px;
}

.about-phone-num {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.about-phone-line:hover .about-phone-num {
  color: var(--blue);
}

.about-messenger-chips {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.about-messenger-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(98, 114, 189, 0.1);
  color: var(--navy-mid);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.about-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(98, 114, 189, 0.1);
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.about-portal-link:hover {
  background: var(--gradient-accent);
  color: #fff;
  transform: translateY(-1px);
}

.about-portal-link:focus-visible {
  outline: 3px solid rgba(98, 114, 189, 0.45);
  outline-offset: 2px;
}

.about-online {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.about-online .about-channel-body {
  padding-top: 0;
}

.about-social-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-social-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #c9c9d6;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.about-social-link svg {
  width: 24px;
  height: 24px;
  display: block;
}

.about-social-link--instagram {
  /* Official Instagram circle gradient: yellow → orange → magenta */
  background: linear-gradient(45deg, #feda75 0%, #fa7e1e 35%, #d62976 70%, #962fbf 100%);
}

.about-social-link--facebook {
  background: #1877f2;
}

.about-social-link--facebook svg {
  width: 26px;
  height: 26px;
  /* Keep the official "f" stem flush to the circle bottom */
  margin-top: 4px;
}

.about-social-link--telegram {
  background: #24a1de;
}

.about-social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.about-social-link--instagram:hover {
  box-shadow: 0 12px 26px rgba(214, 41, 118, 0.38);
}

.about-social-link--facebook:hover {
  box-shadow: 0 12px 26px rgba(24, 119, 242, 0.38);
}

.about-social-link--telegram:hover {
  box-shadow: 0 12px 26px rgba(36, 161, 222, 0.4);
}

.about-social-link:focus-visible {
  outline: 3px solid rgba(98, 114, 189, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .about-phone-line,
  .about-portal-link,
  .about-social-link {
    transition: none;
  }

  .about-phone-line:hover,
  .about-portal-link:hover,
  .about-social-link:hover {
    transform: none;
    filter: none;
  }
}

.certificates-section {
  background: transparent;
  overflow: hidden;
}

.certificates-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.certificates-head > div:first-child {
  max-width: 640px;
}

.certificates-head .subtitle {
  margin-bottom: 0;
}

.certificates-controls {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}

.certificates-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 12px;
  border: 0;
  background: #464C6E;
  color: #F4F5FA;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(70, 76, 110, 0.28);
  flex: 0 0 48px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.certificates-nav--next {
  background: #6272BD;
  box-shadow: 0 10px 22px rgba(98, 114, 189, 0.3);
}

.certificates-nav .slider-nav-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  line-height: 0;
  color: inherit;
}

.certificates-nav .brand-chevron-icon {
  display: block;
  width: 22px;
  height: 22px;
}

.certificates-nav:hover:not(:disabled),
.certificates-nav:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.06);
  outline: none;
}

.certificates-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.certificates-carousel {
  position: relative;
  margin-top: 36px;
}

.certificates-track {
  list-style: none;
  margin: 0;
  padding: 8px 4px 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.certificates-track::-webkit-scrollbar {
  display: none;
}

.certificates-track:focus-visible {
  outline: 2px solid rgba(98, 114, 189, 0.45);
  outline-offset: 4px;
  border-radius: 18px;
}

.certificate-slide {
  scroll-snap-align: start;
  min-width: 0;
}

.certificates-fade {
  display: none;
}

.certificates-fade-left,
.certificates-fade-right {
  display: none;
}

.certificate-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  height: 100%;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.certificate-slide.is-active .certificate-card {
  border-color: rgba(98, 114, 189, 0.34);
  box-shadow: 0 18px 40px rgba(98, 114, 189, 0.14);
}

.certificate-card:hover,
.certificate-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(98, 114, 189, 0.4);
  box-shadow: 0 22px 44px rgba(98, 114, 189, 0.18);
  outline: none;
}

.certificate-preview {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
  aspect-ratio: 3 / 4;
}

.certificate-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.certificate-card:hover .certificate-preview img,
.certificate-card:focus-visible .certificate-preview img {
  transform: scale(1.04);
}

.certificate-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}

.certificate-copy b {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.certificate-copy span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.certificate-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}

.certificate-cta span {
  transition: transform 0.25s ease;
}

.certificate-card:hover .certificate-cta span,
.certificate-card:focus-visible .certificate-cta span {
  transform: translateX(3px);
}

.certificates-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.certificates-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(70, 76, 110, 0.22);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.certificates-dot.is-active {
  width: 22px;
  background: var(--blue);
}

.certificates-dot:focus-visible {
  outline: 2px solid rgba(98, 114, 189, 0.45);
  outline-offset: 3px;
}

.contact-card {
  background: var(--gradient-dark);
  border-radius: 28px;
  padding: 38px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(98, 114, 189, 0.24), transparent 40%);
  pointer-events: none;
}

.contact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  position: relative;
}

.contact-card p,
.contact-card a:not(.btn) {
  position: relative;
}

.contact-card p,
.contact-card .contact-address {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.contact-card .contact-address:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-card a:not(.btn) {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.phone-stack {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  width: max-content;
  max-width: 100%;
}

.phone-stack > a {
  display: table-row;
  color: inherit;
  text-decoration: none;
}

.phone-label {
  display: inline-grid;
  grid-template-columns: 2.75ch max-content auto;
  column-gap: 0.35em;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
}

.phone-stack .phone-label {
  display: contents;
}

.phone-stack .phone-cc,
.phone-stack .phone-op,
.phone-stack .phone-num {
  display: table-cell;
  padding: 0 0.35em 0 0;
  line-height: 1.12;
  vertical-align: baseline;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
}

.phone-stack .phone-num {
  padding-right: 0;
}

.phone-stack > a + a .phone-cc,
.phone-stack > a + a .phone-op,
.phone-stack > a + a .phone-num {
  padding-top: 2px;
}

.phone-cc,
.phone-op,
.phone-prefix,
.phone-accent,
.phone-num {
  font-family: inherit;
  font-size: 1em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.phone-cc,
.phone-op,
.phone-prefix {
  font-weight: 500;
  opacity: 0.58;
  color: inherit;
}

.phone-accent {
  font-weight: 900;
  opacity: 1;
  color: var(--blue);
  letter-spacing: 0.01em;
}

/* Numbers without the shared 58-43-85 ending stay visually uniform */
.phone-label--plain .phone-cc,
.phone-label--plain .phone-op,
.phone-label--plain .phone-num {
  font-weight: inherit;
  opacity: 1;
  color: inherit;
}

/* Light header: mild mute is fine */
.header-phone .phone-cc,
.header-phone .phone-op,
.header-phone .phone-prefix,
.header-mobile-phone .phone-cc,
.header-mobile-phone .phone-op,
.header-mobile-phone .phone-prefix {
  opacity: 0.55;
}

.header-phone .phone-accent,
.header-mobile-phone .phone-accent {
  color: var(--blue);
}

.about-phone-num .phone-cc,
.about-phone-num .phone-op,
.about-phone-num .phone-prefix {
  font-weight: 500;
  opacity: 0.55;
  color: var(--navy-mid);
}

.about-phone-num .phone-label--plain .phone-cc,
.about-phone-num .phone-label--plain .phone-op,
.about-phone-num .phone-label--plain .phone-num {
  font-weight: inherit;
  opacity: 1;
  color: inherit;
}

.about-phone-num .phone-accent {
  font-weight: 900;
  opacity: 1;
  color: var(--navy);
}

.about-phone-line:hover .about-phone-num .phone-accent {
  color: var(--blue);
}

/* Dark surfaces: mute prefix, keep accent bright and heavy */
.contact-card .phone-cc,
.contact-card .phone-op,
.contact-card .phone-prefix,
.footer-phone .phone-cc,
.footer-phone .phone-op,
.footer-phone .phone-prefix {
  opacity: 0.62;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.contact-card .phone-label--plain .phone-cc,
.contact-card .phone-label--plain .phone-op,
.contact-card .phone-label--plain .phone-num,
.footer-phone .phone-label--plain .phone-cc,
.footer-phone .phone-label--plain .phone-op,
.footer-phone .phone-label--plain .phone-num {
  opacity: 1;
  color: #fff;
  font-weight: inherit;
}

.contact-card .phone-stack {
  gap: 0;
}

.contact-card .phone-stack > a {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.contact-card .phone-accent,
.footer-phone .phone-accent {
  color: #fff;
  opacity: 1;
  font-weight: 900;
}

.contact-card .btn {
  margin-top: 12px;
  position: relative;
}

.page-hero {
  padding: 72px 0 60px;
  background: linear-gradient(180deg, #F5F5F9 0%, #fff 100%);
  border-bottom: 1px solid rgba(219, 220, 233, 0.9);
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.legal-body {
  max-width: 860px;
}

.legal-body .legal-doc-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 0;
}

.legal-body h2 {
  margin-top: 36px;
}

.legal-body p,
.legal-body li {
  color: var(--text-secondary);
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb button {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--gray-200);
}

.page-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.article-body {
  max-width: 780px;
}

.article-body .lead {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--navy);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 6px;
}

.article-body p,
.article-body li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.article-body ul {
  padding-left: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-item > span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(98, 114, 189, 0.12), rgba(var(--teal-rgb), 0.08));
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.feature-item p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.article-cta-box {
  background: linear-gradient(180deg, #F5F5F9 0%, #fff 100%);
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 24px;
  padding: 34px;
  margin: 40px 0;
  text-align: center;
  box-shadow: var(--shadow);
}

.article-cta-box h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 10px;
}

.article-cta-box p {
  font-size: 14px;
  margin: 0 0 20px;
}

.related-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.related-card:hover {
  border-color: rgba(98, 114, 189, 0.24);
  transform: translateY(-2px);
}

.related-card b {
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
}

.sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-card {
  background: linear-gradient(180deg, #fff 0%, #F5F5F9 100%);
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  margin: 0 0 16px;
  color: var(--navy);
}

.sidebar-stat {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--gray-100);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.sidebar-stat b {
  font-family: var(--font-display);
  color: var(--navy);
  text-align: right;
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 18px;
}

.article-meta-hero {
  margin-bottom: 16px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.blog-listing .articles-grid {
  margin-top: 0;
}

.blog-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(98, 114, 189, 0.08), transparent 40%),
    linear-gradient(180deg, #F5F5F9 0%, #fff 100%);
}

.blog-subtitle {
  margin-bottom: 0;
  max-width: 520px;
}

.article-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  border: 1px solid rgba(219, 220, 233, 0.95);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.article-card:hover,
.article-card:focus-visible {
  border-color: rgba(98, 114, 189, 0.32);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(98, 114, 189, 0.14);
  outline: none;
}

.article-img {
  position: relative;
  height: 148px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: #464C6E;
  background-image: linear-gradient(135deg, #464C6E 0%, #6272BD 100%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.article-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 55%);
  pointer-events: none;
}

.article-img-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 28px;
  line-height: 1;
}

.article-body-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
  padding: 22px 22px 20px;
  min-height: 0;
}

.article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.article-meta span {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-meta small {
  font-size: 11px;
  color: var(--text-secondary);
}

.article-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.article-card-cta span {
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-card:hover .article-card-cta span,
.article-card:focus-visible .article-card-cta span {
  transform: translateX(4px);
}

footer {
  background: linear-gradient(180deg, #000000 0%, #2A2E42 100%);
  padding: 72px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.35);
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

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

.footer-phones .phone-stack {
  gap: 0;
}

.footer-phone {
  font-family: var(--font-body);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.footer-phones .phone-stack .footer-phone {
  font-weight: 700;
}

.footer-support {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 14px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.footer-support-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-transform: none;
  color: var(--accent-light);
}

.footer-support-phone {
  display: flex;
  align-items: center;
  min-height: 30px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.footer-support-phone:hover {
  color: var(--accent-light);
}

.footer-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  min-height: 20px;
  padding: 0;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.footer-portal-link span {
  transition: transform 0.18s ease;
}

.footer-portal-link:hover {
  color: var(--accent-light);
  text-decoration-color: currentColor;
  background: none;
  box-shadow: none;
  transform: none;
  filter: none;
}

.footer-portal-link:hover span {
  transform: translateX(3px);
}

.footer-portal-link:focus-visible {
  outline: 2px solid rgba(159, 167, 211, 0.7);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .footer-portal-link,
  .footer-portal-link span {
    transition: none;
  }

  .footer-portal-link:hover span {
    transform: none;
  }
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links button {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  text-align: left;
  padding: 0;
}

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

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy,
.footer-bottom-links a,
.footer-bottom-links button {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 20px;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-cta .btn {
  flex: 1;
  padding: 12px;
}

.sticky-cta .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.notification {
  position: fixed;
  top: 72px;
  right: 24px;
  z-index: 9999;
  max-width: min(360px, calc(100vw - 32px));
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.notification.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

button {
  font-family: inherit;
}

.logo-button,
.industry-card,
.region-card,
.article-card,
.related-card,
.breadcrumb button,
.footer-links button,
.footer-bottom-links button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.logo-button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-align: left;
}

.industry-card,
.region-card,
.article-card {
  text-align: inherit;
}

.industry-card,
.region-card {
  color: inherit;
}

.breadcrumb button {
  padding: 0;
  font-size: 13px;
}

.article-card,
.related-card {
  text-align: left;
  width: 100%;
}

.contact-card button {
  width: 100%;
}

@media (max-width: 1123px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 56px;
    height: 56px;
  }

  .header-nav {
    display: none;
  }

  .header-burger {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

  .header-cta {
    gap: 0;
  }

  .header-phone,
  .btn-header {
    display: none;
  }

  .logo-img {
    height: 28px;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 980px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar-inner li:last-child {
    grid-column: 1 / -1;
  }

  .pain-head,
  .pain-cta-panel {
    grid-template-columns: 1fr;
  }

  .pain-cta-panel {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pain-cta-panel .btn {
    width: 100%;
  }

  .hero-inner,
  .calc-inner,
  .local-inner,
  .page-inner {
    grid-template-columns: 1fr;
  }

  .about-channel-body {
    padding-left: 0;
  }

  .about-phone-line {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .page-hero {
    padding: 56px 0 40px;
  }

  .page-hero .title-lg {
    font-size: clamp(28px, 8vw, 42px);
  }

  .page-hero .subtitle {
    font-size: 16px;
    margin-top: 14px;
  }

  .page-hero .hero-actions {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero .hero-actions .btn {
    width: 100%;
  }

  .page-inner {
    gap: 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .feature-item {
    padding: 16px;
    border-radius: 16px;
  }

  .article-body h2 {
    font-size: clamp(22px, 6vw, 28px);
    margin: 28px 0 12px;
  }

  .article-cta-box {
    padding: 24px 18px;
    border-radius: 20px;
    margin: 28px 0;
  }

  .article-cta-box h3 {
    font-size: clamp(18px, 5vw, 22px);
  }

  .article-cta-box .btn {
    width: 100%;
  }

  .sidebar-card {
    padding: 22px 18px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
  }

  .blog-listing {
    padding-top: 40px;
  }

  .article-card {
    border-radius: 18px;
  }

  .article-img {
    height: 132px;
  }

  .article-img-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 24px;
  }

  .article-body-card {
    padding: 18px 16px 16px;
  }

  .article-card h3 {
    font-size: 17px;
  }

  .article-card p {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .article-meta-hero {
    margin-bottom: 14px;
  }

  .article-body .lead {
    font-size: 17px;
    line-height: 1.65;
  }

  .related-articles {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .related-card {
    padding: 16px;
    border-radius: 16px;
  }

  .related-card b {
    font-size: 14px;
  }

  .hero-inner {
    grid-template-areas:
      "badge"
      "title"
      "copy"
      "visual";
    gap: 16px;
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-visual {
    display: none;
  }

  .pain-grid,
  .usp-grid,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .cases-track {
    gap: 14px;
    margin-top: 28px;
    padding: 4px 2px 14px;
    scroll-padding-inline: 2px;
    align-items: stretch;
  }

  .cases-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cases-controls {
    align-self: flex-end;
  }

  .cases-nav {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }

  .case-slide {
    flex: 0 0 min(360px, 82vw);
    width: min(360px, 82vw);
    min-width: 280px;
    max-width: 360px;
    align-self: stretch;
    height: auto;
    min-height: 0;
  }

  .case-slide .case-card {
    height: 100%;
    min-height: 100%;
  }

  .case-card {
    gap: 10px;
    padding: 16px 14px 14px;
    border-radius: 20px;
  }

  .case-metrics {
    margin-top: auto;
    gap: 6px;
  }

  .case-logo {
    min-height: 40px;
    padding: 6px 10px;
    border-radius: 12px;
  }

  .case-logo img {
    max-width: 104px;
    height: 24px;
  }

  .case-logo--dva-vidra img {
    height: 32px;
    max-width: 120px;
  }

  .case-card h3 {
    font-size: clamp(18px, 5.4vw, 22px);
  }

  .case-card-meta {
    gap: 8px;
  }

  .case-block {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .case-block p,
  .case-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .case-block-result p.is-clamped {
    -webkit-line-clamp: 3;
    max-height: calc(1.4em * 3);
    min-height: 0;
  }

  .case-expand {
    margin-top: 8px;
  }

  .case-metrics b {
    min-height: 0;
    padding: 10px 6px;
    border-radius: 14px;
  }

  .case-metric-value {
    font-size: 13px;
  }

  .case-metric-label {
    font-size: 10px;
  }

  .pain-summary strong {
    font-size: clamp(28px, 7vw, 36px);
  }

  .usp-card {
    padding: 24px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    padding: 32px 24px 24px;
  }

  .pricing-card.featured {
    margin-top: 10px;
  }

  .mini-cost {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .mini-cost-copy {
    grid-column: auto;
  }

  .mini-cost-result-value {
    font-size: clamp(22px, 6vw, 30px);
  }

  .industry-grid,
  .grid-4,
  .region-grid,
  .steps-track,
  .partners-list,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }


  .how-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .how-footer .btn {
    width: 100%;
  }

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

  .sidebar {
    position: static;
  }

  .section {
    padding: 72px 0;
  }

  .related-articles,
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cases-track {
    gap: 12px;
    margin-top: 22px;
  }

  .case-slide {
    flex: 0 0 min(320px, 88vw);
    width: min(320px, 88vw);
    min-width: 260px;
    max-width: 320px;
  }

  .cases-section .subtitle {
    font-size: 15px;
  }

  .case-card {
    gap: 10px;
    padding: 14px 12px 12px;
    border-radius: 18px;
  }

  .case-card-top {
    gap: 10px;
  }

  .case-logo {
    min-height: 36px;
    padding: 6px 10px;
  }

  .case-logo img {
    max-width: 96px;
    height: 22px;
  }

  .case-logo--dva-vidra img {
    height: 28px;
    max-width: 110px;
  }

  .case-index {
    font-size: 12px;
  }

  .case-tag {
    font-size: 10px;
    padding: 5px 9px;
  }

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

  .case-story {
    gap: 8px;
  }

  .case-block {
    padding: 10px;
  }

  .case-block small {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .case-block p,
  .case-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .case-block-result p.is-clamped {
    -webkit-line-clamp: 3;
    min-height: 0;
  }

  .case-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .case-metrics b {
    min-height: 0;
    padding: 8px 4px;
    gap: 2px;
    border-radius: 12px;
  }

  .case-metric-value {
    font-size: 12px;
    line-height: 1.15;
  }

  .case-metric-label {
    font-size: 10px;
    line-height: 1.2;
  }

  .case-link {
    font-size: 13px;
    padding-top: 0;
  }

  .cases-nav {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    flex-basis: 42px;
  }

  .certificates-nav {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-basis: 44px;
  }

  .container {
    padding: 0 18px;
  }

  .header-burger {
    width: 36px;
    height: 36px;
  }

  .logo-img {
    height: 26px;
  }

  .hero {
    padding: 64px 0 76px;
  }

  .industry-grid,
  .grid-4,
  .region-grid,
  .partners-list,
  .footer-grid,
  .form-row,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-hero {
    padding: 48px 0 32px;
  }

  .page-hero .title-lg {
    font-size: clamp(26px, 9vw, 34px);
    letter-spacing: -0.025em;
  }

  .page-hero .subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .breadcrumb {
    font-size: 12px;
    gap: 6px;
    margin-bottom: 14px;
  }

  .feature-item {
    gap: 12px;
    padding: 14px;
  }

  .feature-item > span {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .article-body p,
  .article-body li {
    font-size: 14px;
    line-height: 1.7;
  }

  .article-cta-box {
    padding: 20px 16px;
  }

  .article-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .article-meta-hero {
    margin-bottom: 12px;
  }

  .article-body .lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .article-img {
    height: 120px;
  }

  .article-body-card {
    padding: 16px 14px 14px;
  }

  .article-card h3 {
    font-size: 16px;
    -webkit-line-clamp: 3;
  }

  .article-card p {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .related-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px;
  }

  .related-card span {
    flex: 0 0 auto;
    font-size: 22px;
  }

  .related-card b {
    font-size: 13px;
    line-height: 1.4;
  }

  .pain-grid,
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .pain-head {
    gap: 18px;
  }

  .pain-summary {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .pain-summary strong {
    font-size: clamp(26px, 9vw, 32px);
    white-space: nowrap;
  }

  .pain-card {
    padding: 20px 16px 16px;
    border-radius: 20px;
  }

  .pain-card-top {
    gap: 12px;
    margin-bottom: 12px;
    padding-right: 28px;
  }

  .pain-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 20px;
  }

  .pain-card h3 {
    font-size: 17px;
  }

  .pain-card p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .pain-cost {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .pain-cta-panel {
    margin-top: 20px;
    padding: 18px 16px;
    border-radius: 18px;
    gap: 14px;
  }

  .pain-cta-panel b {
    font-size: 18px;
  }

  .pain-cta-panel .btn {
    min-height: 48px;
  }

  #why .title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .usp-grid {
    margin-top: 28px;
  }

  .usp-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    padding: 16px;
    border-radius: 18px;
    align-items: start;
  }

  .usp-card span {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: linear-gradient(135deg, rgba(98, 114, 189, 0.12), rgba(var(--teal-rgb), 0.08));
  }

  .usp-card h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
  }

  .usp-card p {
    grid-column: 2;
    font-size: 13px;
    line-height: 1.5;
  }

  .partner-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 16px;
  }

  .partner-logo {
    width: min(200px, 70vw);
  }

  .partner-logo img {
    max-width: 200px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: none;
  }

  .certificates-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .certificates-controls {
    align-self: stretch;
    justify-content: flex-end;
  }

  .certificates-track {
    grid-auto-columns: minmax(78%, 78%);
    gap: 14px;
    padding-bottom: 14px;
  }

  .certificate-copy b {
    font-size: 16px;
  }

  .pricing-card {
    padding: 28px 18px 20px;
    border-radius: 22px;
  }

  .pricing-card.featured {
    margin-top: 12px;
    order: -1;
  }

  .pricing-card.featured::before {
    top: -12px;
    font-size: 11px;
    padding: 5px 12px;
  }

  .pricing-card h3 {
    font-size: clamp(26px, 9vw, 34px);
    margin: 12px 0 4px;
  }

  .pricing-card ul {
    padding-top: 18px;
    margin: 18px 0;
  }

  .pricing-card li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .pricing-card .btn {
    min-height: 48px;
  }

  .mini-cost {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .mini-cost-title {
    font-size: 22px;
  }

  .mini-cost-hint {
    font-size: 13px;
  }

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

  .mini-cost-preset {
    width: 100%;
    justify-content: center;
  }

  .mini-cost-result {
    padding: 18px;
  }

  .mini-cost-result-value {
    font-size: clamp(22px, 8vw, 28px);
  }

  .mini-cost-cta {
    min-height: 48px;
  }

  .steps-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-board {
    padding: 16px;
  }

  .step-panel {
    min-height: 0;
  }

  .step-ghost {
    font-size: 56px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .calc-box,
  .trial-form {
    padding: 24px;
  }

  .mini-cost {
    text-align: left;
  }

  .footer-bottom {
    padding-bottom: 72px;
  }

  .notification {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 88px;
    max-width: none;
    transform: translateY(10px);
  }

  .notification.show {
    transform: translateY(0);
  }
}
