/* ═══════════════════════════════════════════════════════════════
   Pitchlogic AI — Design System v2
   Matches all section screenshots exactly
   ═══════════════════════════════════════════════════════════════ */

/* ── Buttons (pill shape) ──────────────────────────────────────────────────── */
.pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1),
                box-shadow .3s ease, background .3s ease,
                border-color .3s ease, color .3s ease;
}
.pl-btn--primary {
    background: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
}
.pl-btn--primary:hover {
    background: #1557e0;
    border-color: #1557e0;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26,101,255,.45);
    color: #fff;
}
.pl-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}
.pl-btn--outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.06);
    transform: translateY(-3px);
    color: #fff;
}
.pl-btn--white {
    background: #fff;
    color: var(--color-accent);
    border: 2px solid #fff;
    font-weight: 700;
}
.pl-btn--white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255,255,255,.2);
}
.pl-btn--sm  { padding: .65rem 1.5rem; font-size: .875rem; min-height: 40px; }
.pl-btn--block { width: 100%; justify-content: center; }
.pl-btn:active { transform: scale(.97) translateY(0); }

/* Ripple */
.pl-btn .pl-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    width: 10px; height: 10px;
    margin: -5px 0 0 -5px;
    animation: ripple .6s linear forwards;
    pointer-events: none;
}

/* ── Section base ──────────────────────────────────────────────────────────── */
.pl-section { padding-block: clamp(3.5rem,8vw,7rem); }

.pl-section__head {
    text-align: center;
    margin-bottom: clamp(2.5rem,5vw,4rem);
}
.pl-section__head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem,3vw,2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
}
.pl-section__head p {
    color: var(--color-muted);
    font-size: 1rem;
    max-width: 600px;
    margin-inline: auto;
}

/* ── Shared card base ──────────────────────────────────────────────────────── */
.pl-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: transform .35s cubic-bezier(.22,1,.36,1),
                border-color .35s ease, box-shadow .35s ease;
}
.pl-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26,101,255,.4);
    box-shadow: 0 16px 40px rgba(26,101,255,.15);
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.pl-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h, 80px);
    background: var(--bg-primary);
    overflow: hidden;
}
.pl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,101,255,.18) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
.pl-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding-block: 4rem;
    width: 100%;
    position: relative;
    z-index: 1;
}
.pl-hero__text {
    text-align: center;
    max-width: 800px;
}
.pl-hero__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem,5vw,4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    animation: fadeUp .7s ease .1s both;
}
.pl-hero__sub {
    color: var(--color-muted);
    font-size: clamp(.9375rem,1.3vw,1.0625rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 640px;
    margin-inline: auto;
    animation: fadeUp .7s ease .25s both;
}
.pl-hero__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .7s ease .4s both;
}
.pl-hero__img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    max-width: 480px;
    width: 100%;
    animation: fadeUp .8s ease .3s both;
}
.pl-hero__glow {
    position: absolute;
    width: 100%;
    opacity: .5;
    bottom: 0;
    animation: glowPulse 4s ease-in-out infinite;
}
.pl-hero__robot {
    position: relative;
    z-index: 1;
    max-width: 100%;
    animation: floatSlow 6s ease-in-out infinite;
}

/* ── Problem ───────────────────────────────────────────────────────────────── */
.pl-problem { background: var(--bg-primary); }
.pl-problem__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: clamp(1rem,2.5vw,2rem);
}
.pl-problem__card {
    padding: clamp(1.5rem,3vw,2.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
.pl-problem__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-cyan));
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.pl-problem__card:hover::before { transform: scaleX(1); }
.pl-problem__card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1rem,1.5vw,1.2rem);
    font-weight: 700;
    color: #fff;
}
.pl-problem__card p {
    color: var(--color-muted);
    font-size: .9375rem;
    line-height: 1.65;
    flex: 1;
}
.pl-link-arrow {
    color: var(--color-muted);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .25s ease;
    align-self: flex-start;
}
.pl-link-arrow:hover { color: #fff; }

/* ── Feature Showcase ──────────────────────────────────────────────────────── */
.pl-features { background: var(--bg-primary); }

.pl-feature { margin-bottom: 3rem; }
.pl-feature:last-child { margin-bottom: 0; }

.pl-feature__meta {
    display: flex;
    align-items: center;
    margin-bottom: -1px;
    padding-left: .5rem;
}
.pl-feature__meta--rev {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: .5rem;
}

.pl-feature__badge {
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 20px rgba(26,101,255,.4);
    animation: glowPulse 3s ease-in-out infinite;
}

.pl-feature__dots {
    flex: 1;
    border-top: 2px dashed rgba(255,255,255,.15);
    max-width: 120px;
}

.pl-feature__card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    transition: border-color .35s ease, box-shadow .35s ease;
    min-height: 320px;
}
.pl-feature__card:hover {
    border-color: rgba(26,101,255,.35);
    box-shadow: 0 16px 48px rgba(26,101,255,.12);
}

.pl-feature__text {
    padding: clamp(2rem,4vw,3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
.pl-feature__text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem,1.8vw,1.375rem);
    font-weight: 700;
    color: #fff;
}
.pl-feature__text p {
    color: var(--color-muted);
    font-size: .9375rem;
    line-height: 1.7;
}
.pl-feature__list {
    list-style: disc;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: var(--color-muted);
    font-size: .9375rem;
    line-height: 1.6;
}

.pl-feature__img {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.2);
}
.pl-feature__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.pl-feature__card:hover .pl-feature__img img { transform: scale(1.04); }

/* ── How It Works ──────────────────────────────────────────────────────────── */
.pl-hiw {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.pl-hiw::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .5;
}
.pl-hiw__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem,6vw,6rem);
    align-items: center;
    position: relative;
    z-index: 1;
}
.pl-hiw__dashboard img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.pl-hiw__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem,3.5vw,3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.pl-hiw__sub {
    color: var(--color-muted);
    font-size: .9375rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.pl-hiw__steps { display: flex; flex-direction: column; gap: 2rem; }

.pl-hiw__step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform .3s ease;
}
.pl-hiw__step:hover { transform: translateX(6px); }

.pl-hiw__num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,.15);
    width: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: .75rem;
}

.pl-hiw__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1A65FF 0%, #0033CC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(26,101,255,.35);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.pl-hiw__step:hover .pl-hiw__icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(26,101,255,.5);
}

.pl-hiw__step-body h4 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .375rem;
}
.pl-hiw__step-body p {
    color: var(--color-muted);
    font-size: .9375rem;
    line-height: 1.6;
}

/* ── Comparison ────────────────────────────────────────────────────────────── */
.pl-compare { background: var(--bg-primary); }

.pl-compare__card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    margin-bottom: 1.25rem;
    transition: border-color .35s ease, box-shadow .35s ease;
}
.pl-compare__card:hover {
    border-color: rgba(26,101,255,.3);
    box-shadow: 0 12px 36px rgba(26,101,255,.1);
}

.pl-compare__text {
    padding: clamp(2rem,4vw,3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}
.pl-compare__text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem,1.8vw,1.35rem);
    font-weight: 700;
    color: #fff;
}
.pl-compare__list {
    list-style: disc;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .625rem;
    color: var(--color-muted);
    font-size: .9375rem;
    line-height: 1.6;
}
.pl-compare__extra {
    color: var(--color-muted);
    font-size: .9375rem;
}

.pl-compare__img {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pl-compare__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.pl-compare__card:hover .pl-compare__img img { transform: scale(1.03); }

.pl-compare__label {
    text-align: center;
    color: var(--color-muted);
    font-size: .9375rem;
    font-weight: 500;
    padding: 1.25rem 0;
}

.pl-compare__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ── Pricing ───────────────────────────────────────────────────────────────── */
.pl-pricing {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.pl-pricing::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(26,101,255,.1) 0%, transparent 70%);
    pointer-events: none;
}

.pl-pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.pl-toggle__label {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: color .3s ease;
}
.pl-toggle__label.active { color: #fff; }
.pl-toggle__badge {
    background: rgba(0,229,255,.12);
    color: var(--color-cyan);
    font-size: .75rem;
    font-weight: 600;
    padding: .2rem .625rem;
    border-radius: 20px;
    border: 1px solid rgba(0,229,255,.3);
}

.pl-toggle__switch {
    width: 52px; height: 28px;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background .3s ease, border-color .3s ease;
}
.pl-toggle__switch.on { background: var(--color-accent); border-color: var(--color-accent); }
.pl-toggle__thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.pl-toggle__switch.on .pl-toggle__thumb {
    transform: translateX(24px);
    box-shadow: 0 2px 8px rgba(26,101,255,.4);
}

.pl-pricing__cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: clamp(1rem,2.5vw,2rem);
    align-items: start;
}
.pl-pricing__card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: clamp(1.75rem,3vw,2.5rem);
    position: relative;
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.pl-pricing__card:not(.pl-pricing__card--popular):hover {
    transform: translateY(-10px);
    border-color: rgba(26,101,255,.4);
    box-shadow: 0 24px 56px rgba(0,0,0,.3);
}
.pl-pricing__card--popular {
    border-color: var(--color-accent);
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(26,101,255,.2);
    animation: glowPulse 3s ease-in-out infinite;
}
.pl-pricing__card--popular:hover { transform: scale(1.03) translateY(-8px); }

.pl-pricing__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem 1.125rem;
    border-radius: 20px;
    white-space: nowrap;
}

.pl-pricing__plan {
    font-family: var(--font-heading);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}
.pl-pricing__price {
    display: flex;
    align-items: flex-end;
    gap: .25rem;
    margin-bottom: .5rem;
}
.pl-pricing__amount {
    font-family: var(--font-heading);
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    transition: opacity .25s ease, transform .25s ease;
}
.pl-pricing__period { font-size: .875rem; color: var(--color-muted); margin-bottom: .375rem; }
.pl-pricing__desc { font-size: .875rem; color: var(--color-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.pl-pricing__divider { border: none; border-top: 1px solid var(--color-border); margin: 1.5rem 0; }
.pl-pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .875rem;
    margin-bottom: 2rem;
}
.pl-pricing__features li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9375rem;
    color: var(--color-muted);
}
.pl-check {
    width: 20px; height: 20px;
    background: rgba(0,229,255,.1);
    border: 1px solid rgba(0,229,255,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-cyan);
    font-size: .75rem;
    flex-shrink: 0;
    transition: transform .25s ease, background .25s ease;
}
.pl-pricing__features li:hover .pl-check {
    transform: scale(1.2);
    background: rgba(0,229,255,.2);
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.pl-faq { background: var(--bg-primary); }

.pl-faq__container {
    max-width: 860px;
    margin-inline: auto;
    background: var(--bg-card);
    border: 1px solid rgba(26,101,255,.25);
    border-radius: 20px;
    padding: clamp(1.5rem,3vw,2.5rem);
    box-shadow: 0 0 40px rgba(26,101,255,.08);
}

.pl-faq__item { position: relative; }

.pl-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-family: var(--font-heading);
    font-size: clamp(.875rem,1.2vw,1rem);
    font-weight: 500;
    color: #fff;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    min-height: 48px;
    transition: color .25s ease;
}
.pl-faq__q:hover { color: var(--color-cyan); }

.pl-faq__chevron {
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.pl-faq__item--open .pl-faq__chevron { transform: rotate(180deg); }

.pl-faq__a {
    padding-bottom: 1.25rem;
    overflow: hidden;
}
.pl-faq__a[hidden] { display: none; }
.pl-faq__a p {
    color: var(--color-muted);
    font-size: .9375rem;
    line-height: 1.7;
}

.pl-faq__divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.06);
}

/* ── CTA Banner ────────────────────────────────────────────────────────────── */
.pl-cta {
    background: linear-gradient(270deg, #0044CC, #0066FF, #0088FF, #00AAFF, #0066FF);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}
.pl-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding-block: clamp(3rem,6vw,5rem);
}
.pl-cta__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem,3vw,2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.pl-cta__content p  { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 1.75rem; }
.pl-cta__robot img  { max-width: min(280px,35vw); animation: float 5s ease-in-out infinite; }

/* ── Footer override ───────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--color-border);
    padding: 0;
}
.footer-inner { padding: 0; max-width: 100%; }

.pl-footer__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: clamp(2.5rem,5vw,4rem) clamp(1.5rem,6vw,6rem);
}
.pl-footer__nav a {
    font-family: var(--font-heading);
    font-size: clamp(1rem,2vw,1.5rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease;
    display: inline-block;
}
.pl-footer__nav a:hover { color: var(--color-accent); transform: translateY(-3px); }

.pl-footer__divider { border: none; border-top: 1px solid var(--color-border); margin: 0; }

.pl-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem clamp(1.5rem,6vw,6rem);
}
.pl-footer__address {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--color-muted);
    font-size: .875rem;
}
.pl-footer__address svg { color: var(--color-accent); flex-shrink: 0; }
.pl-footer__copy {
    color: var(--color-muted);
    font-size: .875rem;
    text-align: center;
}
.pl-footer__phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--color-muted);
    font-size: .875rem;
    justify-content: flex-end;
    text-decoration: none;
    transition: color .25s ease;
}
.pl-footer__phone:hover { color: #fff; }
.pl-footer__phone svg { color: var(--color-accent); flex-shrink: 0; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pl-problem__grid     { grid-template-columns: repeat(2,1fr); }
    .pl-feature__card     { grid-template-columns: 1fr; }
    .pl-feature__img      { min-height: 240px; }
    .pl-hiw__inner        { grid-template-columns: 1fr; }
    .pl-hiw__dashboard    { order: -1; }
    .pl-compare__card     { grid-template-columns: 1fr; }
    .pl-compare__img      { min-height: 260px; order: -1; }
    .pl-pricing__cards    { grid-template-columns: repeat(2,1fr); }
    .pl-pricing__card--popular { transform: scale(1); }
    .pl-cta__inner        { grid-template-columns: 1fr; }
    .pl-cta__robot        { display: none; }
    .pl-footer__bottom    { grid-template-columns: 1fr; text-align: center; }
    .pl-footer__phone     { justify-content: center; }
    .pl-footer__nav       { justify-content: center; gap: 2rem; }
}
@media (max-width: 767px) {
    .pl-problem__grid     { grid-template-columns: 1fr; }
    .pl-pricing__cards    { grid-template-columns: 1fr; }
    .pl-hero__btns        { flex-direction: column; align-items: center; }
    .pl-hero__btns .pl-btn { width: 100%; max-width: 320px; }
    .pl-compare__btns     { flex-direction: column; align-items: center; }
    .pl-compare__btns .pl-btn { width: 100%; max-width: 320px; }
    .pl-footer__nav       { flex-direction: column; align-items: center; gap: 1.5rem; }
    .pl-feature__meta, .pl-feature__meta--rev { padding: 0; }
}
@media (max-width: 480px) {
    .pl-feature__badge    { width: 52px; height: 52px; font-size: 1rem; }
    .pl-faq__q            { font-size: .875rem; }
    .pl-pricing__card     { padding: 1.5rem; }
}
