/*
Theme Name: Prometrica Theme
Author: Nadim
Version: 1.0
*/

:root {
  --blue: #25a9dc;
  --red: #ef1f2d;
  --dark: #5f6260;
  --text: #1f2933;
  --muted: #667085;
  --bg: #f5f7f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

img {
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

.container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 22px 0;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 6px;
}

.logo img {
  width: 92px;
  height: auto;
  display: block;
}

.logo-text {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -.8px;
  color: #111;
}

.nav a {
  margin-left: 36px;
  color: var(--text);
  text-decoration: none;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(37,169,220,.08), rgba(239,31,45,.04)),
    linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95,98,96,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,98,96,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,169,220,.12);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.hero h1 {
  max-width: 620px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
}

.hero p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 26px;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-specs span {
  padding: 10px 14px;
  border-radius: 12px;
  background: white;
  border: 1px solid #e5e7eb;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
}

.hero-image-card {
  background: #fff;
  border-radius: 36px;
  padding: 30px;
  overflow: hidden;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -24px;
  top: -24px;
  background: var(--red);
  border-radius: 24px;
  opacity: .9;
  z-index: -1;
}
.hero-image-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  left: -28px;
  bottom: -28px;
  background: var(--blue);
  border-radius: 28px;
  opacity: .9;
  z-index: -1;
}

.hero-image-card img {
  width: 122%;
  max-width: none;
  display: block;
  margin-left: -11%;
}
.buttons {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--dark);
  border: 1px solid #d0d5dd;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer {
  margin-top: auto;
  padding: 32px 0;
  background: var(--dark);
  color: white;
}
.news-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 0;
  font-size: 38px;
}

.section-head a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.news-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg);
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31,41,51,.12);
}

.news-card a {
  color: inherit;
  text-decoration: none;
}

.news-image {
  aspect-ratio: 4 / 3;
  background: white;
  padding: 20px;
}

.news-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.news-content {
  padding: 22px;
}

.news-content time {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.news-content h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.news-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.single-news {
  padding: 70px 0 90px;
  background: #ffffff;
}

.single-news-inner {
  max-width: 860px;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.single-news time {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-weight: 700;
}

.single-news h1 {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.single-news-image {
  margin-bottom: 36px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg);
}

.single-news-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-news-content {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}

.single-news-content p {
  margin: 0 0 22px;
}

.single-news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.content-page {
  padding: 70px 0 90px;
  background: #ffffff;
}

.content-page-inner {
  max-width: 920px;
}

.content-page h1 {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.content-page-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}

.content-page-body h2,
.content-page-body h3 {
  margin: 36px 0 16px;
  line-height: 1.2;
}

.content-page-body p {
  margin: 0 0 20px;
}

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

.contacts-hero {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(37,169,220,.10), rgba(239,31,45,.05)),
    #f5f7f8;
}

.contacts-hero h1 {
  margin: 0 0 18px;
  font-size: 52px;
}

.contacts-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.contacts-section {
  padding: 70px 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 30px;
  border-radius: 22px;
  background: var(--bg);
}

.contact-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.contact-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.details-section {
  padding: 0 0 80px;
}

.details-box {
  padding: 40px;
  border-radius: 28px;
  background: var(--dark);
  color: white;
}

.details-box h2 {
  margin: 0 0 28px;
  font-size: 34px;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.details-list div {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.details-list span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.65);
}

.details-list strong {
  font-size: 18px;
}

.product-hero {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(37,169,220,.08), rgba(239,31,45,.04)),
    #f5f7f8;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.product-hero h1 {
  margin: 0 0 24px;
  font-size: 56px;
  line-height: 1.05;
}

.product-hero p,
.product-section p {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
}

.product-section {
  padding: 80px 0;
}

.product-section-gray {
  background: var(--bg);
}

.product-section h2 {
  margin: 0 0 24px;
  font-size: 38px;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.product-features div {
  padding: 22px;
  border-radius: 18px;
  background: white;
  border: 1px solid #e5e7eb;
  font-weight: 700;
}

.product-slider {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 70px rgba(31,41,51,.10);
  overflow: hidden;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  opacity: 0;
  transition: opacity .4s ease;
}

.slider-image.active {
  opacity: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #999;
  font-size: 54px;
  cursor: pointer;
}

.slider-btn.prev {
  left: 18px;
}

.slider-btn.next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #c9c9c9;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--dark);
}
.specs-section {
  padding: 80px 0;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 15px 40px rgba(31,41,51,.08);
}

.specs-table {
  width: 100%;
  min-width: 1200px;
  table-layout: auto;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 18px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.specs-table th {
  background: #f5f7f8;
  font-size: 15px;
}

.specs-table td:first-child,
.specs-table th:first-child {
  text-align: left;
  font-weight: 700;
  min-width: 300px;
}
.docs-hero {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(37,169,220,.10), rgba(239,31,45,.05)),
    #f5f7f8;
}

.docs-hero h1 {
  margin: 0 0 18px;
  font-size: 52px;
}

.docs-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.docs-page-section {
  padding: 80px 0;
}

.docs-page-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 36px;
  align-items: start;
}

.docs-list-block,
.software-block {
  padding: 34px;
  border-radius: 28px;
  background: var(--bg);
}

.docs-list-block h2,
.software-block h2 {
  margin: 0 0 28px;
  font-size: 34px;
}

.docs-list {
  display: grid;
  gap: 14px;
}

.docs-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: white;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #e5e7eb;
}

.docs-list a:hover {
  border-color: var(--blue);
}

.docs-list small {
  color: var(--red);
  font-weight: 700;
}

.software-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: white;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #e5e7eb;
}

.software-card:hover {
  border-color: var(--blue);
  box-shadow: 0 15px 35px rgba(31,41,51,.08);
}

.software-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 28px;
  font-weight: 700;
  background: #f0f4f7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
}

.windows-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325a9dc'%3E%3Cpath d='M3 4.5 10.5 3v8H3zm8.5-1.6L21 1.5V11h-9.5zM3 12h7.5v8L3 18.5zm8.5 0H21v9.5L11.5 20z'/%3E%3C/svg%3E");
}

.android-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%235f6260' viewBox='0 0 24 24'%3E%3Cpath d='M7 8v8a1 1 0 0 0 1 1h1v3h2v-3h2v3h2v-3h1a1 1 0 0 0 1-1V8zm9.74-3.86.75-1.3-.87-.5-.75 1.3A7 7 0 0 0 12 3a7 7 0 0 0-3.87 1.14l-.75-1.3-.87.5.75 1.3A6 6 0 0 0 6 8h12a6 6 0 0 0-1.26-3.86M9 6.5A.75.75 0 1 1 9 5a.75.75 0 0 1 0 1.5m6 0A.75.75 0 1 1 15 5a.75.75 0 0 1 0 1.5'/%3E%3C/svg%3E");
}



.software-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.software-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.products-hero {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(37,169,220,.10), rgba(239,31,45,.05)),
    #f5f7f8;
}

.products-hero h1 {
  margin: 0 0 18px;
  font-size: 52px;
}

.products-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.products-section {
  padding: 80px 0;
}

.product-main-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(31,41,51,.10);
}

.product-main-card h2 {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.1;
}

.product-main-card p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.product-main-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
  background: white;
}

.product-link {
  color: var(--blue);
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.product-card {
  padding: 30px;
  border-radius: 24px;
  background: white;
  border: 1px solid #e5e7eb;
}

.product-card h3 {
  margin: 0 0 14px;
  font-size: 26px;
}

.product-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.product-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.product-card-image {
  height: 260px;
  border-radius: 20px;
  background: #f5f7f8;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  width: 140%;
  height: 140%;
  object-fit: contain;
  display: block;
}
.software-product-section {
  margin-top: 50px;
}

.software-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;

  padding: 48px;
  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      rgba(37,169,220,.05),
      rgba(239,31,45,.03)
    );

  border: 1px solid #e5e7eb;
}

.software-product-content h2 {
  margin: 0 0 20px;
  font-size: 48px;
}

.software-product-content p {
  margin: 0 0 26px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}

.software-features {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 14px;
}

.software-features li {
  position: relative;
  padding-left: 26px;
}

.software-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;

  width: 10px;
  height: 10px;

  border-radius: 50%;
  background: var(--blue);
}

@media (max-width: 900px) {
  .software-product-card {
    grid-template-columns: 1fr;
  }

  .software-product-content h2 {
    font-size: 38px;
  }
}
.software-product-visual img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(31,41,51,.12);
}
.products-section .container,
.products-hero .container {
  width: min(1360px, calc(100% - 80px));
  max-width: none;
}
.proneo-hero {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(37,169,220,.10), rgba(239,31,45,.05)),
    #f5f7f8;
}

.proneo-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.proneo-hero h1 {
  margin: 0 0 20px;
  font-size: 64px;
}

.proneo-hero p,
.proneo-section p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.proneo-hero-image img,
.proneo-version-card img,
.proneo-scheme img {
  width: 100%;
  display: block;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(31,41,51,.10);
}

.proneo-section {
  padding: 80px 0;
}

.proneo-section-gray {
  background: var(--bg);
}

.proneo-section h2 {
  margin: 0 0 28px;
  font-size: 40px;
}

.proneo-versions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.proneo-version-card {
  padding: 32px;
  border-radius: 28px;
  background: var(--bg);
  border: 1px solid #e5e7eb;
}

.proneo-version-card h3 {
  margin: 0 0 16px;
  font-size: 30px;
}

.proneo-version-card p {
  margin-bottom: 28px;
}

.proneo-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.proneo-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.5;
}

.proneo-scheme {
  margin-top: 32px;
}

.proneo-requirements {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.proneo-requirements div {
  padding: 22px;
  border-radius: 18px;
  background: white;
  border: 1px solid #e5e7eb;
  font-weight: 700;
}

@media (max-width: 900px) {
  .proneo-hero-grid,
  .proneo-versions,
  .proneo-text-grid,
  .proneo-requirements {
    grid-template-columns: 1fr;
  }

  .proneo-hero h1 {
    font-size: 44px;
  }
}
.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  margin-left: auto;
  text-align: right;
  font-size: 14px;
  line-height: 1.35;
}

.footer-legal a,
.footer-legal-title {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.footer-legal span {
  color: rgba(255, 255, 255, .78);
}

.footer-support {
  position: absolute;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
.contact-note {
  font-size: 14px;
  opacity: .8;
}
.contacts-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.contacts-hero-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

@media (max-width: 900px) {
  .contacts-hero-inner {
    grid-template-columns: 1fr;
  }

  .contacts-hero-image img {
    height: 220px;
  }
}

.burger {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 0;
  cursor: pointer;
  color: var(--text);
}

.burger::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 13px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
}

a[href^="tel"],
a[href^="mailto"] {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 800px) {
  .site-header {
    position: relative;
    z-index: 9999;
    background: white;
  }

  .header-inner {
    position: relative;
    padding-right: 68px;
  }

  .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .products-section .container,
  .products-hero .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .burger {
    position: absolute;
    top: 50%;
    right: 16px;
    display: block;
    flex: 0 0 44px;
    z-index: 2;
    transform: translateY(-50%);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f5f7f8;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    z-index: 10000;
    display: none;
    flex-direction: column;
    min-width: 240px;
    padding: 18px 22px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(31, 41, 51, .18);
  }

  .nav.active {
    display: flex !important;
  }

  .nav a {
    margin: 0;
    padding: 10px 0;
    font-size: 20px;
  }

  .hero {
    padding: 40px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .news-grid,
  .contacts-grid,
  .details-list,
  .product-hero-grid,
  .product-features,
  .docs-page-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .product-main-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .product-main-card {
    padding: 28px;
  }

  .hero-content,
  .product-main-card > div {
    width: 100%;
    min-width: 0;
  }

  h1,
  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .single-news h1 {
    font-size: 32px;
  }

  .content-page {
    padding: 48px 0 64px;
  }

  .content-page h1 {
    font-size: 34px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .content-page-body {
    font-size: 16px;
    line-height: 1.65;
  }

  .contacts-hero h1,
  .product-hero h1,
  .docs-hero h1 {
    font-size: 34px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .products-hero h1 {
    font-size: 36px;
  }

  .product-main-card h2 {
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero p,
  .product-main-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero p,
  .contacts-hero p,
  .docs-hero p,
  .products-hero p,
  .product-hero p {
    overflow-wrap: anywhere;
  }

  .hero-image,
  .product-main-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .news-card .news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 24px;
    background: #f5f7f8;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .docs-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .footer-support {
    position: static;
    transform: none;
    text-align: center;
  }

  .footer-legal {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .details-list strong {
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: nowrap !important;
  }

  body {
    min-height: 100%;
    display: block;
  }

  .site-footer {
    margin-top: 0;
    padding: 24px 0 calc(28px + env(safe-area-inset-bottom));
  }

  .footer-bottom p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
