:root {
    --primary-color: #35a763;
    --primary-dark: #285540;
    --text-color: #000000;
    --text-light: #ffffff;
    --bg-light: #f4f4f4;
    --bg-dark: #051e22;
    --gray-100: #d9d9d9;
    --gray-200: #8a8a8a;
    --font-main: 'Liberation Sans', sans-serif;
    --container-width: 1320px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-main), serif;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--bg-light) url("/img/bkg.png") no-repeat center top;
    background-size: 100% auto;
}

.main-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

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

a:hover {
    text-decoration: underline;
}

.center {
    text-align: center;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: white;
}

.btn-outline {
    border: 1px solid var(--primary-dark);
    color: #fff;
}

.btn-bkg-green-short {
    background: url('/img/button-bkg-green-short.png') no-repeat center center;
    background-size: 100% 100%;
}

.btn-bkg-green {
    background: url('/img/button-bkg-green.png') no-repeat center center;
    background-size: 100% 100%;
}

.btn-bkg-blue {
    background: url('/img/button-bkg-blue.png') no-repeat center center;
    background-size: 100% 100%;
}

.btn-bkg-red {
    background: url('/img/button-bkg-red.png') no-repeat center center;
    background-size: 100% 100%;
}

.section-title {
    font-size: 0;
    margin-bottom: 40px;
    text-align: center;
}

.section-title-image {
    max-width: min(100%, 620px);
    margin: 0 auto;
}

.header-section {
    padding: 24px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 68px;
    height: 68px;
    background-image: url("/img/logo.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-image {
    width: 164px;
    height: auto;
}

.tagline {
    font-size: clamp(10px, 0.7vw, 14px);
    color: #000;
}

.main-nav ul {
    display: flex;
    gap: clamp(22px, 1.8vw, 44px);
}

.main-nav a {
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(14px, 0.75vw, 15px);
}

.header-actions-organization {
    font-size: clamp(11px, 0.74vw, 14px);
    color: #314540;
    font-style: italic;
    width: 100%;
}

.login-link {
    font-weight: 500;
}

.btn-sm {
    padding: 10px 20px;
    font-size: clamp(13px, 0.88vw, 17px);
}

.header-user-panel {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(40, 85, 64, 0.18);
    backdrop-filter: blur(4px);
}

.header-user-name {
    font-size: clamp(14px, 0.75vw, 18px);
    font-weight: 700;
    color: #10382f;
    white-space: nowrap;
}

.header-cabinet-btn {
    border: 1px solid #285540;
    color: #ffffff;
    background: linear-gradient(90deg, #10352c 0%, #2f6f52 100%);
    font-weight: 600;
    padding: 6px 13px;
    font-size: clamp(9px, 0.56vw, 11px);
}

a.header-cabinet-btn {
    text-decoration: none;
}

.header-logout-btn {
    border: 1px solid #c3cad3;
    color: #4b5563;
    background: #eef1f4;
    font-weight: 600;
}

.header-guest-start-btn {
    border: 1px solid #c3cad3;
    color: #4b5563;
    background: #eef1f4;
    font-weight: 600;
    padding: 6px 13px;
    font-size: clamp(9px, 0.56vw, 11px);
}

.header-cabinet-btn:hover {
    filter: brightness(1.04);
}

.header-logout-btn:hover,
.header-guest-start-btn:hover {
    background: #e3e8ee;
    color: #374151;
}

.header-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 54px;
    width: auto;
    padding: 7px 11px;
}

.header-logout-icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

a.header-guest-start-btn {
    text-decoration: none;
}

@media (min-width: 993px) {
    .header-actions {
        font-size: 15px;
    }

    .header-actions-organization {
        font-size: 14px;
    }

    .btn-sm {
        font-size: 17px;
    }

    .header-user-name {
        font-size: 15px;
    }

    .header-cabinet-btn,
    .header-guest-start-btn {
        font-size: 11px;
        min-height: 34px;
    }

    .header-logout-btn {
        min-width: 54px;
        width: auto;
        height: 34px;
    }
}

@media (max-width: 1200px) {
    .header-user-panel {
        justify-content: center;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .header-section {
        padding: 18px 0;
    }

    .site-header {
        flex-wrap: wrap;
        row-gap: 14px;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        justify-content: center;
        gap: 24px;
    }

    .main-nav a {
        font-size: 17px;
    }

    .header-actions {
        margin-left: auto;
    }

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

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

    .tariff-card.featured {
        transform: scale(1);
    }

    .tariffs-more-warn {
        font-size: 20px;
    }

    .rss-service-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .rss-service-head p {
        font-size: 17px;
    }

    .rss-service-card li {
        font-size: 15px;
        line-height: 1.5;
    }

    .workflow-intro {
        font-size: 16px;
    }

    .workflow-card p {
        font-size: 16px;
    }

    .price-market-hero .target-market-copy p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .price-market-actions .btn {
        min-height: 56px;
        font-size: 18px;
    }

    .price-market-actions .target-market-text-link {
        font-size: 1.1rem;
    }
}

@media (max-width: 1366px) and (min-width: 1201px) {
    .site-header {
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        justify-content: center;
        gap: 26px;
    }

    .header-actions {
        margin-left: auto;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .workflow-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .workflow-card-lead {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .main-wrapper {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .site-header,
    .hero-container,
    .target-market-hero-inner,
    .price-market-hero-inner,
    .features-grid,
    .tariffs-grid,
    .workflow-grid,
    .workflow-metrics,
    .rss-service-metrics,
    .rss-service-layout,
    .contacts-page-layout {
        min-width: 0;
    }

    .site-header > *,
    .hero-container > *,
    .target-market-hero-inner > *,
    .price-market-hero-inner > *,
    .features-grid > *,
    .tariffs-grid > *,
    .workflow-grid > *,
    .rss-service-layout > *,
    .contacts-page-layout > * {
        min-width: 0;
    }

    .docs-legal-card p,
    .docs-legal-card li,
    .docs-single-card p,
    .contacts-meta-value,
    .target-market-row p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.hero-section {
    position: relative;
    padding: 42px 0 90px;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    width: 100%;
}

.hero-content {
    max-width: 560px;
    position: relative;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-image {
    width: 100%;
    max-width: 532px;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px;
    color: #3b3b3b;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.btn-link {
    text-decoration: underline;
    color: #333;
    font-size: 17px;
}

.other-services-card {
    background: url("/img/green-block2.png");
    background-size: cover;
    color: white;
    padding: 24px;
    border-radius: 2px;
    max-width: 365px;
    position: relative;
}

.certificate-card {
    background: url("/img/green-block3.png");
    background-size: cover;
    color: white;
    padding: 28px 24px 24px;
    border-radius: 2px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.green-block-0 {
    background: url("/img/green-block0.png");
    background-size: cover;
}

.green-block-1 {
    background: url("/img/green-block1.png");
    background-size: cover;
}

.green-block-2 {
    background: url("/img/green-block2.png");
    background-size: cover;
}

.green-block-3 {
    background: url("/img/green-block3.png");
    background-size: cover;
}

.certificate-card h3,
.other-services-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.05;
    text-transform: uppercase;
}

.os-list li {
    padding: 8px 0;
    font-size: 14px;
}

.os-list li::before {
    content: "•";
    margin-right: 10px;
}

.certificate-card p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
    opacity: 0.9;
}

.certificate-card p.center {
    text-align: center;
}

.certificate-card p.center .hero-title-image {
    width: auto;
    margin: 0 auto;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: black;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.btn-arrow img {
    width: 14px;
    height: 14px;
}

.social-sidebar {
    position: absolute;
    left: -66px;
    top: 234px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.social-wa {
    color: #36c76c;
}

.social-tg {
    color: #3d9be9;
}

.social-mail {
    color: #333;
}

@media (max-width: 1500px) and (min-width: 993px) {
    .hero-content {
        padding-left: 54px;
    }

    .social-sidebar {
        left: 0;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image-block {
        min-width: 0;
    }

    .certificate-card p.center .hero-title-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .social-sidebar {
        display: none;
    }
}

.features-section {
    padding: 98px 0 78px;
}

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

.feature-card {
    border: 1px solid #e5e5e5;
    padding: 28px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    /*min-height: 525px;*/
}

.feature-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.2;
    min-height: 50px;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.55;
    color: #555;
    margin-bottom: 22px;
    flex-grow: 1;
}

.feature-tag {
    color: #fff;
    padding: 13px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: auto;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.legality-section {
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url("/img/legality-bg.png");
    background-size: 100% 100%;
}

.legality-link {
    color: #fff;
}

.legality-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.legality-text h2 {
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.05;
    text-transform: uppercase;
}

.legality-text p {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 16px;
    opacity: 0.9;
}

.legality-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.legality-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.check-item span {
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .legality-container {
        grid-template-columns: 1fr;
    }
}

.update-section {
    padding: 92px 0 74px;
}

.update-card {
    display: flex;
    gap: 28px;
    border: 1px solid #eee;
    padding: 18px;
    background: #fff;
}

.update-image {
    flex: 0 0 355px;
}

.update-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.update-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.update-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.update-header h3 {
    font-size: 24px;
    text-transform: uppercase;
}

.update-date {
    font-size: 22px;
    font-weight: 700;
    color: #2b2b2b;
}

.update-body h4 {
    margin-bottom: 12px;
    font-size: 16px;
    text-transform: uppercase;
    color: #555;
}

.update-body p {
    line-height: 1.45;
    font-size: 14px;
    color: #333;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .update-card {
        flex-direction: column;
    }
    .update-image {
        flex: auto;
    }
}

.tariffs-section {
    padding: 76px 0 84px;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: center;
}

.tariff-card {
    color: #fff;
    padding: 28px 22px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 620px;
}

.tariff-card.featured {
    background: #1c4936;
    color: white;
    padding: 40px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.06);
    z-index: 2;
}

.tariff-card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.05;
}

.tariff-desc {
    font-size: 16px;
    line-height: 1.5;
    min-height: 124px;
}

.price {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
}

.tariff-features {
    margin: 16px 0;
    font-size: 16px;
    line-height: 1.7;
}

.tariff-card.featured .btn-outline {
    border-color: white;
    color: white;
}

.tariff-card .btn {
    margin-top: auto;
    min-height: 56px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid rgba(18, 51, 41, 0.9);
    background: rgba(250, 250, 250, 0.93);
    color: #174234;
    text-shadow: none;
    box-shadow: 0 6px 16px rgba(6, 20, 16, 0.18);
}

.tariff-card a.btn {
    text-decoration: none;
}

.tariff-card a.btn:hover {
    color: #0e251e;
}

.tariff-card.featured .btn {
    border-color: #dce9e2;
}

.tariffs-more {
    margin-top: 40px;
    text-align: center;
}

.tariffs-more-warn {
    margin: 7px 0 15px 0;
    font-size: clamp(17px, 0.95vw, 20px);
    line-height: 1.35;
    color: #1f3a32;
}

.tariffs-more-link {
    text-decoration: underline;
    font-size: clamp(16px, 1vw, 24px);
    font-weight: 500;
    color: #1b362f;
}

a.tariffs-more-link:hover {
  text-decoration: none;
}

.price-page .tariffs-more-link {
    display: none;
}

.rss-service-section {
    padding: 22px 0 84px;
}

.rss-service-head {
    margin-bottom: 22px;
}

.rss-service-head h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 2.1vw, 42px);
    line-height: 1.02;
    text-transform: uppercase;
    color: #13392e;
}

.rss-service-head p {
    margin: 0;
    font-size: clamp(16px, 0.95vw, 18px);
    line-height: 1.55;
    color: #2f3f3a;
    background: #fff;
    width: 100%;
    padding: 10px;
}

.rss-service-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.rss-metric {
    border: 1px solid #d8e5df;
    background: #f8fcfa;
    padding: 14px 16px;
}

.rss-metric-value {
    font-size: clamp(24px, 1.75vw, 34px);
    font-weight: 700;
    line-height: 1;
    color: #1c5340;
    margin-bottom: 5px;
}

.rss-metric-label {
    font-size: clamp(12px, 0.78vw, 15px);
    color: #395148;
}

.rss-service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.rss-service-card {
    background: #ffffff;
    border: 1px solid #e6ece9;
    box-shadow: 0 4px 16px rgba(8, 30, 23, 0.08);
    padding: 20px;
}

.rss-service-card h3 {
    margin: 0 0 10px;
    font-size: clamp(20px, 1.35vw, 29px);
    color: #163f32;
    text-transform: uppercase;
}

.rss-service-card ul {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.rss-service-card li {
    margin: 0 0 8px;
    font-size: clamp(13px, 0.84vw, 16px);
    line-height: 1.45;
    color: #2c3d37;
}

.rss-service-card li::before {
    content: "✓";
    color: #1d5b45;
    margin-right: 8px;
    font-weight: 700;
}

.rss-service-card img {
    width: 100%;
    height: auto;
    border: 1px solid #d9e4df;
}

.rss-service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.rss-service-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #d9e4df;
}

.rss-service-bottom {
    border: 1px solid #dbe8e2;
    background: linear-gradient(180deg, #f4fbf8 0%, #eef8f3 100%);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
}

.rss-service-note h3 {
    margin: 0 0 8px;
    font-size: clamp(18px, 1.2vw, 26px);
    color: #173f32;
    text-transform: uppercase;
}

.rss-service-note p {
    margin: 0 0 8px;
    font-size: clamp(13px, 0.82vw, 16px);
    line-height: 1.45;
    color: #2d3f39;
    max-width: 890px;
}

.rss-service-note p:last-child {
    margin-bottom: 0;
}

.rss-service-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.rss-service-actions .btn {
    min-height: 42px;
    padding: 9px 16px;
    font-size: clamp(10px, 0.65vw, 13px);
}

.rss-demo-btn {
    letter-spacing: 0.1px;
}

.price-db-access {
    padding: 0 0 84px;
}

.price-db-access-card {
    border: 1px solid #d7e5df;
    box-shadow: 0 12px 28px rgba(11, 41, 32, 0.1);
    padding: 26px 28px;
}

.price-db-access-card h3 {
    margin: 0 0 8px;
    font-size: clamp(18px, 1.2vw, 26px);
    color: #173f32;
    text-transform: uppercase;
}

.price-db-access-card p {
    margin: 0;
    color: #2a3c35;
    font-size: clamp(14px, 0.9vw, 17px);
    line-height: 1.58;
}

@media (max-width: 992px) {
    .rss-service-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .rss-service-layout {
        grid-template-columns: 1fr;
    }

    .rss-service-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-db-access-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .rss-service-gallery {
        grid-template-columns: 1fr;
    }

    .rss-service-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .tariffs-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .tariff-card.featured {
        transform: scale(1);
    }
}

.target-section {
    background: url("/img/target-bg.png");
    background-size: 100% 100%;
    color: white;
    padding: 84px 0;
}

.target-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.target-image {
    position: relative;
}

.target-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
}

.target-photo {
    width: 100%;
    border-radius: 1px;
}

.target-photo-left {
    margin-top: 74px;
    transform: translateY(20px);
}

.target-photo-right {
    margin-top: -70px;
    transform: translateY(-20px);
}

.target-overlay-text {
    position: absolute;
    bottom: 18px;
    right: 20px;
    background: white;
    color: black;
    padding: 11px 20px 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.target-overlay-text img {
    width: 202px;
    height: auto;
}

.target-content h3 {
    font-size: 16px;
    opacity: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.target-content h2 {
    font-size: 21px;
    margin-bottom: 20px;
    line-height: 1.05;
    text-transform: uppercase;
}

.target-content p {
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.target-link {
    color: white;
    font-size: clamp(12px, 1.35vw, 15px);
    text-underline-offset: 4px;
}

a.target-link:hover {
    text-decoration: none;
}

.target-buttons .btn-primary {
    min-height: 56px;
    font-size: clamp(12px, 1.05vw, 15px);
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 2px solid rgba(22, 57, 46, 0.62);
    color: #14372d;
    background-color: rgba(246, 250, 248, 0.95);
    background-image: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.target-buttons a.btn-primary:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .target-container {
        grid-template-columns: 1fr;
    }
    .target-overlay-text {
        right: 0;
        bottom: 0;
    }
}

.workflow-section {
    padding: 74px 0 62px;
}

.workflow-title {
    margin: 0 0 10px;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.02;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #163d31;
}

.workflow-intro {
    margin: 0 0 28px;
    font-size: clamp(14px, 0.95vw, 18px);
    color: #2d3f39;
    max-width: 780px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.workflow-card {
    background: #ffffff;
    border: 1px solid #e6ece9;
    box-shadow: 0 4px 16px rgba(8, 30, 23, 0.08);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.workflow-card-lead {
    background: linear-gradient(180deg, #f5fbf8 0%, #ecf6f1 100%);
    border-color: rgba(40, 85, 64, 0.24);
}

.workflow-card-stage {
    background: linear-gradient(180deg, #1f5b45 0%, #184938 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: #f2f8f5;
}

.workflow-card-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.16), transparent 42%);
    pointer-events: none;
}

.workflow-step {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1f5a44;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px #999 solid;
}

.workflow-card h3 {
    margin: 0;
    color: #173f32;
    font-size: 18px;
    line-height: 1.12;
    min-height: calc(1.12em * 2);
    display: flex;
    align-items: flex-start;
}

.workflow-card-stage h3 {
    color: #ffffff;
}

.workflow-card p {
    margin: 0;
    color: #2e3d38;
    font-size: 15px;
    line-height: 1.45;
}

.workflow-card-stage p {
    color: rgba(242, 248, 245, 0.95);
}

.workflow-card p a {
    color: #1f5a44;
    text-decoration: underline;
}

.workflow-actions {
    margin-top: auto;
    display: flex;
    gap: 14px;
    align-items: center;
}

.workflow-actions a.btn-primary:hover {
    text-decoration: none;
}

.workflow-actions a.workflow-link {
    text-decoration: none;
}

.workflow-link {
    color: #1c4a39;
    font-size: 18px;
}

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

.workflow-metric {
    border: 1px solid #dbe7e2;
    background: #f8fcfa;
    padding: 14px 16px;
}

.workflow-metric-value {
    font-size: clamp(22px, 1.6vw, 30px);
    line-height: 1;
    font-weight: 700;
    color: #1a4d3b;
    margin-bottom: 6px;
}

.workflow-metric-label {
    font-size: clamp(12px, 0.8vw, 15px);
    color: #3b534b;
}

@media (max-width: 1200px) {
    .workflow-grid {
        grid-template-columns: 1fr 1fr;
    }

    .workflow-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-metrics {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    padding: 74px 0 62px;
}

.testimonials-tree {
    position: relative;
    height: 700px;
    max-width: 1520px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 22px;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 564px;
    position: absolute;
    z-index: 2;
    border: 1px solid #ececec;
}

.t-header {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.t-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
}

.t-name {
    font-weight: 700;
    font-size: 24px;
}

.t-role {
    font-size: 16px;
    color: #666;
}

.t-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.t-stars {
    color: #f5b40b;
    font-size: 24px;
}

/* Positioning based on visual tree */
.t-1 {
    top: 70px;
    left: 24px;
}
.t-2 {
    top: 250px;
    right: 24px;
}
.t-3 {
    top: 430px;
    left: 154px;
}

@media (max-width: 768px) {
    .testimonials-tree {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .testimonial-card {
        position: static;
        width: 100%;
    }
}

@media (max-width: 1500px) {
    .testimonials-tree {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .testimonial-card {
        position: static;
        width: min(100%, 760px);
    }
}

.clients-section {
    padding: 54px 0 70px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.client-logo {
    background: #d9d9d9;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
}

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

.site-footer {
    background: linear-gradient(90deg, #051e22 0%, #1c4936 100%);
    color: white;
    padding: 48px 0;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 26px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand-text {
    font-size: 21px;
    letter-spacing: 0.6px;
    color: #ffffff;
    line-height: 1;
}

.tagline-sm {
    font-size: clamp(12px, 0.9vw, 16px);
    color: #f3f3f3;
}

.footer-links-group a,
.footer-col a {
    color: #d8d8d8;
    font-size: 12px;
    text-decoration: none;
}

.footer-links-group a:hover,
.footer-col a:hover {
    color: white;
}

.footer-col h4 {
    margin: 0 0 4px;
    font-size: 13px;
    text-decoration: underline;
    color: #fff;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.footer-login {
    background: transparent;
    border: 1px solid #d1d1d1;
    color: #fff;
    min-width: 78px;
}

.footer-start {
    color: #fff;
    text-decoration: none;
    padding-left: 6px;
    padding-right: 6px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}

@media (min-width: 1600px) {
    :root {
        --container-width: 1560px;
    }

    .header-section {
        padding: 28px 0;
    }

    .features-grid {
        gap: 36px;
    }
}

.about-market {
    background: #f4f4f4;
    color: #102d25;
}

.about-market-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    background-color: #102d25;
    background-image:
            linear-gradient(90deg, rgba(7, 29, 23, 0.96) 0%, rgba(12, 45, 35, 0.86) 52%, rgba(12, 45, 35, 0.3) 100%),
            url("/img/target-photo-right.png");
    background-size: cover;
    background-position: center right;
    color: #ffffff;
}

.about-market-hero-inner {
    display: grid;
    grid-template-columns: minmax(720px, 860px) minmax(260px, 320px);
    justify-content: space-between;
    gap: 34px;
    align-items: start;
    padding-top: 72px;
    padding-bottom: 58px;
}

.about-market-copy {
    width: 100%;
    max-width: 860px;
    min-height: 196px;
}

.about-market-label {
    display: inline-block;
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 2px solid #78c49f;
    color: #cfeee0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-market h1 {
    margin: 0;
    max-width: 920px;
    font-size: 3.28rem;
    line-height: 0.98;
    color: #ffffff;
    text-transform: uppercase;
}

.about-market-copy p {
    margin: 22px 0 0;
    max-width: 790px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    line-height: 1.58;
}

.about-market-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-market-text-link {
    color: #ffffff;
    font-size: 1.05rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.about-market-proof {
    display: grid;
    width: 100%;
    max-width: 320px;
    min-height: 196px;
    gap: 10px;
    align-self: start;
    align-content: start;
}

.about-market-proof div {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.about-market-proof strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1.85rem;
    line-height: 1;
    color: #ffffff;
}

.about-market-proof span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
}

.about-market-intro {
    padding: 54px 0 46px;
    background: #f4f4f4;
}

.about-market-intro-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    padding-bottom: 34px;
}

.about-market-intro-block span,
.about-market-principles span {
    display: block;
    margin-bottom: 12px;
    color: #2f6f52;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
}

.about-market-intro-block h2,
.about-market-principles h2,
.about-market-final h2 {
    margin: 0;
    color: #102d25;
    font-size: 2.3rem;
    line-height: 1.04;
    text-transform: uppercase;
}

.about-market-intro-block p {
    margin: 18px 0 0;
    max-width: 940px;
    color: #273b34;
    /*font-size: 1.08rem;*/
    font-size: 15px;
    line-height: 1.6;
}

.about-market-work {
    padding: 0 0 42px;
    background: #f4f4f4;
}

.about-market-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0;
    border-top: 1px solid #cfded7;
}

.about-market-row-last {
    border-bottom: 1px solid #cfded7;
    margin-bottom: 50px;
}

.about-market-num {
    color: #2f6f52;
    font-size: 3.5rem;
    line-height: 0.9;
    font-weight: 700;
}

.about-market-row-main {
    max-width: 980px;
}

.about-market-row h3 {
    margin: 0 0 12px;
    color: #14372d;
    font-size: 2rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.about-market-row p {
    margin: 0;
    color: #273b34;
    /*font-size: 1.04rem;*/
    font-size: 15px;
    line-height: 1.58;
}

.about-market-principles {
    padding: 52px 0 58px;
    background: #ffffff;
}

.about-market-principles-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: start;
}

.about-market-principles h2 {
    margin-top: 12px;
    max-width: 720px;
}

.about-market-principles-list {
    /*border-top: 1px solid #cfded7;*/
}

.about-market-principles-list p {
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid #cfded7;
    color: #273b34;
    /*font-size: 1.05rem;*/
    font-size: 14px;
    line-height: 1.58;
}

.about-market-principles-list p.last {
    border-bottom: none;
}

h2.about-market-principles-title {
    margin-top: 50px;
    text-align: center;
}

.about-market-final {
    padding: 54px 0 82px;
    background: #102d25;
    color: #ffffff;
}

.about-market-final-inner {
    max-width: 980px;
}

.about-market-final h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 2.55rem;
    text-transform: none;
}

.about-market-final p {
    margin: 0 0 24px;
    max-width: 850px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.56;
}

@media (max-width: 1100px) {
    .about-market-hero-inner,
    .about-market-principles-inner {
        grid-template-columns: 1fr;
        justify-content: initial;
    }

    .about-market-proof {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        min-height: 0;
    }

    .about-market h1 {
        font-size: 2.65rem;
    }

    .about-market-copy {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .about-market-hero {
        min-height: auto;
        background-position: center;
    }

    .about-market-hero-inner {
        padding-top: 46px;
        padding-bottom: 42px;
    }

    .about-market h1 {
        font-size: 2.05rem;
    }

    .about-market-copy p,
    .about-market-row p,
    .about-market-final p,
    .about-market-principles-list p,
    .about-market-intro-block p {
        font-size: 2rem;
        line-height: 1.45;
    }

    .about-market-actions,
    .about-market-proof,
    .about-market-intro-inner,
    .about-market-row {
        grid-template-columns: 1fr;
    }

    .about-market-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-market-row {
        gap: 12px;
        padding: 26px 0;
    }

    .about-market-num {
        font-size: 2.5rem;
    }

    .about-market-row h3,
    .about-market-intro-block h2,
    .about-market-principles h2,
    .about-market-final h2 {
        font-size: 1.65rem;
    }
}
.target-market {
    background: #f4f4f4;
}

.target-market-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    background-color: #102d25;
    background-image:
            linear-gradient(90deg, rgba(7, 29, 23, 0.95) 0%, rgba(12, 45, 35, 0.82) 52%, rgba(12, 45, 35, 0.28) 100%),
            url("/img/target-photo-right.png");
    background-size: cover;
    background-position: center right;
    color: #ffffff;
}

.target-market-hero-inner {
    display: grid;
    grid-template-columns: minmax(720px, 860px) minmax(260px, 320px);
    justify-content: space-between;
    gap: 34px;
    align-items: start;
    padding-top: 72px;
    padding-bottom: 58px;
}

.target-market-copy {
    width: 100%;
    max-width: 860px;
    min-height: 196px;
}

.target-market-label {
    display: inline-block;
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 2px solid #78c49f;
    color: #cfeee0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.target-market h1 {
    margin: 0;
    max-width: 860px;
    font-size: 3.35rem;
    line-height: 0.98;
    color: #ffffff;
    text-transform: uppercase;
}

.target-market-copy p {
    margin: 22px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    line-height: 1.58;
}

.target-market-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.target-market-text-link {
    color: #ffffff;
    font-size: 1.05rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.target-market-proof {
    display: grid;
    width: 100%;
    max-width: 320px;
    min-height: 196px;
    gap: 10px;
    align-self: start;
    align-content: start;
}

.target-market-proof div {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.target-market-proof strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1.85rem;
    line-height: 1;
    color: #ffffff;
}

.target-market-proof span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
}

.target-market-image-brief {
    padding: 18px 0 8px;
}

.target-market-brief-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.target-market-brief-inner div {
    padding: 14px 16px;
    background: #ffffff;
    border-left: 4px solid #2f6f52;
    box-shadow: 0 4px 14px rgba(8, 30, 23, 0.06);
}

.target-market-brief-inner b {
    display: block;
    margin-bottom: 6px;
    color: #173f32;
    font-size: 1rem;
    text-transform: uppercase;
}

.target-market-brief-inner span {
    display: block;
    color: #30463e;
    font-size: 1.2rem;
    line-height: 1.45;
}

.target-market-brief-inner code {
    color: #0f3c2e;
    background: #edf6f2;
    padding: 2px 5px;
}

.target-market-audiences {
    padding: 44px 0 26px;
}

.target-market-section-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 22px;
}

.target-market-section-head span {
    color: #2f6f52;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
}

.target-market-section-head h2 {
    margin: 0;
    max-width: 940px;
    color: #102d25;
    font-size: 2.3rem;
    line-height: 1.04;
    text-transform: uppercase;
}

.target-market-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0;
    border-top: 1px solid #cfded7;
}

.target-market-row-dark {
    margin-left: calc((100vw - min(var(--container-width), 100vw)) / -2);
    margin-right: calc((100vw - min(var(--container-width), 100vw)) / -2);
    padding-left: calc((100vw - min(var(--container-width), 100vw)) / 2);
    padding-right: calc((100vw - min(var(--container-width), 100vw)) / 2);
    background: #163b30;
    border-top: 0;
    color: #ffffff;
}

.target-market-num {
    color: #2f6f52;
    font-size: 3.5rem;
    line-height: 0.9;
    font-weight: 700;
}

.target-market-row-dark .target-market-num {
    color: #9bd7b8;
}

.target-market-row-main {
    max-width: 980px;
}

.target-market-row h3 {
    margin: 0 0 12px;
    color: #14372d;
    font-size: 2rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.target-market-row-dark h3 {
    color: #ffffff;
}

.target-market-row p {
    margin: 0;
    color: #273b34;
    font-size: 15px;
    line-height: 1.58;
}

.target-market-row-dark p {
    color: rgba(255, 255, 255, 0.9);
}

.target-market-pain {
    margin-bottom: 10px !important;
    color: #1f5a44 !important;
    font-weight: 700;
}

.target-market-row-dark .target-market-pain {
    color: #b8ead0 !important;
}

.target-market-final {
    padding: 54px 0 82px;
    background: #eef5f1;
    color: #102d25;
}

.target-market-final-inner {
    max-width: 980px;
}

.target-market-final h2 {
    margin: 0 0 16px;
    font-size: 2.55rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.target-market-final p {
    margin: 0 0 24px;
    max-width: 850px;
    color: #2d453d;
    font-size: 1.08rem;
    line-height: 1.56;
}

.price-market-hero {
    min-height: 200px;
}

.price-market-hero-inner {
    grid-template-columns: minmax(720px, 860px) minmax(260px, 320px);
    justify-content: space-between;
    gap: 22px;
    align-items: start;
    padding-top: 24px;
    padding-bottom: 24px;
}

.price-market-hero .target-market-copy {
    width: 100%;
    max-width: 860px;
    min-height: 146px;
}

.price-market-hero .target-market-label {
    margin-bottom: 8px;
    padding-bottom: 4px;
    font-size: 0.82rem;
}

.price-market-hero h1 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 0.98;
}

.price-market-hero .target-market-copy p {
    margin-top: 12px;
    max-width: 900px;
    font-size: 1rem;
    line-height: 1.45;
}

.price-market-actions {
    margin-top: 16px;
}

.price-market-proof {
    width: 100%;
    max-width: 320px;
    min-height: 146px;
    align-self: start;
    align-content: start;
    gap: 8px;
}

.price-market-proof div {
    padding: 10px 12px;
}

.price-market-proof strong {
    font-size: 1.02rem;
}

.price-market-proof span {
    font-size: 0.9rem;
}

@media (max-width: 1919px) and (min-width: 1200px) {
    .price-market-hero .target-market-label {
        font-size: 0.92rem;
    }

    .price-market-hero h1 {
        font-size: 2.55rem;
    }

    .price-market-hero .target-market-copy p {
        font-size: 1.2rem;
        line-height: 1.56;
    }

    .price-market-proof strong {
        font-size: 1.15rem;
    }

    .price-market-proof span {
        font-size: 1rem;
    }

    .price-page .tariff-card h3 {
        font-size: 23px;
    }

    .price-page .price-market-actions .btn {
        min-height: 60px;
        padding: 14px 28px;
        font-size: 20px;
    }

    .price-page .price-market-actions .target-market-text-link {
        font-size: 1.18rem;
    }

    .price-page .tariff-desc {
        font-size: 18px;
    }

    .price-page .price {
        font-size: 38px;
    }

    .price-page .price span {
        font-size: 18px;
    }

    .price-page .tariff-features {
        font-size: 18px;
        line-height: 1.75;
    }

    .price-page .tariff-card .btn {
        font-size: 19px;
    }

    .price-page .tariffs-more-warn {
        font-size: 22px;
    }

    .price-page .rss-service-head h2 {
        font-size: 42px;
    }

    .price-page .rss-service-head p {
        font-size: 19px;
    }

    .price-page .rss-service-card h3 {
        font-size: 32px;
    }

    .price-page .rss-service-card li {
        font-size: 17px;
        line-height: 1.5;
    }

    .price-page .rss-service-note h3,
    .price-page .price-db-access-card h3 {
        font-size: 30px;
    }

    .price-page .rss-service-note p,
    .price-page .price-db-access-card p {
        font-size: 17px;
        line-height: 1.55;
    }

    .price-page .rss-service-actions .btn {
        font-size: 14px;
    }
}

@media (max-width: 1100px) {
    .target-market-hero-inner {
        grid-template-columns: 1fr;
        justify-content: initial;
    }

    .price-market-hero-inner {
        grid-template-columns: 1fr;
        justify-content: initial;
    }

    .target-market-proof {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        min-height: 0;
    }

    .price-market-proof {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        min-height: 0;
    }

    .target-market h1 {
        font-size: 2.65rem;
    }

    .target-market-copy {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .target-market-hero {
        min-height: auto;
        background-position: center;
    }

    .price-market-hero {
        min-height: 200px;
    }

    .target-market-hero-inner {
        padding-top: 46px;
        padding-bottom: 42px;
    }

    .price-market-hero-inner {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .price-market-hero .target-market-copy {
        min-height: 0;
    }

    .target-market h1 {
        font-size: 2.05rem;
    }

    .price-market-hero h1 {
        font-size: 1.62rem;
    }

    .price-market-actions {
        margin-top: 14px;
    }

    .price-market-proof {
        grid-template-columns: 1fr;
    }

    .target-market-copy p,
    .target-market-row p,
    .target-market-final p {
        font-size: 2rem;
        line-height: 1.45;
    }

    .target-market-actions,
    .target-market-brief-inner,
    .target-market-proof,
    .target-market-section-head,
    .target-market-row {
        grid-template-columns: 1fr;
    }

    .target-market-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .target-market-row {
        gap: 12px;
        padding: 26px 14px;
    }

    .target-market-row-dark {
        padding-left: max(14px, calc((100vw - min(var(--container-width), 100vw)) / 2 + 14px));
        padding-right: max(14px, calc((100vw - min(var(--container-width), 100vw)) / 2 + 14px));
    }

    .target-market-num {
        font-size: 2.5rem;
    }

    .target-market-row h3,
    .target-market-section-head h2,
    .target-market-final h2 {
        font-size: 1.65rem;
    }
}

.contacts-page-section {
    padding: 36px 0 84px;
}

.contacts-page .contacts-page-section {
    padding-top: 24px;
}

.contacts-page-title {
    text-align: center;
    font-size: clamp(28px, 2.1vw, 39px);
    line-height: 1.02;
    color: #245847;
    margin-bottom: 34px;
    text-transform: uppercase;
}

.contacts-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.contacts-tariffs-lite {
    padding: 18px 0 64px;
}

.contacts-tariffs-lite-title {
    margin: 0;
    text-align: center;
    color: #245847;
    font-size: clamp(28px, 2.1vw, 39px);
    line-height: 1.02;
    text-transform: uppercase;
}

.contacts-tariffs-lite-intro {
    margin: 12px auto 0;
    max-width: 760px;
    text-align: center;
    color: #253530;
    font-size: 1rem;
    line-height: 1.45;
}

.contacts-tariffs-lite-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.contacts-tariffs-lite-card {
    padding: 22px 18px;
    color: #fff;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
}

.contacts-tariffs-lite-card-featured {
    background: linear-gradient(180deg, #245847 0%, #1e4b3d 100%);
}

.contacts-tariffs-lite-card h3 {
    margin: 0;
    font-size: 1.34rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.contacts-tariffs-lite-price {
    margin-top: 12px;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.1;
}

.contacts-tariffs-lite-price span {
    font-size: 0.92rem;
    font-weight: 400;
    opacity: 0.95;
}

.contacts-tariffs-lite-card ul {
    margin: 14px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.contacts-tariffs-lite-card li {
    font-size: 0.95rem;
    line-height: 1.38;
}

.contacts-tariffs-lite-note {
    margin-top: 16px;
    text-align: center;
    color: #000;
    font-size: 1.1rem;
    font-weight: bold;
}

.contacts-channel-card {
    color: white;
    height: 520px;
    padding: 30px 28px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.contacts-channel-card h2 {
    text-align: center;
    font-size: clamp(18px, 1.7vw, 25px);
    line-height: 1.02;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.contacts-channel-root {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    gap: 16px;
}

.contacts-channel-plate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
    gap: 14px;
    align-items: center;
}

.contacts-channel-gate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto 0;
}

.contacts-channel-plate p {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(13px, 0.9vw, 16px);
    line-height: 1.45;
}

.contacts-channel-plate .btn {
    min-width: 64%;
    min-height: 52px;
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid rgba(20, 56, 46, 0.92);
    background: #f3f3f3;
    color: #245847;
}

.contacts-channel-gate p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(13px, 0.9vw, 16px);
    line-height: 1.45;
    text-align: center;
}

.contacts-channel-gate-widget {
    display: flex;
    justify-content: center;
}

.contacts-channel-live {
    width: 100%;
    flex: 1 1 auto;
    overflow-y: auto;
}

.contacts-channel-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contacts-channel-fields input:not([type="checkbox"]),
.contacts-channel-fields textarea {
    width: 100%;
    border: 0;
    background: #f3f3f3;
    color: #222;
    font-size: clamp(14px, 0.9vw, 18px);
    line-height: 1.15;
    padding: 12px 14px;
    font-family: inherit;
}

.contacts-channel-fields textarea {
    resize: vertical;
    min-height: 140px;
}

.contacts-channel-fields .btn {
    margin: 12px auto 0;
    min-width: 62%;
    min-height: 52px;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid rgba(20, 56, 46, 0.92);
    background: #f3f3f3;
    color: #245847;
}

.contacts-channel-bait {
    display: none;
}

.contacts-channel-consent {
    display: flex;
    align-self: flex-start;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
}

.contacts-channel-consent input[type="checkbox"] {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-top: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    flex: 0 0 auto;
}

.contacts-channel-consent span {
    display: block;
    flex: 1 1 auto;
    text-align: left;
}

.contacts-channel-consent a {
    color: #d6f3e3;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contacts-channel-feedback {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.2);
}

.contacts-channel-feedback-error {
    background: rgba(120, 19, 19, 0.4);
}

.contacts-channel-feedback-ok {
    background: rgba(33, 106, 69, 0.45);
}

.contacts-content p {
    font-size: clamp(15px, 0.78vw, 17px);
    line-height: 1.56;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.docs-hub-section {
    padding: 28px 0 84px;
}

.docs-hub-nav {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.docs-hub-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid #c7d8d1;
    background: #f3f8f5;
    color: #1f4a3b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.docs-hub-chip:hover {
    background: #e9f3ee;
}

.docs-legal-grid {
    display: grid;
    gap: 16px;
}

.docs-legal-card {
    padding: 22px;
    border: 1px solid #dbe7e2;
    background: #ffffff;
    box-shadow: 0 7px 18px rgba(12, 38, 30, 0.07);
}

.docs-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.docs-legal-card h2 {
    margin: 0 0 12px;
    color: #163f32;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.04;
    text-transform: uppercase;
}

.docs-link-card h2 {
    margin: 0;
    font-size: clamp(18px, 1.7vw, 24px);
}

.docs-link-card .btn {
    margin-left: auto;
    min-width: 160px;
    min-height: 46px;
    flex: 0 0 auto;
}

.docs-legal-card p {
    margin: 0 0 12px;
    color: #2a3f37;
    font-size: 16px;
    line-height: 1.58;
}

.docs-legal-card p:last-child {
    margin-bottom: 0;
}

.docs-legal-card ul {
    margin: 0 0 12px;
    padding-left: 18px;
    color: #2a3f37;
}

.docs-legal-card li {
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 16px;
}

.docs-single-section {
    padding: 24px 0 84px;
}

.docs-single-card {
    padding: 24px;
    border: 1px solid #dbe7e2;
    background: linear-gradient(180deg, #f5fbf8 0%, #edf7f2 100%);
    box-shadow: 0 7px 18px rgba(12, 38, 30, 0.07);
}

.docs-single-card h2 {
    margin: 0 0 10px;
    color: #163f32;
    font-size: clamp(22px, 1.5vw, 30px);
    line-height: 1.05;
    text-transform: uppercase;
}

.docs-single-card p {
    margin: 0;
    color: #2a3f37;
    font-size: 1rem;
    line-height: 1.58;
}

.contacts-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 22px;
}

.contacts-meta h3 {
    font-size: clamp(22px, 1.55vw, 30px);
    line-height: 1;
    text-transform: uppercase;
    color: #245847;
    margin-bottom: 10px;
}

.contacts-meta-value {
    font-size: clamp(15px, 0.95vw, 20px);
    line-height: 1.36;
    font-weight: 700;
    color: #111;
}

.contacts-socials {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.contacts-socials .social-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .contacts-page-layout {
        grid-template-columns: 1fr;
    }

    .contacts-content {
        order: 1;
    }

    .contacts-channel-card {
        order: 2;
    }

    .contacts-tariffs-lite-grid {
        grid-template-columns: 1fr;
    }

    .docs-hub-nav {
        margin-bottom: 16px;
    }

    .docs-legal-card,
    .docs-single-card {
        padding: 18px;
    }

    .docs-link-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .docs-link-card .btn {
        margin-left: 0;
    }
}

@media (max-width: 760px) {
    .contacts-page .price-market-hero .target-market-label {
        font-size: 1rem;
    }

    .contacts-page .price-market-hero h1 {
        font-size: 2.05rem;
    }

    .contacts-page .price-market-hero .target-market-copy p {
        font-size: 1.35rem;
        line-height: 1.5;
    }

    .contacts-page .price-market-proof strong {
        font-size: 1.35rem;
    }

    .contacts-page .price-market-proof span {
        font-size: 1.12rem;
    }

    .contacts-page .contacts-tariffs-lite-title {
        font-size: 2.05rem;
    }

    .contacts-page .contacts-tariffs-lite-card h3 {
        font-size: 1.85rem;
    }

    .contacts-page .contacts-tariffs-lite-price {
        font-size: 2.05rem;
    }

    .contacts-page .contacts-tariffs-lite-price span {
        font-size: 1.22rem;
    }

    .contacts-page .contacts-tariffs-lite-card li {
        font-size: 1.28rem;
        line-height: 1.45;
    }

    .contacts-page .rss-service-note p {
        font-size: 1.35rem;
        line-height: 1.5;
    }
}
