/* ══════════════════════════════════════════════════════
   ELETROCOL LOCKER — Page Styles
   Tom: clean e corporativo, mais estruturado que agente
   Paleta base: #13679C azul, #D98A2E laranja, #0F172A navy
   Diferencial: cards com borda left azul, steps numerados,
   layout assimétrico em imagens, fundo #F5F7FA
   ══════════════════════════════════════════════════════ */

/* ── Body override ─────────────────────────────────── */
.locker-page {
    background-color: #F5F7FA;
    color: var(--text-color, #1E293B);
}

/* ── Utilitários ───────────────────────────────────── */
.locker-highlight {
    color: var(--primary-blue, #13679C);
}
.locker-highlight-danger {
    color: #DC2626;
}
.locker-highlight-white {
    color: #fff;
}

.locker-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.locker-section-tag.primary {
    background: rgba(19, 103, 156, 0.1);
    color: var(--primary-blue, #13679C);
    border: 1px solid rgba(19, 103, 156, 0.22);
}
.locker-section-tag.danger {
    background: rgba(220, 38, 38, 0.09);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.18);
}
.locker-section-tag.center {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 20px;
}

/* ── Eyebrow ─────────────────────────────────────────── */
p.locker-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
p.locker-eyebrow.primary { color: #13679C; }
p.locker-eyebrow.danger  { color: #DC2626; }
p.locker-eyebrow.center  {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ── Section Heading — padrão centralizado com underline ── */
.locker-section-heading {
    text-align: center;
    margin-bottom: 16px;
}
.locker-section-heading h2 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #0F172A;
    line-height: 1.12;
    margin-bottom: 20px;
}
.locker-section-heading h2 .locker-heading-line {
    display: block;
}
/* underline decorativo abaixo do título */
.locker-section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: #13679C;
    margin: 0 auto 12px;
}
.locker-section-heading.danger::after {
    background: #DC2626;
}
.locker-section-heading.dark h2 {
    color: #fff;
}
.locker-section-heading.dark::after {
    background: #7DC4E8;
}
/* versão left-aligned para seções com grid texto+imagem */
.locker-section-heading.left {
    text-align: left;
}
.locker-section-heading.left::after {
    margin: 0 0 12px;
}

/* ── Botões ────────────────────────────────────────── */
.locker-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00A335;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.locker-btn-primary:hover {
    background: #008a2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 163, 53, 0.35);
}
.locker-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.32);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}
.locker-btn-secondary:hover {
    background: rgba(255,255,255,0.24);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════
   1. HERO
════════════════════════════════════════════════════ */
.locker-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.locker-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.locker-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.locker-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.75) 55%,
        rgba(19, 103, 156, 0.45) 100%
    );
}
.locker-hero-content {
    position: relative;
    z-index: 1;
    padding: 140px 0 80px;
}
.locker-hero-text {
    max-width: 680px;
}
.locker-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(19, 103, 156, 0.25);
    border: 1px solid rgba(19, 103, 156, 0.5);
    color: #7DC4E8;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.locker-hero-badge i {
    color: #13679C;
}
.locker-page .locker-hero-content h1 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: clamp(2.8rem, 6vw, 4.6rem) !important;
    font-weight: 900;
    color: #fff !important;
    line-height: 1.08;
    margin-bottom: 24px;
}
.locker-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}
.locker-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Stats strip */
.locker-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 20px 32px;
    width: fit-content;
    flex-wrap: wrap;
    gap: 8px;
}
.locker-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}
.locker-stat-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.locker-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.58);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.locker-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.18);
}

/* ════════════════════════════════════════════════════
   2. O PROBLEMA
════════════════════════════════════════════════════ */
.locker-problem {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid #E8EDF3;
}
.locker-problem-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}
.locker-page .locker-problem-text h2 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
    font-weight: 900;
    color: #0F172A !important;
    line-height: 1.12;
    margin-bottom: 12px;
}
.locker-page .locker-problem-text h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: #DC2626;
    margin-top: 16px;
}
.locker-problem-text > p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 28px;
}
.locker-problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.locker-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    color: #334155;
    line-height: 1.55;
}
.locker-problem-list li i {
    color: #DC2626;
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.locker-problem-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(220, 38, 38, 0.07);
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-left: 4px solid #DC2626;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #7F1D1D;
}
.locker-problem-result i {
    color: #DC2626;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Visual lado direito */
.locker-problem-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.locker-problem-icon-block {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.locker-problem-icon-block i {
    font-size: 4rem;
    color: rgba(19, 103, 156, 0.5);
}
.locker-problem-stats-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.locker-mini-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #DC2626;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.locker-mini-stat i {
    font-size: 1.4rem;
    color: #DC2626;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}
.locker-mini-stat div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.locker-mini-stat strong {
    font-size: 0.95rem;
    color: #0F172A;
    font-weight: 700;
}
.locker-mini-stat span {
    font-size: 0.78rem;
    color: #64748B;
}

/* ════════════════════════════════════════════════════
   3. A SOLUÇÃO
════════════════════════════════════════════════════ */
.locker-what {
    padding: 100px 0;
    background: #F5F7FA;
}
.locker-what-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
}
.locker-what-visual {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.locker-what-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}
.locker-what-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(19, 103, 156, 0.92);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}
.locker-page .locker-what-text h2 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
    font-weight: 900;
    color: #0F172A !important;
    line-height: 1.12;
    margin-bottom: 12px;
}
.locker-page .locker-what-text h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: #13679C;
    margin-top: 16px;
    margin-bottom: 8px;
}
.locker-what-text > p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 36px;
    font-size: 1.02rem;
}
.locker-what-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.locker-pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-left: 4px solid var(--primary-blue, #13679C);
    border-radius: 10px;
    padding: 16px 20px;
    transition: all 0.2s ease;
}
.locker-pillar:hover {
    box-shadow: 0 4px 20px rgba(19, 103, 156, 0.12);
    transform: translateX(4px);
}
.locker-pillar > i {
    font-size: 1.3rem;
    color: var(--primary-blue, #13679C);
    width: 28px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.locker-pillar > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.locker-pillar strong {
    font-size: 0.97rem;
    color: #0F172A;
    font-weight: 700;
}
.locker-pillar span {
    font-size: 0.83rem;
    color: #64748B;
}

/* ════════════════════════════════════════════════════
   4. COMO FUNCIONA
════════════════════════════════════════════════════ */
.locker-how {
    padding: 100px 0;
    background: linear-gradient(180deg, #0F172A 0%, #1a2f4e 100%);
}
.locker-how-header {
    text-align: center;
    margin-bottom: 48px;
}
.locker-how-header::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: #7DC4E8;
    margin: 16px auto 0;
}
.locker-page .locker-how-header h2 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
    font-weight: 900;
    color: #fff !important;
    line-height: 1.12;
    margin-bottom: 14px;
}
.locker-how-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.locker-how-visual {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 56px;
    max-height: 380px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.locker-how-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.locker-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}
.locker-step {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.25s ease;
}
.locker-step:hover {
    background: rgba(19, 103, 156, 0.2);
    border-color: rgba(19, 103, 156, 0.5);
    transform: translateY(-4px);
}
.locker-step-number {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: rgba(19, 103, 156, 0.8);
    text-transform: uppercase;
}
.locker-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(19, 103, 156, 0.25);
    border: 2px solid rgba(19, 103, 156, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #7DC4E8;
}
.locker-step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.locker-step-content p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
}
.locker-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    margin-top: 48px;
    color: rgba(19, 103, 156, 0.6);
    font-size: 1rem;
}

/* ════════════════════════════════════════════════════
   5. BENEFÍCIOS
════════════════════════════════════════════════════ */
.locker-benefits {
    padding: 100px 0;
    background: #fff;
}
.locker-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}
.locker-benefits-header::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: #13679C;
    margin: 16px auto 0;
}
.locker-page .locker-benefits-header h2 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
    font-weight: 900;
    color: #0F172A !important;
    line-height: 1.12;
}

.locker-benefits-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
}
.locker-benefits-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.locker-benefits-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}
/* stat banner acima dos cards de benefício */
.locker-benefits-stat-banner {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #0F172A 0%, #13679C 100%);
    border-radius: 14px;
    padding: 18px 24px;
    color: #fff;
}
.locker-benefits-stat-banner i {
    font-size: 1.8rem;
    color: #7DC4E8;
    flex-shrink: 0;
}
.locker-benefits-stat-banner strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
}
.locker-benefits-stat-banner span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    display: block;
}
.locker-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.locker-benefit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.25s ease;
}
.locker-benefit-card:hover {
    box-shadow: 0 8px 28px rgba(19, 103, 156, 0.1);
    border-color: rgba(19, 103, 156, 0.3);
    transform: translateY(-3px);
}
.locker-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.locker-benefit-icon.blue {
    background: rgba(19, 103, 156, 0.12);
    color: #13679C;
}
.locker-benefit-icon.green {
    background: rgba(0, 163, 53, 0.12);
    color: #00A335;
}
.locker-benefit-icon.orange {
    background: rgba(217, 138, 46, 0.12);
    color: #D98A2E;
}
.locker-benefit-text h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
}
.locker-benefit-text p {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════
   6. IDEAL PARA
════════════════════════════════════════════════════ */
.locker-targets {
    padding: 100px 0;
    background: #F5F7FA;
}
.locker-targets-header {
    text-align: center;
    margin-bottom: 60px;
}
.locker-targets-header::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: #D98A2E;
    margin: 16px auto 0;
}
.locker-page .locker-targets-header h2 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
    font-weight: 900;
    color: #0F172A !important;
    line-height: 1.12;
}
.locker-targets-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
}
.locker-targets-image {
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.locker-targets-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}
.locker-targets-image:hover img {
    transform: scale(1.03);
}
.locker-targets-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.locker-target-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.25s ease;
    cursor: default;
}
.locker-target-card:hover {
    border-color: rgba(19, 103, 156, 0.4);
    box-shadow: 0 4px 20px rgba(19, 103, 156, 0.1);
    transform: translateY(-2px);
}
.locker-target-card i {
    font-size: 1.4rem;
    color: var(--primary-blue, #13679C);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}
.locker-target-card span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1E293B;
}

/* ════════════════════════════════════════════════════
   7. CTA FINAL
════════════════════════════════════════════════════ */
.locker-cta {
    background: linear-gradient(135deg, #0F172A 0%, #13679C 100%);
    padding: 100px 0;
    text-align: center;
}
.locker-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.locker-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.85);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.locker-page .locker-cta-inner h2 {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: clamp(2.6rem, 5vw, 4rem) !important;
    font-weight: 900;
    color: #fff !important;
    line-height: 1.1;
    margin-bottom: 20px;
}
.locker-cta-inner > p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.locker-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00A335;
    color: #fff;
    padding: 18px 44px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.08rem;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 20px;
}
.locker-cta-btn:hover {
    background: #008a2d;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 163, 53, 0.4);
}
.locker-cta-sub {
    color: rgba(255,255,255,0.45);
    font-size: 0.83rem;
    margin-bottom: 32px;
}
.locker-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.locker-cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
}
.locker-cta-trust span i {
    color: #00A335;
}

/* ════════════════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .locker-steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .locker-step-connector {
        display: none;
    }
    .locker-problem-grid,
    .locker-what-grid,
    .locker-benefits-layout,
    .locker-targets-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .locker-what-grid {
        direction: ltr;
    }
    .locker-what-visual img {
        height: 320px;
    }
    .locker-benefits-image img {
        height: auto;
    }
    .locker-what-visual img,
    .locker-targets-image img {
        height: auto;
    }
}

@media (max-width: 768px) {
    .locker-hero {
        min-height: auto;
        padding-bottom: 60px;
    }
    .locker-hero-content {
        padding: 120px 0 60px;
    }
    .locker-hero-stats {
        padding: 16px 20px;
    }
    .locker-stat {
        padding: 0 16px;
    }
    .locker-stat-sep {
        height: 24px;
    }
    .locker-steps {
        grid-template-columns: 1fr;
    }
    .locker-benefits-grid {
        grid-template-columns: 1fr;
    }
    .locker-targets-cards {
        grid-template-columns: 1fr;
    }
    .locker-problem .locker-problem-image-wrap {
        display: none;
    }
    .locker-how-visual {
        max-height: 220px;
    }
    .locker-how-visual img {
        height: 220px;
    }
    .locker-cta-trust {
        flex-direction: column;
        gap: 12px;
    }
    .locker-hero-ctas {
        flex-direction: column;
    }
    .locker-btn-primary,
    .locker-btn-secondary {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .locker-hero-stats {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .locker-stat-sep {
        display: none;
    }
    .locker-stat {
        align-items: flex-start;
        padding: 8px 0;
    }
}
