:root {
    --bg-page: #ffffff;
    --bg-soft: #f7f9fc;
    --bg-white: #ffffff;

    --navy: #0f2747;
    --navy-2: #17365d;
    --navy-3: #264a77;

    --text-main: #13263f;
    --text-soft: #4b6079;
    --text-muted: #7387a0;

    --line-soft: rgba(15, 39, 71, 0.08);
    --line-medium: rgba(15, 39, 71, 0.14);

    --accent: #f28c28;
    --accent-hover: #ff9c3a;

    --shadow-soft: 0 10px 30px rgba(21, 42, 74, 0.08);
    --shadow-medium: 0 18px 50px rgba(18, 40, 70, 0.12);
    --shadow-form: 0 20px 55px rgba(15, 39, 71, 0.14);

    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 12px;

    --container: 1500px;
    --header-height: 84px;
    --sticky-top: 108px;

    --transition: 0.28s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg-page);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 999;
    background: #fff;
    color: #111;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: var(--shadow-soft);
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.01em;
}

.site-logo__mark {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent), #d96d08);
    box-shadow: 0 6px 14px rgba(242, 140, 40, 0.28);
}

.site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav a,
.mobile-menu__nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--navy-2);
    font-weight: 600;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
    background: rgba(15, 39, 71, 0.07);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 39, 71, 0.08);
    outline: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: rgba(15, 39, 71, 0.06);
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--line-soft);
}

.mobile-menu__nav {
    width: min(100% - 24px, var(--container));
    margin: 0 auto;
    padding: 14px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.is-open {
    display: block;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 22px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn--accent {
    background: var(--accent);
    color: #1a1a1a;
    box-shadow: 0 12px 26px rgba(242, 140, 40, 0.24);
}

.btn--accent:hover,
.btn--accent:focus-visible {
    background: var(--accent-hover);
}

.btn--dark {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 26px rgba(15, 39, 71, 0.18);
}

.btn--dark:hover,
.btn--dark:focus-visible {
    background: var(--navy-2);
}

.btn--inline {
    margin-top: 10px;
}

.btn--full {
    width: 100%;
}

.btn--mobile {
    margin-top: 8px;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 251, 255, 0.78), rgba(238, 243, 249, 0.88)),
        url("/images/hero-bg.jpg") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(242, 140, 40, 0.10), transparent 22%),
        radial-gradient(circle at bottom left, rgba(15, 39, 71, 0.08), transparent 30%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 48px;
    align-items: center;
}

.hero-copy {
    max-width: 860px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--navy-3);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

.hero-copy h1 {
    margin: 0 0 20px;
    font-size: clamp(2.3rem, 4.5vw, 4.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.hero-copy p {
    margin: 0;
    max-width: 760px;
    font-size: 1.12rem;
    color: var(--text-soft);
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-offer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-offer__card {
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    overflow: hidden;
}

.hero-offer__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* MAIN LAYOUT */
/* .content-section {
    position: relative;
    padding: 60px 0 80px;
    overflow: visible;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 44px;
    align-items: start;
    overflow: visible;
}

.article-column {
    min-width: 0;
    overflow: visible;
}

.article-content {
    max-width: 930px;
}

.article-content h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(1.9rem, 2.4vw, 2.7rem);
    line-height: 1.15;
}

.article-content h3 {
    margin: 34px 0 14px;
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.25;
}

.article-content p,
.article-content ul {
    margin: 0 0 18px;
    color: var(--text-main);
}

.article-content ul {
    padding-left: 22px;
}

.article-content li {
    margin-bottom: 10px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d56d0a;
    font-weight: 800;
    border-bottom: 1px solid rgba(213, 109, 10, 0.3);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
}

.text-link:hover,
.text-link:focus-visible {
    color: #b45700;
    border-color: rgba(180, 87, 0, 0.7);
    outline: none;
}

.soft-highlight {
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    background: rgba(242, 140, 40, 0.08);
    border-radius: 0 14px 14px 0;
    color: var(--text-main);
}

/* FORM SIDEBAR */
/*
.form-column {
    position: relative;
    min-width: 0;
    align-self: start;
    overflow: visible;
}

.form-panel {
    position: sticky;
    top: var(--sticky-top);
    width: 100%;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-form);
    max-height: calc(100vh - var(--sticky-top) - 20px);
    overflow-y: auto;
}

.form-panel h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 2rem;
    line-height: 1.15;
}

.form-intro {
    margin: 0 0 20px;
    color: var(--text-soft);
}

.lead-form {
    display: grid;
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    color: var(--navy);
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line-medium);
    border-radius: 14px;
    background: #fff;
    color: var(--text-main);
    padding: 15px 16px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(242, 140, 40, 0.72);
    box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.12);
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.55;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex: 0 0 18px;
    accent-color: var(--accent);
}

.checkbox-field a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkbox-field a:hover {
    color: var(--accent);
}

.form-extra {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
}

.form-extra p {
    margin: 0 0 8px;
    color: var(--text-soft);
} */
.content-section {
  position: relative;
  padding: 72px 0 90px;
}

.content-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: start;
}

.article-column {
  min-width: 0;
}

.article-content {
  max-width: 920px;
}

.article-content h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.9rem, 2.4vw, 2.7rem);
  line-height: 1.15;
}

.article-content h3 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.25;
}

.article-content p,
.article-content ul {
  margin: 0 0 18px;
  color: var(--text-main);
}

.article-content ul {
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d56d0a;
  font-weight: 800;
  border-bottom: 1px solid rgba(213, 109, 10, 0.3);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.text-link:hover,
.text-link:focus-visible {
  color: #b45700;
  border-color: rgba(180, 87, 0, 0.7);
  outline: none;
}

.soft-highlight {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(242, 140, 40, 0.08);
  border-radius: 0 14px 14px 0;
  color: var(--text-main);
}

/* RIGHT COLUMN */
.form-column {
  position: relative;
  min-width: 0;
  min-height: 1px;
}

.form-anchor {
  height: 1px;
}

.form-panel {
  width: 100%;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(15, 39, 71, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
}

.form-panel.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-panel.is-fixed {
  position: fixed;
  top: 108px;
  width: 420px;
  z-index: 60;
}

.form-panel.is-absolute {
  position: absolute;
  width: 420px;
  top: auto;
  bottom: 0;
  right: 0;
}

.form-panel.is-static {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.form-panel h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.15;
}

.form-intro {
  margin: 0 0 20px;
  color: var(--text-soft);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--navy);
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line-medium);
  border-radius: 14px;
  background: #fff;
  color: var(--text-main);
  padding: 15px 16px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(242, 140, 40, 0.72);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.12);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 18px;
  accent-color: var(--accent);
}

.checkbox-field a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-field a:hover {
  color: var(--accent);
}

@media (max-width: 1280px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 42px;
  }

  .form-panel.is-fixed,
  .form-panel.is-absolute {
    width: 380px;
  }
}

@media (max-width: 980px) {
  .content-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .form-panel,
  .form-panel.is-fixed,
  .form-panel.is-absolute,
  .form-panel.is-visible {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (max-width: 767px) {
  .content-section {
    padding: 44px 0 58px;
  }

  .form-panel {
    padding: 22px 18px;
    border-radius: 20px;
  }
}
/* COMPANY */
.company-section {
    padding: 30px 0 80px;
}

.company-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1fr;
    gap: 34px;
    align-items: start;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(180deg, #f0f5fb 0%, #e8eef7 100%);
}

.company-copy h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: clamp(1.8rem, 2.3vw, 2.5rem);
    line-height: 1.15;
}

.company-copy p {
    margin: 0;
    color: var(--text-soft);
}

.company-details {
    display: grid;
    gap: 16px;
}

.company-row {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.company-row strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy);
}

.company-row span {
    color: var(--text-soft);
}

/* FOOTER */
.site-footer {
    background: var(--navy);
    color: #fff;
    margin-top: 20px;
}

.footer-grid {
    padding: 48px 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
    gap: 26px;
}

.site-logo--footer {
    color: #fff;
}

.footer-brand p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer-links h4 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 1.05rem;
}

.footer-links a,
.footer-links span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.76);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
    outline: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
    padding: 18px 0 24px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.95rem;
}

/* MOBILE FLOATING BUTTON */
.floating-form-btn {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 140;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--accent);
    color: #1a1a1a;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(18, 40, 70, 0.22);
}

.floating-form-btn.is-visible {
    display: inline-flex;
}

/* RESPONSIVE */
@media (max-width: 1220px) {
    .content-layout {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 34px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    :root {
        --sticky-top: 90px;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-nav{
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding: 42px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-column {
        order: 2;
    }

    .form-panel {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 74px;
        --sticky-top: 86px;
    }

    body {
        font-size: 17px;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero-section {
        padding: 28px 0 34px;
        background:
            linear-gradient(rgba(248, 251, 255, 0), rgba(238, 243, 249, 0)),
            url("/images/hero-bg.jpg") center center / cover no-repeat;
    }

    .hero-copy h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-offer__card {
        border-radius: 22px;
    }

    .content-section {
        padding: 42px 0 56px;
    }

    .form-panel {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .company-grid {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 38px 0 24px;
    }
}

@media (max-width: 420px) {
    body {
        font-size: 16px;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

    .article-content h2,
    .form-panel h2,
    .company-copy h2 {
        font-size: 1.7rem;
    }

    .article-content h3 {
        font-size: 1.26rem;
    }
}
/*  */
.media-block {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Видео */
.media-block--video {
    aspect-ratio: 16 / 9;
}

.media-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none; /* убирает возможность тыкать по видео */
}

/* Картинка */
.media-block--image {
    aspect-ratio: 16 / 9;
}

.media-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/*  */
.usage-list {
    padding: 28px 26px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto 32px;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.usage-item + .usage-item {
    margin-top: 20px;
}

.usage-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border-radius: 3px;
    background: #19c319;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.usage-content h3 {
    margin: 0 0 4px;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
    color: #222222;
    font-family: Arial, sans-serif;
}

.usage-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    color: #0a082b;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
    .usage-list {
        padding: 22px 18px;
    }

    .usage-item + .usage-item {
        margin-top: 18px;
    }

    .usage-content h3 {
        font-size: 18px;
    }

    .usage-content p {
        font-size: 17px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .usage-list {
        padding: 18px 14px;
    }

    .usage-item {
        gap: 10px;
    }

    .usage-icon {
        width: 17px;
        height: 17px;
        line-height: 17px;
        font-size: 12px;
        margin-top: 4px;
    }

    .usage-content h3 {
        font-size: 17px;
    }

    .usage-content p {
        font-size: 16px;
    }
}
/*  */
.compare-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    background: #f3f3f3;
}

.compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: Arial, sans-serif;
    background: #f3f3f3;
}

.compare-table th,
.compare-table td {
    border: 1px solid #dedede;
    padding: 14px 18px;
    vertical-align: middle;
}

.compare-table thead th {
    background: #eeeeee;
    color: #333333;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}

.compare-table thead th:first-child {
    text-align: left;
}

.compare-table tbody td:first-child {
    width: 42%;
    color: #333333;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
    text-align: left;
}

.compare-table tbody td:not(:first-child) {
    width: 19.33%;
    text-align: center;
}

.compare-table tbody tr:nth-child(odd) td {
    background: #e9e9e9;
}

.compare-table tbody tr:nth-child(even) td {
    background: #f3f3f3;
}

.mark {
    display: inline-block;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.mark--yes {
    color: #4aa66e;
}

.mark--no {
    color: #e58c8c;
}

@media (max-width: 768px) {
    .compare-table th,
    .compare-table td {
        padding: 12px 12px;
    }

    .compare-table thead th {
        font-size: 15px;
    }

    .compare-table tbody td:first-child {
        font-size: 15px;
    }

    .mark {
        font-size: 24px;
    }
}
.compare-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: 12px;
}

.compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: Arial, sans-serif;
    background: #f3f3f3;
}

.compare-table th,
.compare-table td {
    border: 1px solid #dddddd;
    padding: 14px 16px;
    vertical-align: middle;
}

.compare-table thead th {
    background: #ededed;
    color: #333;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}

.compare-table thead th:first-child {
    text-align: left;
}

.compare-table tbody tr:nth-child(odd) td {
    background: #e9e9e9;
}

.compare-table tbody tr:nth-child(even) td {
    background: #f3f3f3;
}

.compare-table tbody td:first-child {
    width: 42%;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
    color: #333;
    text-align: left;
}

.compare-table tbody td:not(:first-child) {
    width: 19.33%;
    text-align: center;
}

.mark {
    display: inline-block;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.mark--yes {
    color: #4aa66e;
}

.mark--no {
    color: #e58c8c;
}
@media (max-width: 991px) {
    .compare-table {
        min-width: 680px;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 12px;
    }

    .compare-table thead th {
        font-size: 15px;
        line-height: 1.2;
    }

    .compare-table tbody td:first-child {
        font-size: 15px;
        line-height: 1.3;
        width: 40%;
    }

    .compare-table tbody td:not(:first-child) {
        width: 20%;
    }

    .mark {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    .compare-table-wrap {
        margin: 20px 0;
        border-radius: 10px;
    }

    .compare-table {
        min-width: 620px;
    }

    .compare-table th,
    .compare-table td {
        padding: 10px 10px;
    }

    .compare-table thead th {
        font-size: 14px;
        line-height: 1.2;
        white-space: normal;
    }

    .compare-table tbody td:first-child {
        font-size: 14px;
        line-height: 1.3;
        width: 44%;
        min-width: 220px;
    }

    .compare-table tbody td:not(:first-child) {
        width: 18.66%;
        min-width: 95px;
    }

    .mark {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .compare-table {
        min-width: 560px;
    }

    .compare-table th,
    .compare-table td {
        padding: 9px 8px;
    }

    .compare-table thead th {
        font-size: 13px;
    }

    .compare-table tbody td:first-child {
        font-size: 13px;
        line-height: 1.25;
        min-width: 200px;
    }

    .compare-table tbody td:not(:first-child) {
        min-width: 86px;
    }

    .mark {
        font-size: 20px;
    }
}
/*  */
.fb-reviews {
    max-width: 370px;
    width: 100%;
    margin: 32px auto;
}

.fb-review-card {
    background: #ffffff;
    border: 1px solid #dcdfe3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.fb-review-card + .fb-review-card {
    margin-top: 22px;
}

.fb-review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px 10px;
}

.fb-review-user {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.fb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fb-user-meta {
    min-width: 0;
}

.fb-user-name {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    color: #1d3f8f;
    font-family: Arial, sans-serif;
}

.fb-user-submeta {
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    line-height: 1.2;
    color: #65676b;
    font-family: Arial, sans-serif;
}

.fb-dot {
    font-size: 12px;
    line-height: 1;
}

.fb-globe {
    font-size: 12px;
    line-height: 1;
}

.fb-more {
    border: 0;
    background: transparent;
    color: #65676b;
    font-size: 18px;
    line-height: 1;
    cursor: default;
    padding: 2px 4px;
    flex-shrink: 0;
}

.fb-review-body {
    padding: 0 12px 12px;
}

.fb-review-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #050505;
    font-family: Arial, sans-serif;
}

.fb-review-media {
    background: #f1f2f4;
}

.fb-review-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.fb-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px 12px;
    font-size: 14px;
    line-height: 1.2;
    color: #65676b;
    font-family: Arial, sans-serif;
}

.fb-reactions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-reaction-icons {
    display: flex;
    align-items: center;
}

.fb-reaction-icons span {
    width: 18px;
    height: 18px;
    margin-left: -3px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: #fff;
}

.fb-reaction-icons span:first-child {
    margin-left: 0;
}

.fb-count,
.fb-comments {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fb-reviews {
        max-width: 100%;
        margin: 24px auto;
    }

    .fb-review-card + .fb-review-card {
        margin-top: 18px;
    }

    .fb-review-body p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .fb-review-head {
        padding: 10px 10px 8px;
    }

    .fb-review-body {
        padding: 0 10px 10px;
    }

    .fb-review-footer {
        padding: 9px 10px 10px;
        font-size: 13px;
    }

    .fb-avatar {
        width: 34px;
        height: 34px;
    }

    .fb-user-name {
        font-size: 14px;
    }

    .fb-user-submeta {
        font-size: 12px;
    }

    .fb-review-body p {
        font-size: 14px;
        line-height: 1.42;
    }
}



@media (max-width: 991px) {
    .fb-reviews {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .fb-reviews {
        grid-template-columns: 1fr;
    }
}
/*  */
