/* ============================================================
   Sales Synergy / Контентзавод — общие стили витринных страниц
   ============================================================ */

/* Базовые стили страницы (из article-style.css) */
body {
    line-height: 1.6;
    color: #1E1E1E;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

body.no-scroll {
    overflow: hidden;
}

/* Кастомный чекбокс (из article-style.css) */
.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    flex-shrink: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
}

.checkbox-container:hover input[type="checkbox"] ~ .checkmark {
    border-color: #FF6B00;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background-color: #FF6B00;
    border-color: #FF6B00;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

/* Визуально скрытый элемент */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.salesynergy-page {
    background-color: #ffffff;
}

.salesynergy-page .ss-about,
.salesynergy-page .ss-audience,
.salesynergy-page .ss-results,
.salesynergy-page .ss-process,
.salesynergy-page .ss-tech,
.salesynergy-page .cz-features,
.salesynergy-page .ss-screenshots,
.salesynergy-page .ss-cases,
.salesynergy-page .ss-pricing,
.salesynergy-page .ss-reviews,
.salesynergy-page .ss-faq,
.salesynergy-page .ss-ecosystem {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ============================================================
   Hero — двухколоночный, компактный (стиль corporate_apps)
   ============================================================ */
.article-hero--salesynergy {
    position: relative;
    overflow: hidden;
    padding: 140px 16px 80px;
    background-color: transparent;
}

.ss-hero {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.ss-hero__left {
    flex: 1 1 0;
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.ss-hero__title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    margin: 0;
}

.ss-hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    font-size: 26px;
    font-weight: 700;
}

.ss-hero__brand-text {
    color: #333333;
    text-transform: uppercase;
}

.ss-hero__logo {
    height: 40px;
    width: auto;
    display: block;
}

.ss-hero__tagline {
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
    margin: 0 0 32px;
}

/* Чипы */
.ss-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.ss-hero__chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f3f3f3;
    color: #333333;
}

.ss-hero__chip--orange {
    background-color: #f3f3f3;
    color: #333333;
}

.ss-hero__chip--dark {
    background-color: #f3f3f3;
    color: #333333;
}

/* Кнопки */
.ss-hero__cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ss-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.ss-hero__cta--primary {
    background-color: #FF6B00;
    color: #ffffff;
}

.ss-hero__cta--primary:hover {
    background-color: #e05a00;
}

.ss-hero__cta--secondary {
    background: #ffffff;
    color: #FF6B00;
    border: 1px solid #FF6B00;
}

.ss-hero__cta--secondary:hover {
    background-color: #FF6B00;
    color: #ffffff;
}

/* Правая колонка — картинка (absolute, выходит за сетку) */
.ss-hero__right {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 1;
    pointer-events: none;
}

.ss-hero__image {
    width: 100%;
    max-width: 680px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .ss-hero__title { font-size: 36px; }
    .ss-hero__tagline { font-size: 16px; }
}

@media (max-width: 900px) {
    .article-hero--salesynergy {
        padding: 120px 16px 40px;
    }

    .ss-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .ss-hero__left {
        max-width: 100%;
    }

    .ss-hero__right {
        position: static;
        transform: none;
        width: 100%;
        align-self: center;
        pointer-events: auto;
    }

    .ss-hero__image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .article-hero--salesynergy {
        padding: 120px 16px 24px;
    }

    .ss-hero { gap: 24px; }

    .ss-hero__title { font-size: 26px; }

    .ss-hero__brand { font-size: 22px; }

    .ss-hero__logo { height: 32px; }

    .ss-hero__tagline { font-size: 16px; }

    .ss-hero__chip { font-size: 13px; padding: 6px 12px; }

    .ss-hero__cta-row { flex-direction: column; }

    .ss-hero__cta { width: 100%; justify-content: center; }
}

/* ============================================================
   О продукте — редакционный split
   ============================================================ */
.ss-about {
    padding: 80px 0;
    background: #ffffff;
}

.ss-about__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-about__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Левая колонка — крупный тезис */
.ss-about__statement {
    position: sticky;
    top: 100px;
}

.ss-about__hook {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #333333;
    text-transform: uppercase;
    margin: 0 0 24px;
    letter-spacing: -0.5px;
}

.ss-about__hook-line {
    display: block;
    width: 48px;
    height: 3px;
    background: #FF6B00;
    border-radius: 2px;
}

/* Правая колонка — короткие абзацы */
.ss-about__body p {
    font-size: 18px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 20px;
}

.ss-about__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .ss-about__split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ss-about__statement {
        position: static;
    }

    .ss-about__hook {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .ss-about {
        padding: 56px 16px;
    }

    .ss-about__container {
        padding: 0;
    }

    .ss-about__hook {
        font-size: 24px;
    }

    .ss-about__body p {
        font-size: 15px;
    }
}

/* ============================================================
   Ключевые возможности
   ============================================================ */
.ss-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.ss-features__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-features__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

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

.ss-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 28px 32px;
    border: 1px solid #eeeeee;
    transition: box-shadow 0.25s, transform 0.2s;
}

.ss-feature-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.ss-feature-card__icon {
    margin-bottom: 16px;
}

.ss-feature-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ss-feature-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

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

@media (max-width: 600px) {
    .ss-features {
        padding: 56px 16px;
    }

    .ss-features__container {
        padding: 0;
    }

    .ss-features__title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .ss-features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ss-feature-card {
        padding: 22px 20px 24px;
    }
}

/* ============================================================
   Ключевые возможности — нумерованные строки (общий стиль)
   ============================================================ */
.cz-features {
    padding: 80px 0;
    background: #ffffff;
}

.cz-features__container {
    max-width: 1160px;
    margin: 0 auto;
}

.cz-features__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

.cz-features__list {
    border-top: 1px solid #e5e5e5;
}

.cz-features__row {
    display: grid;
    grid-template-columns: 56px 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s;
}

.cz-features__num {
    font-size: 36px;
    font-weight: 600;
    color: #FF6B00;
    letter-spacing: 1px;
    padding-top: 3px;
}

.cz-features__name {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.3;
}

.cz-features__desc {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

@media (max-width: 768px) {
    .cz-features__row {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
    }

    .cz-features__desc {
        grid-column: 2;
        margin-top: 4px;
    }
}

@media (max-width: 600px) {
    .cz-features {
        padding: 56px 16px;
    }

    .cz-features__container {
        padding: 0;
    }

    .cz-features__title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .cz-features__name {
        font-size: 17px;
    }
}

/* ============================================================
   Скриншоты
   ============================================================ */
.ss-screenshots {
    padding: 80px 0;
    background: #ffffff;
}

.ss-screenshots__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-screenshots__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}

.ss-screenshots__subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0 0 48px;
    line-height: 1.5;
}

.ss-screenshots__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 40px;
}

.ss-screenshots__item {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ss-screenshots__item--wide {
    grid-column: 1 / -1;
}

.ss-screenshots__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 420px;
}

.ss-screenshots__item--wide .ss-screenshots__img {
    max-height: none;
}

/* Обёртка картинки + кнопка expand */
.ss-screenshots__img-wrap {
    position: relative;
    overflow: hidden;
}

.ss-screenshots__expand {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: #333;
    opacity: 1;
    transition: background 0.25s ease;
    backdrop-filter: blur(4px);
}

.ss-screenshots__expand:hover {
    background: #FF6B00;
    color: #fff;
}

/* Лайтбокс */
.ss-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
}

.ss-lightbox--open {
    display: flex;
}

.ss-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    object-fit: contain;
    cursor: default;
}

.ss-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ss-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ss-screenshots__caption {
    padding: 12px 16px;
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

/* Fallback когда изображение не загружается */
.ss-screenshots__item--fallback {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ss-screenshots__item--fallback .ss-screenshots__caption {
    display: none;
}

.ss-screenshots__fallback-text {
    display: none;
    font-size: 15px;
    color: #888888;
    text-align: center;
    padding: 20px;
    font-weight: 500;
}

.ss-screenshots__item--fallback .ss-screenshots__fallback-text {
    display: block;
}

.ss-screenshots__cta {
    text-align: center;
}

@media (max-width: 700px) {
    .ss-screenshots {
        padding: 56px 16px;
    }

    .ss-screenshots__container {
        padding: 0;
    }

    .ss-screenshots__title {
        font-size: 26px;
    }

    .ss-screenshots__subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .ss-screenshots__grid {
        grid-template-columns: 1fr;
    }

    .ss-screenshots__item--wide {
        grid-column: 1;
    }

    .ss-screenshots__img {
        max-height: 260px;
    }
}

/* ============================================================
   Тарифы
   ============================================================ */
.ss-pricing {
    padding: 80px 0;
    background: #ffffff;
}

.ss-pricing__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-pricing__title {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    text-transform: uppercase;
    margin: 0 0 12px;
    line-height: 1.2;
}

.ss-pricing__subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0 0 48px;
}

.ss-pricing__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ss-pricing__card:nth-child(-n+3) {
    grid-column: span 2;
}

.ss-pricing__card:nth-child(n+4) {
    grid-column: span 3;
}

.ss-pricing__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s ease;
}

.ss-pricing__card--accent {
    border-color: #FF6B00;
}

.ss-pricing__plan {
    font-size: 24px;
    font-weight: 500 !important;
    color: #333333;
    margin: 0;
    line-height: 1.2;
}

.ss-pricing__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
}

.ss-pricing__price {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B00;
    line-height: 1.1;
    margin: 0;
}

.ss-pricing__gens {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
    white-space: nowrap;
}

.ss-pricing__desc {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

.ss-pricing__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}


.ss-pricing__vat {
    font-size: 12px;
    color: #aaaaaa;
    line-height: 1.5;
    margin: 0;
    max-width: 700px;
    align-self: flex-start;
}

@media (max-width: 1200px) {
    .ss-pricing__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .ss-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ss-pricing__card:nth-child(-n+3),
    .ss-pricing__card:nth-child(n+4) {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .ss-pricing {
        padding: 56px 16px;
    }

    .ss-pricing__container {
        padding: 0;
    }

    .ss-pricing__title {
        font-size: 26px;
    }

    .ss-pricing__subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .ss-pricing__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Экосистема FITTIN
   ============================================================ */
.ss-ecosystem {
    padding: 80px 0;
    background: #ffffff;
}

.ss-ecosystem__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-ecosystem__header {
    max-width: 780px;
    margin-bottom: 48px;
}

.ss-ecosystem__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF6B00;
    margin-bottom: 12px;
    padding: 5px 12px;
    background: rgba(255,107,0,0.1);
    border-radius: 999px;
}

.ss-ecosystem__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}

.ss-ecosystem__desc {
    font-size: 18px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

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

.ss-ecosystem__card {
    position: relative;
    background: #f7f7f7;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ss-ecosystem__card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.ss-ecosystem__card--current {
    background: #fff;
    border-color: #FF6B00;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    cursor: default;
}

.ss-ecosystem__card--current:hover {
    transform: none;
    border-color: #FF6B00;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.ss-ecosystem__card__icon {
    margin-bottom: 4px;
}

.ss-ecosystem__card-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    height: 24px;
}

.ss-ecosystem__card-logo img {
    height: 24px;
    width: auto;
    display: block;
}

.ss-ecosystem__card-title {
    font-size: 17px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ss-ecosystem__card--current .ss-ecosystem__card-title {
    color: #333333;
}

.ss-ecosystem__card-badge {
    font-size: 12px;
    font-weight: 600;
    color: #FF6B00;
    text-transform: uppercase;
    background: none;
    padding: 0;
    margin-left: auto;
}

.ss-ecosystem__card-text {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
    flex: 1;
}

.ss-ecosystem__card--current .ss-ecosystem__card-text {
    color: #666666;
}

.ss-ecosystem__card-link {
    font-size: 14px;
    font-weight: 600;
    color: #FF6B00;
    text-decoration: none;
    margin-top: auto;
}

.ss-ecosystem__card-link:hover {
    text-decoration: underline;
}

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

@media (max-width: 600px) {
    .ss-ecosystem {
        padding: 56px 16px;
    }

    .ss-ecosystem__container {
        padding: 0;
        
    }

    .ss-ecosystem__desc {
        font-size: 16px;
    }

    .ss-ecosystem__title {
        font-size: 26px;
    }

    .ss-ecosystem__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CTA блок
   ============================================================ */
.ss-cta-block {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B00 0%, #e55a00 100%);
}

.ss-cta-block__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-cta-block__content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.ss-cta-block__title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.ss-cta-block__text {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    margin: 0 0 36px;
}

.ss-cta-block__content .ss-btn--primary {
    background: #ffffff;
    color: #FF6B00;
    font-size: 17px;
}

.ss-cta-block__content .ss-btn--primary:hover {
    background: #f0f0f0;
    opacity: 1;
}

@media (max-width: 700px) {
    .ss-cta-block {
        padding: 56px 16px;
    }

    .ss-cta-block__container {
        padding: 0;
    }

    .ss-cta-block__title {
        font-size: 26px;
    }

    .ss-cta-block__text {
        font-size: 15px;
    }
}

/* ============================================================
   Для кого — аудиторные карточки
   ============================================================ */
.ss-audience {
    padding: 80px 0;
    background: #f7f7f7;
}

.ss-audience__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-audience__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

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

.ss-audience__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px 32px;
    border: 1px solid #eeeeee;
}

.ss-audience__icon {
    width: 48px;
    height: 48px;
    background: rgba(255,107,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #FF6B00;
}

.ss-audience__name {
    font-size: 17px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 8px;
}

.ss-audience__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

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

@media (max-width: 600px) {
    .ss-audience { padding: 56px 16px; }
    .ss-audience__container { padding: 0; }
    .ss-audience__title { font-size: 26px; margin-bottom: 32px; }
    .ss-audience__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   Что получите — крупные цифры-метрики
   ============================================================ */
.ss-results {
    padding: 80px 0;
    background: #ffffff;
}

.ss-results__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-results__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

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

.ss-results__item {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 32px 28px;
}

.ss-results__num {
    font-size: 52px;
    font-weight: 800;
    color: #FF6B00;
    line-height: 1;
    margin: 0 0 10px;
    letter-spacing: -2px;
}

.ss-results__label {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 6px;
}

.ss-results__text {
    font-size: 14px;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}

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

@media (max-width: 600px) {
    .ss-results { padding: 56px 16px; }
    .ss-results__container { padding: 0; }
    .ss-results__title { font-size: 26px; margin-bottom: 32px; }
    .ss-results__num { font-size: 40px; }
    .ss-results__item { padding: 24px 20px; }
}

/* ============================================================
   Как работаем — stepper/timeline
   ============================================================ */
.ss-process {
    padding: 80px 0;
    background: #f7f7f7;
}

.ss-process__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-process__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

.ss-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.ss-process__step {
    position: relative;
}

.ss-process__num-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.ss-process__num {
    width: 44px;
    height: 44px;
    background: #FF6B00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ss-process__connector {
    flex: 1;
    height: 2px;
    background: #e5e5e5;
    margin-left: 12px;
}

.ss-process__step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ss-process__step-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

@media (max-width: 1024px) {
    .ss-process__steps { grid-template-columns: repeat(2, 1fr); }
    .ss-process__connector { display: none; }
}

@media (max-width: 600px) {
    .ss-process { padding: 56px 16px; }
    .ss-process__container { padding: 0; }
    .ss-process__title { font-size: 26px; margin-bottom: 32px; }
    .ss-process__steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Технологии — горизонтальная лента
   ============================================================ */
.ss-tech {
    padding: 80px 0;
    background: #ffffff;
}

.ss-tech__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-tech__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

.ss-tech__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ss-tech__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f7f7f7;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
}

.ss-tech__item svg {
    color: #FF6B00;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .ss-tech { padding: 56px 16px; }
    .ss-tech__container { padding: 0; }
    .ss-tech__title { font-size: 26px; margin-bottom: 32px; }
    .ss-tech__item { font-size: 14px; padding: 10px 16px; }
}

/* ============================================================
   Кейсы клиентов
   ============================================================ */
.ss-cases {
    padding: 80px 0;
    background: #f7f7f7;
}

.ss-cases__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-cases__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

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

.ss-cases__card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eeeeee;
}

.ss-cases__img-wrap {
    background: #f0f0f0;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 52px;
}

.ss-cases__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ss-cases__name {
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ss-cases__metric {
    font-size: 32px;
    font-weight: 800;
    color: #FF6B00;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.ss-cases__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    flex: 1;
}

.ss-cases__link {
    font-size: 14px;
    font-weight: 600;
    color: #FF6B00;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}

.ss-cases__link:hover { text-decoration: underline; }

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

@media (max-width: 600px) {
    .ss-cases { padding: 56px 16px; }
    .ss-cases__container { padding: 0; }
    .ss-cases__title { font-size: 26px; margin-bottom: 32px; }
    .ss-cases__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   Отзывы клиентов
   ============================================================ */
.ss-reviews {
    padding: 80px 0;
    background: #ffffff;
}

.ss-reviews__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-reviews__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

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

.ss-reviews__card {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ss-reviews__quote {
    font-size: 16px;
    line-height: 1.65;
    color: #333333;
    margin: 0;
    flex: 1;
}

.ss-reviews__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-reviews__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #888888;
    flex-shrink: 0;
    overflow: hidden;
}

.ss-reviews__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-reviews__name {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 2px;
}

.ss-reviews__role {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

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

@media (max-width: 600px) {
    .ss-reviews { padding: 56px 16px; }
    .ss-reviews__container { padding: 0; }
    .ss-reviews__title { font-size: 26px; margin-bottom: 32px; }
    .ss-reviews__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   FAQ — аккордеон
   ============================================================ */
.ss-faq {
    padding: 80px 0;
    background: #f7f7f7;
}

.ss-faq__container {
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
}

.ss-faq__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

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

.ss-faq__item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    overflow: hidden;
}

.ss-faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.2s;
}

.ss-faq__question:hover {
    color: #FF6B00;
}

.ss-faq__item--open .ss-faq__question {
    color: #FF6B00;
}

.ss-faq__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: #999999;
}

.ss-faq__item--open .ss-faq__chevron {
    transform: rotate(180deg);
    color: #FF6B00;
}

.ss-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.ss-faq__item--open .ss-faq__answer {
    max-height: 600px;
}

.ss-faq__answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
}

@media (max-width: 600px) {
    .ss-faq { padding: 56px 16px; }
    .ss-faq__container { padding: 0; }
    .ss-faq__title { font-size: 26px; margin-bottom: 32px; }
    .ss-faq__question { font-size: 15px; padding: 16px 18px; }
    .ss-faq__answer-inner { padding: 0 18px 16px; }
}

/* ============================================================
   Форма обратной связи (скопировано из contacts.css)
   ============================================================ */

.contact-form {
    margin-top: 100px;
    padding: 60px 20px 40px 20px;
    background: #f9f9f9;
}

.contact-form__container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Переопределяем article-style.css: убираем белый фон с общей обёртки */
.contact-form__content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

/* Белая плашка — только левая колонка с формой */
.contact-form__left {
    flex: 0 0 50%;
    padding: 64px 32px;
    background-color: #fff;
    border-radius: 30px;
    margin-bottom: 5px;
    position: static;
    z-index: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
}

.contact-form__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: static;
    z-index: auto;
}

.phone-image-container {
    max-width: 100%;
}

.phone-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.contact-form__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: #333333;
    margin: 0 0 20px;
}

.contact-form__form {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

.form-group {
    width: 100%;
    margin-bottom: 24px;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #333333;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    background-color: transparent;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-bottom-color: #FF6B00;
}

.form-input::placeholder {
    color: #999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-input:focus::placeholder {
    opacity: 0.7;
    transform: translateY(-10px);
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    padding: 16px 0;
    gap: 8px;
    margin-top: auto;
    cursor: pointer;
}

.privacy-link {
    color: #FF6B00;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 14px 36px;
    border-radius: 999px;
    background-color: #FF6B00;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    width: auto;
    height: auto;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #E05F00;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: default;
}

/* Textarea в форме (описание проекта) */
.form-textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #333333;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    background-color: transparent;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    transition: border-color 0.3s ease;
    resize: none;
    min-height: 72px;
    box-sizing: border-box;
}

.form-textarea:focus {
    border-bottom-color: #FF6B00;
}

.form-textarea::placeholder {
    color: #999;
}

@media (max-width: 1024px) {
    .phone-image {
        max-width: 420px;
    }
}

@media (max-width: 900px) {
    .phone-image {
        max-width: 320px;
    }

    .contact-form__left {
        flex: 0 0 55%;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 0 50px;
        margin-bottom: 40px;
    }

    .contact-form__content {
        flex-direction: column;
        gap: 24px;
        background-color: transparent;
        padding: 0;
    }

    .contact-form__left {
        flex: none;
        width: 100%;
        padding: 24px 20px;
    }

    .contact-form__right {
        display: none;
    }
}

/* ============================================================
   Как работаем (стиль results-section из product-sites)
   ============================================================ */

.results-section {
    padding: 80px 0;
    background: #2a2a2a;
}
.results-section__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.results-section__title {
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 60px;
    line-height: 1.2;
    text-transform: uppercase;
}
.results-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.results-section__item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.results-section__number {
    font-size: 32px;
    font-weight: 600;
    color: #FF6B00;
    line-height: 1;
    letter-spacing: -0.5px;
}
.results-section__step-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}
.results-section__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1024px) {
    .results-section__grid { grid-template-columns: repeat(2, 1fr); }
    .results-section__title { font-size: 30px; }
}
@media (max-width: 600px) {
    .results-section { padding: 60px 16px; }
    .results-section__grid { grid-template-columns: 1fr; }
    .results-section__title { font-size: 24px; margin-bottom: 32px; }
    .results-section__number { font-size: 28px; }
}

/* ============================================================
   Для кого (стиль сайта — for-whom-section)
   ============================================================ */

.for-whom-section {
    padding: 80px 0;
    background: #ffffff;
}
.for-whom-section__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.for-whom-section__title {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 60px;
    line-height: 1.2;
    text-transform: uppercase;
}
.for-whom-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.for-whom-section__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #e5e5e5;
    transition: border-color 0.3s ease;
}
.for-whom-section__card-icon {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    line-height: 1;
}
.for-whom-section__card-title {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.2;
}
.for-whom-section__card-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1024px) {
    .for-whom-section__grid { grid-template-columns: repeat(2, 1fr); }
    .for-whom-section__title { font-size: 34px; }
}
@media (max-width: 600px) {
    .for-whom-section { padding: 60px 16px; }
    .for-whom-section__grid { grid-template-columns: 1fr; }
    .for-whom-section__title { font-size: 26px; }
    .for-whom-section__card { padding: 24px; }
}

/* ============================================================
   Технологии (стиль сайта — tech-section)
   ============================================================ */

.tech-section {
    padding: 80px 0;
    background: #ffffff;
}
.tech-section__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.tech-section__title {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 60px;
    line-height: 1.2;
    text-transform: uppercase;
}
.tech-section__categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.tech-section__category {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.tech-section__category-title {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: #333333;
    border-radius: 100px;
    padding: 8px 18px;
    display: inline-block;
    line-height: 1.6;
}
.tech-section__category:nth-child(3n+1) .tech-section__category-title { background: #FF6B00; }
.tech-section__category:nth-child(3n+2) .tech-section__category-title { color: #333; background: #f5f5f5; }
.tech-section__category:nth-child(3n+3) .tech-section__category-title { background: #333333; }
.tech-section__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}
.tech-section__item {
    font-size: 16px;
    color: #333333;
}
.tech-section__item + .tech-section__item::before {
    content: '•';
    color: #cccccc;
    margin: 0 10px;
}
@media (max-width: 900px) {
    .tech-section__categories { grid-template-columns: 1fr; }
    .tech-section__title { font-size: 34px; }
}
@media (max-width: 600px) {
    .tech-section { padding: 60px 16px; }
    .tech-section__title { font-size: 26px; }
    .tech-section__container { padding: 0; }
    .tech-section__category { padding: 24px; }
}

/* ============================================================
   FAQ (стиль сайта — faq-section)
   ============================================================ */

.faq-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}
.faq-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.faq-section__title {
    font-size: 36px;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 400;
}
.faq-section__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}
.faq-section__item {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
    transition: all 0.3s ease;
}
.faq-section__item.active {
    border-bottom-color: #FF6B00;
}
.faq-section__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
}
.faq-section__question span {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    padding-right: 40px;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}
.faq-section__item.active .faq-section__question span {
    color: #FF6B00;
}
.faq-section__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}
.faq-section__icon::before,
.faq-section__icon::after {
    content: '';
    position: absolute;
    background: #000;
    transition: all 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-section__icon::before { width: 14px; height: 1.5px; }
.faq-section__icon::after { width: 1.5px; height: 14px; }
.faq-section__item.active .faq-section__icon::before,
.faq-section__item.active .faq-section__icon::after {
    background: #FF6B00;
}
.faq-section__item.active .faq-section__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-section__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
}
.faq-section__item.active .faq-section__answer {
    max-height: 1000px;
    padding: 0 0 24px;
    opacity: 1;
    visibility: visible;
}
.faq-section__answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    padding-right: 20px;
}
@media (max-width: 900px) {
    .faq-section__list { grid-template-columns: 1fr; gap: 0; }
    .faq-section__title { font-size: 30px; }
    .faq-section__question span { font-size: 17px; }
}
@media (max-width: 600px) {
    .faq-section { padding: 60px 16px 40px; }
    .faq-section__title { font-size: 24px; }
    .faq-section__container { padding: 0; }
}

/* ============================================================
   КАК РАБОТАЕМ — карточки с декоративным номером (из product-template.css)
   ============================================================ */
.pt-process {
    margin-top: 100px;
    padding: 0;
    background: #ffffff;
}

.pt-process__container {
    max-width: 1160px;
    margin: 0 auto;
}

.pt-process__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
}

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

.pt-process__card {
    position: relative;
    background: #f5f5f5;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pt-process__num {
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    color: #e8e8e8;
    letter-spacing: -4px;
    user-select: none;
    pointer-events: none;
}

.pt-process__name {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.3;
    padding-top: 56px;
    position: relative;
    z-index: 1;
}

.pt-process__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #666666;
    margin: 0;
    position: relative;
    z-index: 1;
}

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

@media (max-width: 600px) {
    .pt-process {
        padding: 56px 16px;
    }

    .pt-process__container { padding: 0; }

    .pt-process__title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .pt-process__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pt-process__num { font-size: 80px; }

    .pt-process__name {
        font-size: 17px;
        padding-top: 48px;
    }
}
