/* ============================================================
   Лендинг «Зарядка в паркинге ЖК»
   Доп. стили к main.css. Используют существующие .catalog-header/.site-footer/.modal.
   Все классы в зоне .lp-shell, чтобы не конфликтовать с глобальными.
   ============================================================ */

.lp-shell {
    color: #fff;
    background:
        radial-gradient(1200px 700px at 80% -10%, rgba(0, 178, 255, 0.10), transparent 60%),
        radial-gradient(900px 600px at 5% 10%, rgba(0, 178, 255, 0.06), transparent 60%),
        radial-gradient(900px 500px at 50% 110%, rgba(0, 178, 255, 0.05), transparent 60%),
        #0E1A2E;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.lp-shell main {
    position: relative;
    z-index: 1;
}

/* ===== общие секции ===== */
.lp-shell .lp-hero,
.lp-shell .lp-audiences,
.lp-shell .lp-pains,
.lp-shell .lp-steps,
.lp-shell .lp-equipment,
.lp-shell .lp-cases,
.lp-shell .lp-process,
.lp-shell .lp-faq,
.lp-shell .lp-cta {
    padding: clamp(48px, 6vw, 80px) 30px;
    position: relative;
    z-index: 1;
}

.lp-shell .lp-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.lp-shell .lp-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .005em;
    word-break: break-word;
    margin: 0 0 16px;
}

.lp-shell .lp-section-title span { color: #00B2FF; }

.lp-shell .lp-section-lead {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    margin: 0 0 40px;
    max-width: 720px;
}

/* ===== кнопки ===== */
.lp-shell .lp-btn-primary {
    padding: 14px 28px;
    border-radius: 10px;
    background: #00B2FF;
    color: #0E1A2E;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, transform .2s;
    font-family: inherit;
    text-decoration: none;
}

.lp-shell .lp-btn-primary:hover {
    background: #33C5FF;
    transform: translateY(-2px);
}

.lp-shell .lp-btn-secondary {
    padding: 14px 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.33);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, border-color .2s;
}

.lp-shell .lp-btn-secondary:hover {
    border-color: #00B2FF;
    background: rgba(0, 178, 255, 0.08);
}

/* ===== HERO ===== */
.lp-shell .lp-hero .lp-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-shell .lp-hero__crumbs {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.lp-shell .lp-hero__crumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color .2s;
}

.lp-shell .lp-hero__crumbs a:hover { color: #B2E0FF; }
.lp-shell .lp-hero__crumbs span { opacity: .5; }
.lp-shell .lp-hero__crumbs .is-current { color: rgba(255, 255, 255, 0.55); opacity: 1; }

.lp-shell .lp-hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 4.5vw, 56px);
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
    word-break: break-word;
    letter-spacing: .005em;
    margin: 0 0 20px;
}

.lp-shell .lp-hero__title span { color: #00B2FF; }

.lp-shell .lp-hero__lead {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 28px;
    max-width: 560px;
}

.lp-shell .lp-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.lp-shell .lp-hero__benefits {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.lp-shell .lp-hero__benefits li {
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.35;
}

.lp-shell .lp-hero__benefits strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2vw, 26px);
    color: #00B2FF;
    margin-bottom: 4px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lp-shell .lp-hero__benefits strong .currency {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85em;
    margin-left: 2px;
}

.lp-shell .lp-hero__image {
    margin: 0;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: linear-gradient(135deg, #0A1426 0%, #14253F 100%);
}

.lp-shell .lp-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.lp-shell .lp-hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg,
        rgba(14, 26, 46, 0.15) 0%,
        transparent 30%,
        transparent 70%,
        rgba(14, 26, 46, 0.2) 100%);
}

/* ===== AUDIENCES ===== */
.lp-shell .lp-audiences__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.lp-shell .lp-aud-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, background .25s;
}

.lp-shell .lp-aud-card:hover {
    border-color: rgba(0, 178, 255, 0.35);
    background: rgba(0, 178, 255, 0.04);
}

.lp-shell .lp-aud-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 178, 255, 0.10);
    border: 1px solid rgba(0, 178, 255, 0.3);
    color: #00B2FF;
    margin-bottom: 6px;
}

.lp-shell .lp-aud-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 1.8vw, 22px);
    text-transform: uppercase;
    color: #fff;
    margin: 16px 0 12px;
    word-break: break-word;
    line-height: 1.15;
}

.lp-shell .lp-aud-card p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.lp-shell .lp-aud-card__link {
    margin-top: auto;
    color: #00B2FF;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 178, 255, 0.35);
    align-self: flex-start;
    padding-bottom: 2px;
    text-decoration: none;
    transition: color .2s, border-color .2s;
}

.lp-shell .lp-aud-card__link:hover { color: #B2E0FF; border-color: #B2E0FF; }

/* ===== PAINS ===== */
.lp-shell .lp-pains__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.lp-shell .lp-pain {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    gap: 18px;
}

.lp-shell .lp-pain__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 178, 255, 0.10);
    border: 1px solid rgba(0, 178, 255, 0.3);
    color: #00B2FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp-shell .lp-pain h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: clamp(17px, 1.6vw, 20px);
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
    word-break: break-word;
    line-height: 1.15;
}

.lp-shell .lp-pain p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== STEPS ===== */
.lp-shell .lp-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lp-shell .lp-steps__list li {
    position: relative;
    padding: 24px 28px 24px 96px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}

.lp-shell .lp-steps__num {
    position: absolute;
    left: 24px;
    top: 22px;
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #00B2FF;
    font-weight: 500;
    line-height: 1;
}

.lp-shell .lp-steps__list h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: clamp(17px, 1.6vw, 20px);
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.15;
    word-break: break-word;
}

.lp-shell .lp-steps__list p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.lp-shell .lp-steps__time {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    border: 1px solid rgba(0, 178, 255, 0.4);
    color: #B2E0FF;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

/* ===== EQUIPMENT ===== */
.lp-shell .lp-equipment__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.lp-shell .lp-eq-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    transition: border-color .25s;
}

.lp-shell .lp-eq-card:hover { border-color: rgba(0, 178, 255, 0.35); }

.lp-shell .lp-eq-card__image {
    margin: 0 0 20px;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #0A1424;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.lp-shell .lp-eq-card__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lp-shell .lp-eq-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 1.8vw, 22px);
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.15;
    word-break: break-word;
}

.lp-shell .lp-eq-card__sub {
    color: #B2E0FF;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 16px;
}

.lp-shell .lp-eq-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-shell .lp-eq-card ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    padding-left: 18px;
    position: relative;
    line-height: 1.45;
}

.lp-shell .lp-eq-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 1px solid #00B2FF;
    border-radius: 2px;
    transform: rotate(45deg);
}

.lp-shell .lp-eq-card__price {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: clamp(22px, 2.2vw, 28px);
    color: #fff;
    margin: 0 0 14px;
    line-height: 1;
}

.lp-shell .lp-eq-card > a {
    margin-top: auto;
    align-self: flex-start;
    color: #00B2FF;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 178, 255, 0.35);
    padding-bottom: 2px;
    text-decoration: none;
    transition: color .2s, border-color .2s;
}

.lp-shell .lp-eq-card > a:hover { color: #B2E0FF; border-color: #B2E0FF; }

.lp-shell .lp-equipment__more { margin: 32px 0 0; text-align: center; }

.lp-shell .lp-equipment__more a {
    color: #00B2FF;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 178, 255, 0.4);
    padding-bottom: 3px;
    text-decoration: none;
}

.lp-shell .lp-equipment__more a:hover { color: #B2E0FF; border-color: #B2E0FF; }

/* ===== CASES ===== */
.lp-shell .lp-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.lp-shell .lp-case {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color .25s, transform .3s;
}

.lp-shell .lp-case:hover {
    border-color: rgba(0, 178, 255, 0.35);
    transform: translateY(-3px);
}

.lp-shell .lp-case__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #0A1424;
    overflow: hidden;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-shell .lp-case__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-shell .lp-case__image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(14, 26, 46, 0.5) 100%);
}

.lp-shell .lp-case__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-shell .lp-case__tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    border: 1px solid rgba(0, 178, 255, 0.4);
    border-radius: 6px;
    color: #B2E0FF;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.lp-shell .lp-case h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 1.8vw, 22px);
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px;
    word-break: break-word;
    line-height: 1.15;
}

.lp-shell .lp-case p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.lp-shell .lp-case__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: auto 0 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-shell .lp-case__meta > div { display: flex; flex-direction: column; gap: 4px; }

.lp-shell .lp-case__meta dt {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0;
}

.lp-shell .lp-case__meta dd {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-weight: 500;
    line-height: 1;
}

/* ===== PROCESS GALLERY ===== */
.lp-shell .lp-process__inner { max-width: 1280px; margin: 0 auto; }

.lp-shell .lp-process__masonry {
    column-count: 4;
    column-gap: 16px;
    column-fill: balance;
    margin-top: 40px;
}

.lp-shell .lp-process__item {
    display: block;
    width: 100%;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin: 0 0 16px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0A1424;
    transition: transform .3s, border-color .3s;
}

.lp-shell .lp-process__item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 178, 255, 0.4);
}

.lp-shell .lp-process__item img {
    display: block;
    width: 100%;
    height: auto;
}

.lp-shell .lp-process__item--tall img { aspect-ratio: 3 / 4; object-fit: cover; }
.lp-shell .lp-process__item--wide img { aspect-ratio: 4 / 3; object-fit: cover; }

.lp-shell .lp-process__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    margin: 0;
    background: linear-gradient(to top,
        rgba(14, 26, 46, 0.95) 0%,
        rgba(14, 26, 46, 0.7) 60%,
        transparent 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s;
}

.lp-shell .lp-process__item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.lp-shell .lp-process__more { margin: 40px 0 0; text-align: center; }

.lp-shell .lp-process__more a {
    color: #00B2FF;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px dashed rgba(0, 178, 255, 0.5);
    padding-bottom: 2px;
    text-decoration: none;
    transition: border-bottom-style .2s, color .2s;
}

.lp-shell .lp-process__more a:hover { border-bottom-style: solid; color: #B2E0FF; }

/* ===== FAQ ===== */
.lp-shell .lp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 880px;
}

.lp-shell .lp-faq details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s, background .2s;
}

.lp-shell .lp-faq details[open] {
    border-color: rgba(0, 178, 255, 0.35);
    background: rgba(0, 178, 255, 0.04);
}

.lp-shell .lp-faq summary {
    cursor: pointer;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.lp-shell .lp-faq summary::-webkit-details-marker { display: none; }

.lp-shell .lp-faq summary::after {
    content: "+";
    color: #00B2FF;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform .25s;
}

.lp-shell .lp-faq details[open] summary::after { transform: rotate(45deg); }

.lp-shell .lp-faq details p {
    margin: 0;
    padding: 0 22px 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== CTA ===== */
.lp-shell .lp-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 60px);
    background: linear-gradient(135deg, rgba(0, 178, 255, 0.12), rgba(0, 178, 255, 0.02));
    border: 1px solid rgba(0, 178, 255, 0.3);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-shell .lp-cta__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(500px 280px at 100% 0%, rgba(0, 178, 255, 0.15), transparent 60%);
}

.lp-shell .lp-cta__title {
    text-align: center;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    word-break: break-word;
    letter-spacing: .005em;
}

.lp-shell .lp-cta__title span { color: #00B2FF; }

.lp-shell .lp-cta__lead {
    text-align: center;
    margin: 0 auto 28px;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    position: relative;
    z-index: 1;
}

.lp-shell .lp-cta__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.lp-shell .lp-cta__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lp-shell .lp-cta__form input,
.lp-shell .lp-cta__form select {
    padding: 14px 18px;
    background: rgba(14, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s, background .2s;
    width: 100%;
}

.lp-shell .lp-cta__form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2300B2FF' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 42px;
}

.lp-shell .lp-cta__form select option { background: #0E1A2E; color: #fff; }

.lp-shell .lp-cta__form input:focus,
.lp-shell .lp-cta__form select:focus {
    outline: none;
    border-color: #00B2FF;
    background: rgba(14, 26, 46, 0.85);
}

.lp-shell .lp-cta__form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.lp-shell .lp-cta__submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    justify-content: center;
    letter-spacing: .02em;
}

.lp-shell .lp-cta__privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.lp-shell .lp-cta__privacy a {
    color: #00B2FF;
    border-bottom: 1px solid rgba(0, 178, 255, 0.3);
    text-decoration: none;
}

.lp-shell .lp-cta__success {
    display: none;
    padding: 32px;
    text-align: center;
    color: #B2E0FF;
    font-size: 16px;
    background: rgba(0, 178, 255, 0.08);
    border: 1px solid rgba(0, 178, 255, 0.3);
    border-radius: 12px;
}

.lp-shell .lp-cta__inner.is-sent .lp-cta__form { display: none; }
.lp-shell .lp-cta__inner.is-sent .lp-cta__success { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .lp-shell .lp-process__masonry { column-count: 3; }
}

@media (max-width: 990px) {
    .lp-shell .lp-hero .lp-inner { grid-template-columns: 1fr; gap: 30px; }
    .lp-shell .lp-hero__image { order: -1; }
    .lp-shell .lp-hero__image img { aspect-ratio: 16 / 10; }
    .lp-shell .lp-audiences__grid,
    .lp-shell .lp-equipment__grid,
    .lp-shell .lp-cases__grid { grid-template-columns: 1fr; }
    .lp-shell .lp-steps__list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .lp-shell .lp-process__masonry { column-count: 2; }
    .lp-shell .lp-process__item figcaption {
        opacity: 1;
        transform: none;
        font-size: 12px;
        padding: 10px 12px;
    }
}

@media (max-width: 640px) {
    .lp-shell .lp-hero,
    .lp-shell .lp-audiences,
    .lp-shell .lp-pains,
    .lp-shell .lp-steps,
    .lp-shell .lp-equipment,
    .lp-shell .lp-cases,
    .lp-shell .lp-process,
    .lp-shell .lp-faq,
    .lp-shell .lp-cta { padding: 48px 20px; }
    .lp-shell .lp-hero__benefits { grid-template-columns: repeat(2, 1fr); }
    .lp-shell .lp-pains__grid { grid-template-columns: 1fr; }
    .lp-shell .lp-hero__actions { flex-direction: column; align-items: stretch; }
    .lp-shell .lp-hero__actions .lp-btn-primary,
    .lp-shell .lp-hero__actions .lp-btn-secondary { justify-content: center; width: 100%; }
    .lp-shell .lp-cta__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .lp-shell .lp-process__masonry { column-count: 1; }
}
