/* ================================================================
   PeelFilm Template — template.css
   Цветовая гамма: Холодный голубой (светлая тема)
   ================================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --clr-bg-dark:    #f0f6ff;
    --clr-bg-mid:     #e1eeff;
    --clr-bg-light:   #ffffff;
    --clr-primary:    #1e40af;
    --clr-primary-d:  #1e3a8a;
    --clr-accent:     #3b82f6;
    --clr-white:      #0f1f4a;
    --clr-text:       #2a3f6a;
    --clr-text-dark:  #0f1f4a;
    --clr-text-muted: #5a72a0;
    --clr-border:     rgba(30,64,175,0.18);
    --clr-card:       rgba(30,64,175,0.05);
    --clr-card-hover: rgba(30,64,175,0.1);

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-glow: 0 0 30px rgba(30,64,175,0.2);
    --shadow-card: 0 4px 24px rgba(0,30,100,0.1);

    --transition: 0.25s ease;
    --container: 1220px;
    --header-h: 72px;
    --sat: var(--sat); /* Safe-area top; JS overrides for iOS if env() returns 0 */
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body.pf-body {
    font-family: var(--font-main);
    background: var(--clr-bg-dark);
    color: var(--clr-text-dark);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Отступ под фиксированной шапкой (+ safe area для iPhone с чёлкой) */
main { padding-top: calc(var(--header-h) + var(--sat)); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- CONTAINER ---------- */
.pf-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- SECTIONS ---------- */
.pf-section {
    padding: 52px 0;
    background: var(--clr-bg-dark); /* единый фон для всех секций */
}
.pf-section--hero   { padding: 0; background: var(--clr-bg-dark); }
.pf-section--dark   { background: var(--clr-bg-dark); }
.pf-section--mid    { background: var(--clr-bg-dark); }
.pf-section--light  { background: var(--clr-bg-dark); }
.pf-section--cta    { background: var(--clr-bg-dark); }
.pf-section--partners { background: var(--clr-bg-dark); padding: 36px 0; border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); }

/* ---------- SECTION TITLE ---------- */
.pf-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.pf-section-title span { color: var(--clr-primary); }
.pf-section-subtitle {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 1rem;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.pf-section-title--dark { color: var(--clr-text-dark); }
.pf-section-subtitle--dark { color: #5a6a7a; }
.pf-section-sub {
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.96rem;
    margin-top: 10px;
    margin-bottom: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* ================================================================
   HEADER
   ================================================================ */
.pf-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    /* Height includes iOS safe area (status bar / notch) */
    height: calc(var(--header-h) + var(--sat));
    padding-top: var(--sat);
    background: rgba(240,246,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    transition: box-shadow var(--transition);
}
.pf-header.scrolled { box-shadow: 0 4px 32px rgba(30,64,175,0.12); }
.pf-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

/* Logo */
.pf-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.pf-logo__img { width: 46px; height: 48px; object-fit: contain; }
.pf-logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.pf-logo__name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-text-dark);
    letter-spacing: 0.04em;
}
.pf-logo__name span { color: var(--clr-primary); }
.pf-logo__tag {
    font-size: 0.62rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Nav */
.pf-nav { flex: 1; display: flex; justify-content: center; }
.pf-nav ul { display: flex; align-items: center; gap: 8px; }
.pf-nav ul li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.pf-nav ul li a:hover,
.pf-nav ul li.current a { color: var(--clr-primary); background: rgba(30,64,175,0.08); }

/* Header contacts */
.pf-header__contacts {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.pf-header__phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    transition: color var(--transition);
}
.pf-header__phone:hover { color: var(--clr-primary); }

/* Burger */
.pf-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.pf-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.pf-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pf-burger.active span:nth-child(2) { opacity: 0; }
.pf-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   BUTTONS
   ================================================================ */
.pf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.pf-btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.pf-btn--lg { padding: 17px 36px; font-size: 1rem; }

.pf-btn--primary {
    background: var(--clr-primary);
    color: #ffffff;
}
.pf-btn--primary:hover {
    background: var(--clr-primary-d);
    box-shadow: 0 0 20px rgba(30,64,175,0.35);
    transform: translateY(-1px);
}
.pf-btn--outline {
    border: 2px solid rgba(30,64,175,0.35);
    color: var(--clr-primary);
    background: transparent;
}
.pf-btn--outline:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary-d);
    background: rgba(30,64,175,0.08);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.pf-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    position: relative;
    overflow: hidden;
}
.pf-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(30,64,175,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.pf-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,64,175,0.4), transparent);
}

.pf-hero__inner {
    display: grid;
    grid-template-columns: 1fr 440px 220px;
    align-items: center;
    gap: 40px;
    padding: 60px 0 80px;
}

.pf-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(30,64,175,0.08);
    border: 1px solid rgba(30,64,175,0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.pf-hero__label::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--clr-primary);
    animation: pulse 2s infinite;
}

.pf-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--clr-text-dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.pf-hero__title-accent {
    color: var(--clr-primary);
    font-size: 1.25em;
    display: block;
    font-weight: 800;
}

.pf-hero__desc {
    font-size: 1.05rem;
    color: var(--clr-text);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.pf-hero__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* Hero stats (horizontal — legacy, unused) */
.pf-hero__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.pf-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pf-stat__icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: rgba(30,64,175,0.1);
    border: 1px solid rgba(30,64,175,0.22);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pf-stat__icon img { width: 22px; height: 22px; }
.pf-stat__num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-text-dark);
    line-height: 1.1;
}
.pf-stat__num span { color: var(--clr-primary); }
.pf-stat__label {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    line-height: 1.3;
    max-width: 80px;
}

/* Hero stats — вертикальная колонка (3-я колонка hero) */
.pf-hero__stats-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: stretch;
    justify-content: flex-start;
    padding-top: 90px;
}
.pf-stat-v {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 14px 18px;
    background: transparent;
    border: 1px solid rgba(30,64,175,0.2);
    border-radius: var(--radius-md);
    flex: 1;
    transition: border-color var(--transition), background var(--transition);
}
.pf-stat-v:hover {
    border-color: rgba(30,64,175,0.4);
    background: rgba(30,64,175,0.04);
}

/* Крупное число (25+) */
.pf-stat-v--number { gap: 6px; justify-content: center; }
.pf-stat-v__big {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--clr-primary);
}

/* Подпись */
.pf-stat-v__sublabel {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

/* Иконка */
.pf-stat-v__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(30,64,175,0.08);
    border: 1px solid rgba(30,64,175,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}
.pf-stat-v__icon svg {
    width: 26px;
    height: 26px;
}

/* Hero visual */
.pf-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pf-hero__visual-wrap {
    position: relative;
    width: 100%;
    max-width: 580px;
}
/* Голубое свечение позади фото */
.pf-hero__visual-wrap::before {
    content: '';
    position: absolute;
    top: 10%; left: 5%;
    width: 90%; height: 80%;
    background: radial-gradient(ellipse at 60% 50%, rgba(30,100,220,0.12) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
/* Нижняя тень-отражение */
.pf-hero__visual-wrap::after {
    content: '';
    position: absolute;
    bottom: -18px; left: 10%; right: 10%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(30,64,175,0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(8px);
}
.pf-hero__img-main {
    width: 100%;
    position: relative;
    z-index: 1;
    /* PNG с прозрачным фоном — синяя тень под объектом */
    filter: drop-shadow(0 24px 48px rgba(30,64,175,0.3))
            drop-shadow(0 8px 20px rgba(0,0,0,0.15));
    animation: floatY 6s ease-in-out infinite;
    transform-origin: center bottom;
}
.pf-hero__badge {
    position: absolute;
    top: 16px;
    right: -16px;
    background: rgba(240,246,255,0.97);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-card);
    z-index: 10;
}
.pf-hero__badge-icon { width: 32px; height: 32px; }
.pf-hero__badge-text { font-size: 0.78rem; font-weight: 600; color: var(--clr-text-dark); }
.pf-hero__badge-sub { font-size: 0.68rem; color: var(--clr-text-muted); }

.pf-hero__note {
    font-size: 0.92rem;
    color: var(--clr-text);
    font-weight: 500;
    margin-top: 12px;
}

/* ================================================================
   PARTNERS
   ================================================================ */
.pf-partners__inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.pf-partners__label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
}
.pf-partners__logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    gap: 32px;
    flex-wrap: wrap;
}
.pf-partner-logo {
    opacity: 0.5;
    transition: opacity var(--transition), filter var(--transition);
    filter: brightness(0) saturate(0);
}
.pf-partner-logo:hover { opacity: 0.9; filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(500%) hue-rotate(200deg); }
.pf-partner-logo img { height: 28px; width: auto; }

/* ================================================================
   COMPARISON — вариант А+2 (фото по центру)
   ================================================================ */

/* Внешняя обёртка — 3 колонки */
.pf-cmp-split {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 52px;
    box-shadow: var(--shadow-card);
}

/* Боковые панели */
.pf-cmp-panel {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}
.pf-cmp-panel--bad  { background: rgba(220,38,38,0.05); }
.pf-cmp-panel--good { background: rgba(30,64,175,0.05); border-left: 1px solid var(--clr-border); }

/* Заголовок панели */
.pf-cmp-panel__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid;
}
.pf-cmp-panel--bad  .pf-cmp-panel__head { color: #dc2626; border-color: #dc2626; }
.pf-cmp-panel--good .pf-cmp-panel__head { color: var(--clr-primary); border-color: var(--clr-primary); }

/* Иконки */
.pf-cmp-icon     { flex-shrink: 0; width: 22px; height: 22px; }
.pf-cmp-icon--sm { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }

/* Списки */
.pf-cmp-list { display: flex; flex-direction: column; gap: 18px; list-style: none; }
.pf-cmp-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
.pf-cmp-item--bad  { color: var(--clr-text-dark); }
.pf-cmp-item--bad  .pf-cmp-icon--sm { color: #dc2626; }
.pf-cmp-item--good { color: var(--clr-text-dark); }
.pf-cmp-item--good .pf-cmp-icon--sm { color: var(--clr-primary); }

/* Центральная колонка с фото */
.pf-cmp-photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px 20px;
    background: #e8f0ff;
    border-left: 1px solid var(--clr-border);
    border-right: 1px solid var(--clr-border);
}
.pf-cmp-photo {
    width: 100%;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(30,64,175,0.22))
            drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}
.pf-cmp-photo-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}

/* Photo cards inside center column */
.pf-cmp-photo-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.pf-cmp-photo-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(30,64,175,0.12);
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.pf-cmp-photo-divider {
    width: 100%;
    height: 1px;
    background: var(--clr-border);
    margin: 6px 0;
}
.pf-cmp-photo-real {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-card);
}
/* Responsive */
@media (max-width: 900px) {
    .pf-cmp-split {
        grid-template-columns: 1fr;
    }
    .pf-cmp-photo-col {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--clr-border);
        border-bottom: 1px solid var(--clr-border);
        padding: 24px;
    }
    .pf-cmp-panel--good { border-left: none; }
}

/* ================================================================
   MATERIALS  (redesigned)
   ================================================================ */
.pf-mat__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.pf-mat {
    background: var(--clr-bg-light);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}
.pf-mat:hover {
    border-color: var(--clr-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.pf-mat__top {
    padding: 24px 22px 18px;
    border-bottom: 1px solid var(--clr-border);
    position: relative;
}
.pf-mat__top::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--clr-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pf-mat__code {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.pf-mat__fullname {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}
.pf-mat__visual {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,64,175,0.03);
}
.pf-mat__visual svg {
    width: 100%;
    max-width: 110px;
    height: auto;
    color: var(--clr-primary);
}
.pf-mat__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 18px 18px;
}
.pf-mat__tag {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--clr-primary);
    background: rgba(30,64,175,0.08);
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ================================================================
   UNIQUE SECTION
   ================================================================ */
.pf-unique__header { text-align: center; margin-bottom: 48px; }
.pf-unique__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-primary);
    background: rgba(30,64,175,0.1);
    border: 1px solid rgba(30,64,175,0.2);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.pf-unique__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pf-unique__card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 36px 28px;
    background: rgba(255,255,255,0.6);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.pf-unique__card:hover {
    border-color: rgba(30,64,175,0.35);
    box-shadow: 0 8px 32px rgba(30,64,175,0.08);
}
.pf-unique__card--accent {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
}
.pf-unique__card--accent:hover {
    border-color: var(--clr-primary-d);
    box-shadow: 0 8px 40px rgba(30,64,175,0.28);
}
.pf-unique__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(30,64,175,0.1);
    border: 1px solid rgba(30,64,175,0.18);
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}
.pf-unique__card--accent .pf-unique__icon {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.pf-unique__icon svg { width: 24px; height: 24px; }
.pf-unique__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.3;
}
.pf-unique__card--accent .pf-unique__title { color: #fff; }
.pf-unique__text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}
.pf-unique__card--accent .pf-unique__text { color: rgba(255,255,255,0.85); }
.pf-unique__text strong { color: var(--clr-primary); font-weight: 700; }
.pf-unique__card--accent .pf-unique__text strong { color: #fff; }

/* ================================================================
   APPLICATIONS  (redesigned)
   ================================================================ */
.pf-ind__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.pf-ind {
    background: var(--clr-bg-light);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-card);
}
.pf-ind:hover {
    border-color: var(--clr-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.pf-ind:hover .pf-ind__icon svg {
    color: var(--clr-primary);
}
.pf-ind__num {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(30,64,175,0.07);
    position: absolute;
    top: 8px;
    right: 14px;
    letter-spacing: -0.04em;
    pointer-events: none;
    font-variant-numeric: tabular-nums;
}
.pf-ind__icon {
    width: 52px;
    height: 52px;
    background: rgba(30,64,175,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.pf-ind:hover .pf-ind__icon {
    background: rgba(30,64,175,0.14);
}
.pf-ind__icon svg {
    width: 28px;
    height: 28px;
    color: var(--clr-primary);
    transition: color var(--transition);
}
.pf-ind__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.35;
}

/* ================================================================
   TECHNOLOGY
   ================================================================ */
.pf-tech__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.pf-tech-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.pf-tech-item:hover {
    border-color: var(--clr-primary);
    background: var(--clr-card-hover);
}
.pf-tech-item__icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: rgba(30,64,175,0.08);
    border: 1px solid rgba(30,64,175,0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pf-tech-item__icon img { width: 30px; height: 30px; }
.pf-tech-item__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    line-height: 1.4;
}

/* ================================================================
   CTA / ФОРМА
   ================================================================ */
.pf-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.pf-cta__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--clr-text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.pf-cta__title span { color: var(--clr-primary); }
.pf-cta__desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.pf-cta__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pf-cta__feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--clr-text);
}
.pf-cta__feat-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--clr-primary);
    flex-shrink: 0;
}

/* Form */
.pf-form {
    background: rgba(255,255,255,0.75);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}
.pf-form__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 28px;
    text-align: center;
}
.pf-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.pf-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.pf-form__field:last-of-type { margin-bottom: 0; }
.pf-form__label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}
.pf-form__input,
.pf-form__select {
    width: 100%;
    padding: 11px 14px;
    background: #ffffff;
    border: 1px solid rgba(30,64,175,0.2);
    border-radius: var(--radius-sm);
    color: var(--clr-text-dark);
    font-size: 0.9rem;
    font-family: var(--font-main);
    transition: border-color var(--transition);
    outline: none;
    appearance: none;
}
.pf-form__input::placeholder { color: var(--clr-text-muted); }
.pf-form__input:focus,
.pf-form__select:focus { border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(30,64,175,0.1); }
.pf-form__select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b89b0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }
.pf-form__select option { background: #ffffff; color: var(--clr-text-dark); }

.pf-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 20px;
    cursor: pointer;
}
.pf-form__check input[type="checkbox"] {
    width: 16px; height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--clr-primary);
    cursor: pointer;
}
.pf-form__check-text {
    font-size: 0.76rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}
.pf-form__check-text a { color: var(--clr-primary); text-decoration: underline; }
.pf-form__submit { width: 100%; }
.pf-form__submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* Honeypot — полностью скрыт от людей */
.pf-form__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0; height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}

/* Результат отправки формы */
.pf-form__result {
    display: none;
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}
.pf-form__result--success {
    display: block;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: #065f46;
}
.pf-form__result--error {
    display: block;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
    color: #991b1b;
}

/* reCAPTCHA badge — сдвигаем, чтобы не перекрывал UI */
.grecaptcha-badge { opacity: 0.4; transition: opacity 0.3s; }
.grecaptcha-badge:hover { opacity: 1; }

/* ================================================================
   FAQ SECTION
   ================================================================ */
.pf-faq__header { text-align: center; margin-bottom: 48px; }

.pf-faq__list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pf-faq__item {
    border-bottom: 1px solid var(--clr-border);
}
.pf-faq__item:first-child { border-top: 1px solid var(--clr-border); }

.pf-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
    font-family: var(--font-main);
    line-height: 1.4;
}
.pf-faq__q:hover { color: var(--clr-primary); }

.pf-faq__arrow {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--clr-text-muted);
    transition: transform 0.3s ease, color var(--transition);
}
.pf-faq__item--open .pf-faq__arrow {
    transform: rotate(180deg);
    color: var(--clr-primary);
}
.pf-faq__item--open .pf-faq__q { color: var(--clr-primary); }

.pf-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.pf-faq__item--open .pf-faq__a {
    max-height: 800px;
    padding-bottom: 20px;
}
.pf-faq__a p {
    font-size: 0.92rem;
    color: var(--clr-text);
    line-height: 1.7;
    padding: 0 4px;
}
.pf-faq__a p + p { margin-top: 10px; }
.pf-faq__a a { color: var(--clr-primary); text-decoration: underline; }

.pf-faq__ul {
    list-style: none;
    margin: 12px 0 10px 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pf-faq__ul li {
    font-size: 0.9rem;
    color: var(--clr-text);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}
.pf-faq__ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--clr-primary);
    font-weight: 700;
}

/* ================================================================
   CONTACTS SECTION
   ================================================================ */
.pf-section--contacts { background: var(--clr-bg-dark); }

.pf-contacts__inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

.pf-contacts__block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.pf-contacts__icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(30,64,175,0.08);
    border: 1px solid rgba(30,64,175,0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
}
.pf-contacts__icon svg { width: 20px; height: 20px; }

.pf-contacts__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.pf-contacts__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    line-height: 1.3;
    transition: color var(--transition);
}
a.pf-contacts__value:hover { color: var(--clr-primary); }
.pf-contacts__sub {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 3px;
}

.pf-contacts__map {
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-card);
}
.pf-contacts__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 900px) {
    .pf-contacts__inner { grid-template-columns: 1fr; gap: 36px; }
    .pf-contacts__map { height: 300px; }
}
@media (max-width: 480px) {
    .pf-contacts__map { height: 240px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.pf-footer {
    background: #dbeafe;
    border-top: 1px solid var(--clr-border);
    padding: 40px 0 0;
}
.pf-footer__inner {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    padding-bottom: 32px;
}
.pf-footer__brand { flex: 1; }
.pf-footer__logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--clr-primary);
    margin-bottom: 8px;
}
.pf-footer__tagline {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}
.pf-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pf-footer__contact p, .pf-footer__contact a {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    transition: color var(--transition);
}
.pf-footer__contact a:hover { color: var(--clr-primary); }
.pf-footer__links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pf-footer__links a {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}
.pf-footer__links a:hover { color: var(--clr-primary); }
.pf-footer__bottom {
    border-top: 1px solid var(--clr-border);
    padding: 16px 0;
    text-align: center;
}
.pf-footer__bottom p {
    font-size: 0.80rem;
    color: var(--clr-text-muted);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.8); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pf-animate { animation: fadeInUp 0.6s ease both; }
.pf-animate--d1 { animation-delay: 0.1s; }
.pf-animate--d2 { animation-delay: 0.2s; }
.pf-animate--d3 { animation-delay: 0.3s; }
.pf-animate--d4 { animation-delay: 0.4s; }

/* ================================================================
   RESPONSIVE  (порядок: от большего breakpoint к меньшему)
   ================================================================ */

/* ── 1100px: широкий планшет ── */
@media (max-width: 1100px) {
    .pf-tech__grid { grid-template-columns: repeat(3, 1fr); }
    .pf-ind__grid  { grid-template-columns: repeat(3, 1fr); }
}

/* ── 1060px: узкий десктоп ── */
@media (max-width: 1060px) {
    .pf-hero__inner { grid-template-columns: 1fr 360px 200px; gap: 28px; }
}

/* ── 900px: планшет ── */
@media (max-width: 900px) {
    .pf-hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .pf-hero__stats-col {
        grid-column: 1 / -1;
        flex-direction: row;
        padding: 0;
    }
    .pf-stat-v {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid var(--clr-border);
        padding: 16px 12px;
    }
    .pf-stat-v:last-child { border-right: none; }
    .pf-hero__visual-wrap { max-width: 340px; }
    .pf-mat__grid    { grid-template-columns: repeat(2, 1fr); }
    .pf-unique__grid { grid-template-columns: repeat(2, 1fr); }
    .pf-cta__inner   { grid-template-columns: 1fr; gap: 40px; }
    .pf-header__contacts .pf-btn { display: none; }
}

/* ── 768px: мобильный (главная точка адаптации) ── */
@media (max-width: 768px) {
    :root { --header-h: 60px; }

    .pf-container { padding: 0 16px; }
    .pf-section   { padding: 40px 0; }
    .pf-section--partners { padding: 24px 0; }

    /* Шапка */
    .pf-burger { display: flex; margin-left: auto; }
    .pf-header__contacts { display: none; }
    .pf-nav {
        position: fixed;
        top: calc(var(--header-h) + var(--sat)); left: 0; right: 0;
        background: rgba(240,246,255,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 16px 24px;
        transform: translateY(-110%);
        /* visibility:hidden kills backdrop-filter ghost on iOS Safari */
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0s linear 0.3s;
        border-bottom: 1px solid var(--clr-border);
        box-shadow: 0 8px 24px rgba(30,64,175,0.12);
        z-index: 999;
    }
    .pf-nav.open {
        transform: translateY(0);
        visibility: visible;
        transition: transform 0.3s ease, visibility 0s linear 0s;
    }
    .pf-nav ul { flex-direction: column; gap: 4px; }
    .pf-nav ul li a { font-size: 1rem; padding: 13px 16px; border-radius: var(--radius-md); }

    /* Гриды */
    .pf-tech__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pf-ind__grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    /* Форма */
    .pf-form__row { grid-template-columns: 1fr; }
    .pf-form      { padding: 24px 18px; }

    /* Партнёры */
    .pf-partners__inner  { flex-direction: column; gap: 16px; }
    .pf-partners__label  { white-space: normal; text-align: center; }
    .pf-partners__logos  { justify-content: center; gap: 20px; }

    /* Уникальность */
    .pf-unique__grid { grid-template-columns: 1fr; gap: 16px; }
    .pf-unique__header { margin-bottom: 32px; }

    /* Футер */
    .pf-footer__inner { flex-direction: column; gap: 28px; padding-bottom: 28px; }

    /* Секция title */
    .pf-section-title { font-size: 1.5rem; }
    .pf-section-subtitle { margin-bottom: 36px; }
}

/* ── 640px: маленький мобильный ── */
@media (max-width: 640px) {
    /* Hero — одна колонка, изображение вверху */
    .pf-hero__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0 48px;
    }
    .pf-hero__visual { order: -1; }
    .pf-hero__visual-wrap { max-width: 240px; margin: 0 auto; }

    /* Stats-col под hero — вертикально */
    .pf-hero__stats-col {
        grid-column: 1;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .pf-stat-v {
        flex: 1 1 calc(50% - 8px);
        border-right: none;
        border: 1px solid var(--clr-border);
        border-radius: var(--radius-md);
    }
    .pf-stat-v:last-child { border: 1px solid var(--clr-border); }

    /* Кнопки hero */
    .pf-hero__btns { flex-direction: column; }
    .pf-hero__btns .pf-btn { width: 100%; justify-content: center; }

    .pf-hero__title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
    .pf-hero__desc  { font-size: 0.95rem; }
}

/* ── 480px: очень маленький ── */
@media (max-width: 480px) {
    .pf-mat__grid  { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pf-ind__grid  { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pf-tech__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pf-cmp-panel  { padding: 24px 16px; }
    .pf-form       { padding: 20px 14px; }
    .pf-unique__card { padding: 24px 20px; }
}

/* ================================================================
   INNER PAGES — component.php (О нас, FAQ)
   ================================================================ */

/* Тело страницы сдвигаем вниз от фиксированной шапки */
.pf-body--inner { background: var(--clr-bg); }

/* ── Page Hero (заголовок страницы) ────────────────────────────── */
.pf-page-hero {
    background: var(--clr-bg-dark);
    border-bottom: 1px solid var(--clr-border);
    padding: calc(100px + var(--sat)) 0 48px;
}
.pf-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}
.pf-page-hero__breadcrumb a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: color var(--transition);
}
.pf-page-hero__breadcrumb a:hover { color: var(--clr-primary-dark); }
.pf-page-hero__sep { opacity: 0.5; }
.pf-page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--clr-text-dark);
    line-height: 1.15;
    margin: 0;
}

/* ── Page Body (контент) ────────────────────────────────────────── */
.pf-page-body {
    padding: 64px 0 96px;
}

/* Скрываем лишние элементы, которые Joomla рендерит в статьях */
.com-content-article .article-info,
.com-content-article .article-footer,
.com-content-article .article-tags,
.item-page .article-info,
.item-page .article-footer,
.item-page .com-tags-list,
.item-page .article-info-term { display: none !important; }

/* Скрываем дублирующий H1-заголовок, который Joomla добавляет сверху статьи
   (мы уже показываем заголовок в pf-page-hero__title) */
.com-content-article__title,
.com-content-article .page-header,
.item-page > h1,
.item-page > h2.item-title,
h1.com-content-article__title { display: none !important; }

/* ── Статья: обёртка ────────────────────────────────────────────── */
.pf-article {
    max-width: 820px;
}
.pf-lead-text {
    font-size: 1.15rem;
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--clr-border);
}
.pf-lead-text a { color: var(--clr-primary); }

/* ── Статистика (О нас) ─────────────────────────────────────────── */
.pf-astat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
    padding: 36px;
    background: var(--clr-bg-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}
.pf-astat {
    text-align: center;
    padding: 16px 8px;
}
.pf-astat__num {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.pf-astat__label {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Секции статьи ───────────────────────────────────────────────── */
.pf-article__section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--clr-border);
}
.pf-article__section:last-of-type {
    border-bottom: none;
}
.pf-article__section h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--clr-text-dark);
    margin: 0 0 20px;
}
.pf-article__section p {
    font-size: 0.97rem;
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 14px;
}
.pf-article__section p:last-child { margin-bottom: 0; }

/* Список в статье */
.pf-article__list {
    list-style: none;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pf-article__list li {
    font-size: 0.95rem;
    color: var(--clr-text);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.pf-article__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--clr-primary);
    font-weight: 700;
}

/* ── CTA блок в статье ──────────────────────────────────────────── */
.pf-article__cta {
    background: var(--clr-primary);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-top: 56px;
    text-align: center;
}
.pf-article__cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.pf-article__cta p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 28px;
}
.pf-article__cta .pf-btn--primary {
    background: #fff;
    color: var(--clr-primary);
}
.pf-article__cta .pf-btn--primary:hover {
    background: rgba(255,255,255,0.9);
}
.pf-article__cta .pf-btn--outline {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.pf-article__cta .pf-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ── Адаптив: внутренние страницы ────────────────────────────────── */
@media (max-width: 768px) {
    .pf-page-hero { padding: calc(90px + var(--sat)) 0 36px; }
    .pf-page-hero__title { font-size: clamp(1.6rem, 6vw, 2rem); }
    .pf-page-body { padding: 40px 0 64px; }
    .pf-astat-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 24px 16px; }
    .pf-article__cta { padding: 36px 24px; }
}
@media (max-width: 480px) {
    .pf-astat-grid { grid-template-columns: 1fr; gap: 12px; }
    .pf-astat { padding: 12px 0; }
    .pf-article__section h2 { font-size: 1.2rem; }
    .pf-article__cta { padding: 28px 20px; }
}
