/* ===========================================================
   PeakSite — design tokens & base styles
   Дизайн: figma.com / ПИКСАЙТА, страница «Сайт»
   =========================================================== */

:root {
    /* ----- Цвета ----- */
    --color-page-bg:        #eaf0f3;   /* фон страницы (Index frame bg) */
    --color-band-bg:        #1c1450;   /* фон full-bleed тёмных секций */
    --color-text:           #1c1450;   /* основной текст на светлом */
    --color-text-on-band:   #ffffff;   /* текст на тёмном */
    --color-text-muted:     rgba(28, 20, 80, 0.60);
    --color-text-muted-on-band: rgba(255, 255, 255, 0.80);

    --color-accent:         #c6ae6f;   /* золотой акцент */
    --color-accent-soft:    #e3ea7a;   /* светло-жёлто-зелёный */
    --color-white:          #ffffff;
    --color-border:         rgba(28, 20, 80, 0.20);
    --color-border-on-band: rgba(255, 255, 255, 0.20);

    /* Цвета из элементов карты/иконок (на будущее) */
    --color-aux-teal:       #61b9a6;
    --color-aux-navy:       #023b60;
    --color-aux-deep:       #001e2d;
    --color-aux-green:      #006349;

    /* ----- Типографика ----- */
    --font-display: "Google Sans", "Inter", system-ui, sans-serif;
    --font-accent:  "Handjet", "Google Sans", system-ui, sans-serif;
    --font-body:    "Google Sans", "Inter", system-ui, sans-serif;

    /* Размеры (точно по Figma) */
    --fs-hero:       86px;   /* «Рекламное агентство ПИКСАЙТА» */
    --fs-h2:         66px;   /* section title (Преимущества/Услуги/Кейсы) */
    --fs-quote:      64px;   /* декоративные «» */
    --fs-h3:         42px;   /* «Закажите консультацию» */
    --fs-h4:         32px;   /* подзаголовки карточек */
    --fs-card-title: 24px;
    --fs-body:       20px;   /* основной текст */
    --fs-small:      16px;   /* небольшой текст / capсhar */
    --fs-tiny:       13px;   /* инпуты, мета */

    /* Высота строк */
    --lh-hero: 1.06;
    --lh-h2:   1.06;
    --lh-h3:   1.06;
    --lh-h4:   1.06;
    --lh-body: 1.2;

    /* ----- Радиусы ----- */
    --radius-sm:  12px;
    --radius-md:  24px;
    --radius-lg:  32px;
    --radius-pill: 999px;

    /* ----- Раскладка ----- */
    --container-w: 1106px;            /* содержательная ширина контента */
    --container-pad: 24px;            /* боковой отступ на мобильных */
    --section-gap: 96px;              /* вертикальный отступ между секциями */

    /* ----- Эффекты ----- */
    --shadow-card: 0 4px 24px rgba(28, 20, 80, 0.08);
}

/* ===========================================================
   Сброс и базовые стили
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--color-page-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

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

/* ===========================================================
   Раскладка: full-bleed band и центрированный контейнер
   =========================================================== */

/* Контейнер фиксированной ширины — для контентных секций */
.ps-container {
    width: 100%;
    max-width: var(--container-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

/* Full-bleed секция — растягивается на всю ширину окна, без скруглений */
.ps-band {
    width: 100%;
    background: var(--color-band-bg);
    color: var(--color-text-on-band);
    border-radius: 0;
}

/* Внутри band оборачиваем контент в контейнер */
.ps-band > .ps-container { padding-top: 64px; padding-bottom: 64px; }

/* Светлая контентная секция (на --color-page-bg) */
.ps-section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

/* ===========================================================
   Типографика — утилитарные классы
   =========================================================== */
.ps-h1, .ps-hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-hero);
    line-height: var(--lh-hero);
}
.ps-h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
}
.ps-h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
}
.ps-h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
}
.ps-card-title {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: var(--fs-card-title);
}
.ps-body  { font-size: var(--fs-body);  line-height: var(--lh-body); }
.ps-small { font-size: var(--fs-small); line-height: 1.5; }
.ps-tiny  { font-size: var(--fs-tiny);  line-height: 1.35; }

.ps-accent { font-family: var(--font-accent); font-weight: 700; }

/* ===========================================================
   Кнопки
   =========================================================== */
.ps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: 0;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: var(--fs-body);
    line-height: 1;
    background: var(--color-accent);
    color: var(--color-band-bg);
    transition: opacity .2s ease, transform .1s ease;
    cursor: pointer;
    text-decoration: none;
}
.ps-btn:hover  { opacity: .9; }
.ps-btn:active { transform: translateY(1px); }
.ps-btn--ghost {
    background: transparent;
    color: var(--color-text-on-band);
    box-shadow: inset 0 0 0 1px var(--color-border-on-band);
}

/* ===========================================================
   HERO
   =========================================================== */
.ps-hero {
    position: relative;
    overflow: hidden;
    min-height: 800px;
    /* радиальная подсветка #61b9a6 (бирюза) снизу */
    background:
        radial-gradient(ellipse 80% 60% at 50% 110%, #61b9a6 0%, rgba(97,185,166,0) 60%),
        var(--color-band-bg);
    padding-top: 0;
    padding-bottom: 0;
}
.ps-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    padding-top: 117px;
    padding-bottom: 60px;
    align-items: flex-start;
}
.ps-hero__left { flex: 1 1 auto; max-width: 720px; }

.ps-hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 86px;
    line-height: 1.06;
    color: var(--color-white);
    margin: 0 0 64px 0;
    letter-spacing: -.01em;
}
.ps-hero__lead {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.06;
    color: var(--color-white);
    max-width: 677px;
}

/* Декоративная карточка справа сверху */
.ps-hero__card {
    width: 286px;
    flex-shrink: 0;
    margin-left: 100px;
    margin-top: 0;
    padding: 24px 24px 24px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    color: var(--color-white);
    backdrop-filter: blur(6px);
}
.ps-hero__card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.06;
    margin: 0 0 24px 0;
}
.ps-hero__card-text {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 24px;
}
.ps-hero__card-btn {
    width: 100%;
    padding: 12px 18px;
}

/* Иллюстрация гор — full-bleed внизу, behind контента */
.ps-hero__mountains {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 64%;
    background-image: url(/img/figma/hero-mountains.png);
    background-size: 1440px auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .ps-hero { min-height: 640px; }
    .ps-hero__inner { padding-top: 72px; flex-direction: column; gap: 32px; }
    .ps-hero__title { font-size: 56px; margin-bottom: 32px; }
    .ps-hero__lead { font-size: 22px; }
    .ps-hero__card { margin-left: 0; width: 100%; max-width: 360px; }
    .ps-hero__mountains { background-size: 1100px auto; height: 40%; }
}
@media (max-width: 640px) {
    .ps-hero { min-height: 560px; }
    .ps-hero__title { font-size: 40px; }
    .ps-hero__lead { font-size: 18px; }
    .ps-hero__card-title { font-size: 24px; }
    .ps-hero__card-text { font-size: 16px; }
    .ps-hero__mountains { background-size: 800px auto; }
}

/* ===========================================================
   Header — белая pill-капсула с навигацией
   =========================================================== */
.ps-header {
    position: sticky;
    top: 20px;
    z-index: 30;
    margin-top: 20px;
    pointer-events: none; /* пропускаем клики мимо капсулы */
}
.ps-header__inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--color-white);
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    box-shadow: var(--shadow-card);
}
.ps-header__brand {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-band-bg);
    letter-spacing: -.01em;
}
.ps-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-band-bg);
    flex: 1;
    justify-content: center;
}
.ps-header__nav a { color: inherit; }
.ps-header__nav a:hover { opacity: .7; }

.ps-header__cta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-band-bg);
}
.ps-header__soc { display: inline-flex; width: 28px; height: 28px; }
.ps-header__soc img { width: 100%; height: 100%; }

.ps-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--color-band-bg);
}

/* ===========================================================
   Footer
   =========================================================== */
.ps-footer { margin-top: 64px; }

.ps-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 32px;
}
.ps-footer__nav {
    display: flex;
    gap: 32px;
    font-size: 20px;
    color: var(--color-band-bg);
}
.ps-footer__nav a:hover { opacity: .7; }
.ps-footer__soc { display: flex; gap: 14px; }
.ps-footer__soc a { width: 28px; height: 28px; display: inline-flex; }

.ps-footer__bottom {
    background: var(--color-band-bg);
    color: var(--color-text-on-band);
}
.ps-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 24px;
}
.ps-footer__brandline { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.ps-footer__brand {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
}
.ps-footer__policy { opacity: .9; }
.ps-footer__policy:hover { opacity: 1; }

/* ===========================================================
   Утилиты
   =========================================================== */
.ps-grid { display: grid; gap: 24px; }
.ps-flex { display: flex; gap: 24px; }
.ps-center { display: flex; align-items: center; justify-content: center; }

/* Резерв для адаптива — будем уточнять при мобильной разработке */
@media (max-width: 1024px) {
    :root {
        --fs-hero: 56px;
        --fs-h2: 44px;
        --fs-h3: 32px;
        --fs-h4: 26px;
        --fs-body: 18px;
        --section-gap: 64px;
    }
}
@media (max-width: 640px) {
    :root {
        --fs-hero: 36px;
        --fs-h2: 30px;
        --fs-h3: 24px;
        --fs-h4: 22px;
        --fs-body: 16px;
        --section-gap: 48px;
    }
}

/* ===========================================================
   Section title — общий заголовок секции
   =========================================================== */
.ps-section__title {
    margin-bottom: 40px;
}
.ps-band .ps-section__title { color: var(--color-white); }

/* ===========================================================
   2. ПРЕИМУЩЕСТВА
   =========================================================== */
.ps-adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 102px;
    row-gap: 56px;
    margin-top: 76px;
}
.ps-adv {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 24px;
    align-items: start;
}
.ps-adv__mark {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-pill);
    background: var(--color-accent);
    color: var(--color-band-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.ps-adv__mark svg { width: 18px; height: 18px; }
.ps-adv__title  {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 14px;
}
.ps-adv__text {
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-text);
}

/* ===========================================================
   3. КЛИЕНТЫ (band)
   =========================================================== */
.ps-clients .ps-container { padding-top: 56px; padding-bottom: 56px; }
.ps-clients__track {
    overflow: hidden;
    margin: 30px 0 28px;
}
.ps-clients__strip {
    height: 152px;
    background-image: url(/img/figma/clients-strip.png);
    background-repeat: repeat-x;
    background-position: left center;
    background-size: auto 100%;
    animation: ps-clients-scroll 80s linear infinite;
}
@keyframes ps-clients-scroll {
    from { background-position: 0 center; }
    to   { background-position: -6119px center; }
}
.ps-clients__track:hover .ps-clients__strip { animation-play-state: paused; }

/* Пагинатор (общий) */
.ps-pager__arr, .ps-clients__pager .ps-pager__arr {
    width: 32px; height: 32px; border-radius: var(--radius-pill);
    border: 1px solid var(--color-accent);
    background: transparent;
    color: var(--color-accent);
    cursor: pointer;
    font-size: 14px;
}
.ps-pager__dots {
    display: inline-flex; align-items: center; gap: 12px;
    margin: 0 16px;
}
.ps-pager__dots i {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.30);
    display: inline-block;
    transition: width .25s ease, background .25s ease;
}
.ps-pager__dots i.is-active {
    width: 24px; border-radius: 4px;
    background: var(--color-accent);
}
.ps-clients__pager, .ps-reviews__pager, .ps-cases__pager {
    display: flex; align-items: center; justify-content: center;
}

/* ===========================================================
   4. УСЛУГИ
   =========================================================== */
.ps-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 76px;
}
.ps-service {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px 24px 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
}
.ps-service__icon {
    width: 63px; height: 63px;
    border-radius: 50%;
    background: var(--color-page-bg);
    margin-bottom: 16px;
    background-image: url(/img/figma/service-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 36px auto;
}
.ps-service__title {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: auto;
}
.ps-service__btn {
    align-self: flex-start;
    margin-top: 24px;
}

/* ===========================================================
   5/11. ФОРМА «Закажите консультацию»
   =========================================================== */
.ps-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 56px 64px 48px;
    box-shadow: var(--shadow-card);
}
.ps-form__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 42px;
    line-height: 1.06;
    margin-bottom: 10px;
}
.ps-form__lead {
    font-size: 20px;
    margin-bottom: 36px;
    color: var(--color-text-muted);
}
.ps-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.ps-field { display: block; }
.ps-field--wide { margin-bottom: 36px; }
.ps-field__label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}
.ps-field__input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 6px 0 10px;
    font-size: 24px;
    line-height: 1.06;
    color: var(--color-text);
}
.ps-field__input::placeholder { color: var(--color-text-muted); }
.ps-field__input:focus { outline: 0; border-bottom-color: var(--color-accent); }
.ps-field__textarea { resize: vertical; min-height: 60px; }

.ps-form__attach {
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 24px;
}
.ps-form__file-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 18px;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-pill);
    color: var(--color-band-bg);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
}
.ps-form__file-hint {
    font-family: 'Golos Text', var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
}

.ps-form__submit {
    display: flex;
    align-items: flex-start;
    gap: 26px;
}
.ps-form__btn {
    padding: 14px 32px;
    min-width: 178px;
}
.ps-form__note {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}
.ps-form__note a { color: var(--color-text); text-decoration: underline; }

/* ===========================================================
   6. ОТЗЫВЫ (band)
   =========================================================== */
.ps-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
}
.ps-review {
    color: var(--color-white);
}
.ps-review__quote {
    display: inline-block;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 64px;
    line-height: 1.1;
    color: var(--color-accent);
    margin-bottom: 14px;
}
.ps-review__quote-text {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.18;
    margin-bottom: 24px;
}
.ps-review__body {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-muted-on-band);
    margin-bottom: 28px;
}
.ps-review__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ps-review__name {
    font-weight: 500;
    font-size: 20px;
}
.ps-review__role {
    font-weight: 500;
    font-size: 13px;
    color: var(--color-text-muted-on-band);
}
.ps-reviews__pager { margin-top: 56px; }

/* ===========================================================
   7. КЕЙСЫ
   =========================================================== */
.ps-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.ps-case {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    position: relative;
}
.ps-case__city {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 12px;
}
.ps-case__image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #c8d1ff 0%, #b9c4f5 100%);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}
.ps-case__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.06;
    margin-bottom: 18px;
}
.ps-case__row { margin-bottom: 12px; }
.ps-case__label {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
}
.ps-case__text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
}
.ps-case__result {
    margin: 18px 0;
    background: var(--color-page-bg);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    display: flex;
    gap: 18px;
}
.ps-case__result-label {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 23px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--color-accent);
    align-self: stretch;
}
.ps-case__result-text {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}
.ps-case__btn {
    align-self: flex-start;
    background: transparent;
    color: var(--color-band-bg);
    border: 1px solid var(--color-accent);
    margin-top: auto;
}
.ps-cases__pager { margin-top: 48px; }

/* ===========================================================
   8. СТАТЬИ (band)
   =========================================================== */
.ps-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
.ps-article {
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}
.ps-article__image {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-md);
    background-color: rgba(255,255,255,0.08);
    background-size: cover;
    background-position: center;
    margin-bottom: 22px;
}
.ps-article__date {
    font-weight: 500;
    font-size: 13px;
    color: var(--color-text-muted-on-band);
    margin-bottom: 10px;
}
.ps-article__title {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.ps-article__lead {
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-text-muted-on-band);
    margin-bottom: 26px;
    flex: 1;
}
.ps-article__btn {
    align-self: flex-start;
    color: var(--color-white);
    border: 1px solid var(--color-accent);
}

/* ===========================================================
   9. ЭКСПЕРТИЗА
   =========================================================== */
.ps-experts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.ps-expert {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ps-expert__image {
    width: 100%;
    aspect-ratio: 201/284;
    border-radius: var(--radius-md);
    background-color: #d9d9d9;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
}
.ps-expert__btn {
    padding: 8px 20px;
    font-size: 16px;
    background: transparent;
    color: var(--color-band-bg);
    border: 1px solid var(--color-accent);
    margin-bottom: 14px;
}
.ps-expert__title {
    font-size: 16px;
    text-align: center;
}

/* ===========================================================
   10. О КОМПАНИИ
   =========================================================== */
.ps-about {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 76px;
    margin-top: 60px;
    align-items: flex-start;
}
.ps-about__text {
    font-size: 20px;
    line-height: 1.2;
}
.ps-about__person {
    position: relative;
    align-self: stretch;
    background: linear-gradient(135deg, #d8e0e8 0%, #bcc6d0 100%);
    border-radius: var(--radius-lg);
    min-height: 448px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url(/img/figma/about-person.png);
    background-size: cover;
    background-position: center;
}
.ps-about__photo { display: none; }
.ps-about__name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.06;
    color: var(--color-white);
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.ps-about__role {
    font-weight: 500;
    font-size: 13px;
    color: var(--color-white);
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    margin-top: 8px;
}

/* ===========================================================
   12. КОНТАКТЫ (band)
   =========================================================== */
.ps-contacts__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 40px;
    color: var(--color-white);
}
.ps-contacts__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ps-contacts__item {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
    font-size: 20px;
    line-height: 1.2;
}
.ps-contacts__ico {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-band-bg);
    border-radius: var(--radius-pill);
    font-size: 14px;
}
.ps-contacts__item a { color: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); }
.ps-contacts__item a:hover { text-decoration-color: currentColor; }
.ps-contacts__map {
    width: 100%;
    height: 304px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    background-image: url(/img/figma/contacts-map.png);
    background-size: cover;
    background-position: center;
}

/* ===========================================================
   Адаптив для всех новых блоков
   =========================================================== */
@media (max-width: 1024px) {
    .ps-adv-grid       { column-gap: 40px; row-gap: 40px; }
    .ps-services-grid  { grid-template-columns: repeat(2, 1fr); }
    .ps-reviews__grid  { grid-template-columns: 1fr; gap: 32px; }
    .ps-cases-grid     { grid-template-columns: 1fr; gap: 24px; }
    .ps-articles-grid  { grid-template-columns: 1fr; gap: 24px; }
    .ps-experts-grid   { grid-template-columns: repeat(3, 1fr); }
    .ps-about          { grid-template-columns: 1fr; gap: 40px; }
    .ps-contacts__row  { grid-template-columns: 1fr; }
    .ps-form           { padding: 36px 24px; }
    .ps-form__row      { grid-template-columns: 1fr; }
    .ps-form__submit   { flex-direction: column; gap: 16px; }
}
@media (max-width: 640px) {
    .ps-adv-grid       { grid-template-columns: 1fr; row-gap: 28px; }
    .ps-services-grid  { grid-template-columns: 1fr; }
    .ps-experts-grid   { grid-template-columns: repeat(2, 1fr); }
}
