:root {
    color-scheme: light;
    --p360-blue: #2563eb;
    --p360-blue-dark: #0b3a67;
    --p360-navy: #071b35;
    --p360-purple: #4338ca;
    --p360-cyan: #0891b2;
    --p360-green: #16a34a;
    --p360-whatsapp: #16a34a;
    --p360-text: #0f172a;
    --p360-muted: #64748b;
    --p360-border: #dbe3ef;
    --p360-soft: #f4f7fb;
    --p360-card: #ffffff;
    --p360-shadow: 0 18px 50px rgba(15, 23, 42, .09);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background:
        radial-gradient(circle at 10% 0,
            rgba(37, 99, 235, .06),
            transparent 28%),
        #f6f8fc;
    color: var(--p360-text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.p360-public-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
}

.p360-public-header__inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}

.p360-public-header__brand {
    display: inline-flex;
    align-items: center;
}

.p360-public-header__brand img {
    width: auto;
    height: 38px;
    object-fit: contain;
}

.p360-public-header__nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.p360-public-header__nav>a:hover {
    color: var(--p360-blue);
}

.p360-public-header__whatsapp {
    padding: 10px 16px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534 !important;
}

.p360-sales {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 72px;
}

.p360-sales__hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 38px;
    min-height: 590px;
    align-items: center;
    padding: clamp(34px, 6vw, 72px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 8%,
            rgba(34, 211, 238, .27),
            transparent 28%),
        radial-gradient(circle at 60% 110%,
            rgba(124, 58, 237, .45),
            transparent 42%),
        linear-gradient(135deg,
            #06172d 0%,
            #0b3a67 50%,
            #312e81 100%);
    color: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .22);
}

.p360-sales__hero::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -230px;
    width: 470px;
    height: 470px;
    border: 70px solid rgba(255, 255, 255, .045);
    border-radius: 50%;
}

.p360-sales__hero-copy,
.p360-sales__hero-card {
    position: relative;
    z-index: 2;
}

.p360-sales__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #bae6fd;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.p360-sales__eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 0 7px rgba(34, 211, 238, .13);
}

.p360-sales__hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
}

.p360-sales__hero-copy>p {
    max-width: 720px;
    margin: 25px 0 30px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.75;
}

.p360-sales__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.p360-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 900;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.p360-button:hover {
    transform: translateY(-2px);
}

.p360-button--primary {
    background: #fff;
    color: #0b2e52;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.p360-button--secondary {
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.p360-button--whatsapp {
    background: #22c55e;
    color: #fff;
}

.p360-button--dark {
    background: #0f172a;
    color: #fff;
}

.p360-sales__hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 700;
}

.p360-sales__hero-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    background: rgba(3, 16, 35, .45);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
}

.p360-sales__hero-card-head {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.p360-sales__live-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 8px rgba(52, 211, 153, .14);
}

.p360-sales__hero-card-head div {
    display: grid;
    gap: 3px;
}

.p360-sales__hero-card-head small {
    color: rgba(255, 255, 255, .58);
}

.p360-sales__hero-card-body {
    display: grid;
    gap: 14px;
    padding: 20px 0;
}

.p360-sales__hero-card-body>div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
}

.p360-sales__hero-card-body span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: #bae6fd;
    font-size: 11px;
    font-weight: 900;
}

.p360-sales__hero-card-body p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.55;
}

.p360-sales__hero-card-cta {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: #0b2e52;
    font-size: 13px;
    font-weight: 900;
}

.p360-sales__trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 22px 0 68px;
    overflow: hidden;
    border: 1px solid var(--p360-border);
    border-radius: 18px;
    background: var(--p360-border);
    box-shadow: var(--p360-shadow);
}

.p360-sales__trust>div {
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 19px;
    background: #fff;
}

.p360-sales__trust strong {
    font-size: 13px;
}

.p360-sales__trust span {
    color: var(--p360-muted);
    font-size: 11px;
    line-height: 1.45;
}

.p360-sales__section {
    margin-bottom: 72px;
}

.p360-sales__section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 38px;
    align-items: end;
    margin-bottom: 26px;
}

.p360-sales__section-head span,
.p360-sales__benefits-copy>span,
.p360-sales__contact-copy>span,
.p360-sales__form-head>span {
    color: var(--p360-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.p360-sales__section-head h2,
.p360-sales__benefits h2,
.p360-sales__contact h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.p360-sales__section-head>p,
.p360-sales__benefits-copy>p,
.p360-sales__contact-copy>p {
    margin: 0;
    color: var(--p360-muted);
    line-height: 1.7;
}

.p360-sales__products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.p360-sales__product {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--p360-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(15, 23, 42, .055);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.p360-sales__product:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, .35);
    box-shadow: 0 22px 45px rgba(15, 23, 42, .1);
}

.p360-sales__product.is-featured {
    background:
        linear-gradient(145deg,
            rgba(37, 99, 235, .04),
            rgba(124, 58, 237, .05)),
        #fff;
}

.p360-sales__product--free {
    background:
        linear-gradient(145deg,
            rgba(22, 163, 74, .06),
            rgba(8, 145, 178, .05)),
        #fff;
}

.p360-sales__product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.p360-sales__product-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #eff6ff;
    color: var(--p360-blue);
    font-size: 23px;
    font-weight: 900;
}

.p360-sales__product-tag {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.p360-sales__product h3 {
    margin: 20px 0 8px;
    font-size: 24px;
    letter-spacing: -.025em;
}

.p360-sales__product>p {
    margin: 0;
    color: var(--p360-muted);
    line-height: 1.6;
}

.p360-sales__product ul {
    display: grid;
    gap: 9px;
    margin: 21px 0;
    padding: 0;
    list-style: none;
}

.p360-sales__product li {
    position: relative;
    padding-left: 24px;
    color: #334155;
    font-size: 13px;
}

.p360-sales__product li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--p360-green);
    font-weight: 900;
}

.p360-sales__product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--p360-border);
}

.p360-sales__product-footer>div {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.p360-sales__product-footer small {
    flex-basis: 100%;
    color: var(--p360-muted);
}

.p360-sales__product-footer strong {
    font-size: 24px;
}

.p360-sales__product-footer span {
    color: var(--p360-muted);
    font-size: 11px;
}

.p360-sales__product-action {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 11px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
}

.p360-sales__benefits {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
    padding: clamp(28px, 5vw, 55px);
    margin-bottom: 72px;
    border-radius: 28px;
    background: #eaf0f8;
}

.p360-sales__benefits-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.p360-sales__benefits-copy .p360-button {
    margin-top: 24px;
}

.p360-sales__benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.p360-sales__benefit-grid article {
    padding: 20px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 17px;
    background: rgba(255, 255, 255, .72);
}

.p360-sales__benefit-grid article>span {
    font-size: 24px;
}

.p360-sales__benefit-grid strong {
    display: block;
    margin: 12px 0 6px;
}

.p360-sales__benefit-grid p {
    margin: 0;
    color: var(--p360-muted);
    font-size: 12px;
    line-height: 1.55;
}

.p360-sales__contact {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    gap: 42px;
    align-items: start;
}

.p360-sales__contact-copy {
    position: sticky;
    top: 100px;
    padding: 30px 0;
}

.p360-sales__contact-options {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.p360-sales__contact-options>a,
.p360-sales__contact-options>div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid var(--p360-border);
    border-radius: 15px;
    background: #fff;
}

.p360-sales__contact-options>a>span,
.p360-sales__contact-options>div>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 900;
}

.p360-sales__contact-options div div,
.p360-sales__contact-options a div {
    display: grid;
    gap: 3px;
}

.p360-sales__contact-options small {
    color: var(--p360-muted);
}

.p360-sales__form-card {
    padding: 27px;
    border: 1px solid var(--p360-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--p360-shadow);
}

.p360-sales__form-head {
    margin-bottom: 20px;
}

.p360-sales__form-head h2 {
    margin: 6px 0 8px;
    font-size: 28px;
}

.p360-sales__form-head p {
    margin: 0;
    color: var(--p360-muted);
    font-size: 12px;
    line-height: 1.5;
}

.p360-sales__form {
    display: grid;
    gap: 16px;
}

.p360-sales__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.p360-sales__form label {
    display: grid;
    gap: 7px;
}

.p360-sales__form label>span {
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

.p360-sales__form input,
.p360-sales__form select,
.p360-sales__form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    outline: 0;
    background: #fff;
    color: var(--p360-text);
    transition:
        border-color .16s ease,
        box-shadow .16s ease;
}

.p360-sales__form input,
.p360-sales__form select {
    min-height: 46px;
    padding: 0 12px;
}

.p360-sales__form textarea {
    min-height: 125px;
    padding: 12px;
    resize: vertical;
}

.p360-sales__form input:focus,
.p360-sales__form select:focus,
.p360-sales__form textarea:focus {
    border-color: var(--p360-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}

.p360-sales__form-full {
    grid-column: 1 / -1;
}

.p360-sales__consents {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 13px;
    background: #f8fafc;
}

.p360-sales__consents label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    align-items: start;
}

.p360-sales__consents input {
    width: 16px;
    height: 16px;
    min-height: 0;
    margin-top: 2px;
}

.p360-sales__consents span {
    color: var(--p360-muted) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.5;
}

.p360-sales__form button {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 12px;
    background:
        linear-gradient(135deg,
            var(--p360-blue),
            var(--p360-purple));
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(37, 99, 235, .22);
}

.p360-sales__form button span {
    font-size: 18px;
}

.p360-sales__privacy {
    color: var(--p360-muted);
    text-align: center;
    line-height: 1.45;
}

.p360-sales__status,
.p360-sales__errors {
    margin-bottom: 16px;
    padding: 13px;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.5;
}

.p360-sales__status {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.p360-sales__errors {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.p360-sales__errors strong {
    display: block;
    margin-bottom: 5px;
}

.p360-sales__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.p360-public-footer {
    width: min(1180px, calc(100% - 32px));
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 30px;
    margin: 0 auto 28px;
    padding: 30px;
    border-radius: 22px;
    background: #081a31;
    color: #fff;
}

.p360-public-footer img {
    width: auto;
    height: 36px;
    filter: brightness(0) invert(1);
}

.p360-public-footer p {
    max-width: 420px;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    line-height: 1.6;
}

.p360-public-footer>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.p360-public-footer a {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

@media (max-width: 980px) {

    .p360-sales__hero,
    .p360-sales__contact,
    .p360-sales__benefits {
        grid-template-columns: 1fr;
    }

    .p360-sales__hero {
        min-height: auto;
    }

    .p360-sales__hero-card {
        max-width: 560px;
    }

    .p360-sales__contact-copy {
        position: static;
    }

    .p360-sales__section-head {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 760px) {
    .p360-public-header__nav>a:not(.p360-public-header__whatsapp) {
        display: none;
    }

    .p360-sales {
        width: min(100% - 20px, 1180px);
        padding-top: 10px;
    }

    .p360-sales__hero {
        padding: 26px 20px;
        border-radius: 21px;
    }

    .p360-sales__hero h1 {
        font-size: 40px;
    }

    .p360-sales__hero-actions,
    .p360-sales__hero-actions .p360-button {
        width: 100%;
    }

    .p360-sales__trust,
    .p360-sales__products,
    .p360-sales__benefit-grid,
    .p360-sales__form-grid,
    .p360-public-footer {
        grid-template-columns: 1fr;
    }

    .p360-sales__contact {
        display: block;
    }

    .p360-sales__form-card {
        padding: 19px;
    }
}
/*
|--------------------------------------------------------------------------
| PACTOPIA360 · Landing comercial compacta
|--------------------------------------------------------------------------
| Ajuste visual:
| - Hero más bajo
| - Tipografía proporcionada
| - Tarjetas compactas
| - Menor separación vertical
| - Formularios más limpios
|--------------------------------------------------------------------------
*/

.p360-public-header__inner {
    width: min(1080px, calc(100% - 28px));
    min-height: 58px;
    gap: 16px;
}

.p360-public-header__brand img {
    height: 29px;
}

.p360-public-header__nav {
    gap: 18px;
    font-size: 12px;
}

.p360-public-header__whatsapp {
    padding: 8px 13px;
}

.p360-sales {
    width: min(1080px, calc(100% - 28px));
    padding: 18px 0 48px;
}

.p360-sales__hero {
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 28px;
    min-height: 410px;
    padding: 42px 52px;
    border-radius: 24px;
    box-shadow: 0 22px 58px rgba(15, 23, 42, .18);
}

.p360-sales__hero::after {
    right: -160px;
    bottom: -230px;
    width: 420px;
    height: 420px;
    border-width: 60px;
}

.p360-sales__eyebrow {
    gap: 8px;
    margin-bottom: 14px;
    font-size: 10px;
}

.p360-sales__eyebrow span {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 5px rgba(34, 211, 238, .13);
}

.p360-sales__hero h1 {
    max-width: 660px;
    font-size: clamp(38px, 4.6vw, 54px);
    line-height: 1;
    letter-spacing: -.045em;
}

.p360-sales__hero-copy > p {
    max-width: 640px;
    margin: 17px 0 20px;
    font-size: 14px;
    line-height: 1.55;
}

.p360-sales__hero-actions {
    gap: 8px;
}

.p360-button {
    min-height: 40px;
    padding: 0 15px;
    border-radius: 10px;
    font-size: 12px;
}

.p360-sales__hero-proof {
    gap: 6px 14px;
    margin-top: 17px;
    font-size: 10px;
}

.p360-sales__hero-card {
    padding: 17px;
    border-radius: 17px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
}

.p360-sales__hero-card-head {
    gap: 10px;
    padding-bottom: 13px;
}

.p360-sales__live-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, .14);
}

.p360-sales__hero-card-head small {
    font-size: 10px;
}

.p360-sales__hero-card-head strong {
    font-size: 12px;
}

.p360-sales__hero-card-body {
    gap: 9px;
    padding: 14px 0;
}

.p360-sales__hero-card-body > div {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
}

.p360-sales__hero-card-body span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 9px;
}

.p360-sales__hero-card-body p {
    font-size: 11px;
    line-height: 1.4;
}

.p360-sales__hero-card-cta {
    min-height: 37px;
    border-radius: 10px;
    font-size: 11px;
}

.p360-sales__trust {
    margin: 14px 0 42px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .065);
}

.p360-sales__trust > div {
    gap: 3px;
    padding: 13px 15px;
}

.p360-sales__trust strong {
    font-size: 11px;
}

.p360-sales__trust span {
    font-size: 10px;
    line-height: 1.35;
}

.p360-sales__section {
    margin-bottom: 48px;
}

.p360-sales__section-head {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    margin-bottom: 18px;
}

.p360-sales__section-head span,
.p360-sales__benefits-copy > span,
.p360-sales__contact-copy > span,
.p360-sales__form-head > span {
    font-size: 9px;
}

.p360-sales__section-head h2,
.p360-sales__benefits h2,
.p360-sales__contact h2 {
    margin-top: 6px;
    font-size: clamp(26px, 3.3vw, 38px);
    line-height: 1.06;
}

.p360-sales__section-head > p,
.p360-sales__benefits-copy > p,
.p360-sales__contact-copy > p {
    font-size: 13px;
    line-height: 1.55;
}

.p360-sales__products {
    gap: 13px;
}

.p360-sales__product {
    padding: 19px;
    border-radius: 16px;
    box-shadow: 0 7px 22px rgba(15, 23, 42, .045);
}

.p360-sales__product:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(15, 23, 42, .08);
}

.p360-sales__product-top {
    gap: 10px;
}

.p360-sales__product-icon {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    font-size: 18px;
}

.p360-sales__product-tag {
    padding: 5px 8px;
    font-size: 8px;
}

.p360-sales__product h3 {
    margin: 14px 0 6px;
    font-size: 19px;
}

.p360-sales__product > p {
    font-size: 12px;
    line-height: 1.5;
}

.p360-sales__product ul {
    gap: 7px;
    margin: 14px 0;
}

.p360-sales__product li {
    padding-left: 20px;
    font-size: 11px;
}

.p360-sales__product-footer {
    gap: 12px;
    padding-top: 14px;
}

.p360-sales__product-footer small {
    font-size: 9px;
}

.p360-sales__product-footer strong {
    font-size: 19px;
}

.p360-sales__product-action {
    min-height: 34px;
    padding: 0 11px;
    border-radius: 9px;
    font-size: 10px;
}

.p360-sales__benefits {
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    padding: 34px;
    margin-bottom: 48px;
    border-radius: 22px;
}

.p360-sales__benefits-copy .p360-button {
    margin-top: 17px;
}

.p360-sales__benefit-grid {
    gap: 9px;
}

.p360-sales__benefit-grid article {
    padding: 15px;
    border-radius: 13px;
}

.p360-sales__benefit-grid article > span {
    font-size: 19px;
}

.p360-sales__benefit-grid strong {
    margin: 8px 0 4px;
    font-size: 12px;
}

.p360-sales__benefit-grid p {
    font-size: 10px;
    line-height: 1.45;
}

.p360-sales__contact {
    grid-template-columns: minmax(0, .78fr) minmax(460px, 1.22fr);
    gap: 30px;
}

.p360-sales__contact-copy {
    top: 78px;
    padding: 20px 0;
}

.p360-sales__contact-options {
    gap: 8px;
    margin-top: 20px;
}

.p360-sales__contact-options > a,
.p360-sales__contact-options > div {
    gap: 10px;
    padding: 11px;
    border-radius: 12px;
}

.p360-sales__contact-options > a > span,
.p360-sales__contact-options > div > span {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 9px;
}

.p360-sales__contact-options strong {
    font-size: 12px;
}

.p360-sales__contact-options small {
    font-size: 10px;
}

.p360-sales__form-card {
    padding: 21px;
    border-radius: 18px;
    box-shadow: 0 13px 38px rgba(15, 23, 42, .075);
}

.p360-sales__form-head {
    margin-bottom: 15px;
}

.p360-sales__form-head h2 {
    margin: 5px 0 6px;
    font-size: 23px;
}

.p360-sales__form-head p {
    font-size: 10px;
    line-height: 1.45;
}

.p360-sales__form {
    gap: 12px;
}

.p360-sales__form-grid {
    gap: 10px;
}

.p360-sales__form label {
    gap: 5px;
}

.p360-sales__form label > span {
    font-size: 10px;
}

.p360-sales__form input,
.p360-sales__form select,
.p360-sales__form textarea {
    border-radius: 9px;
    font-size: 11px;
}

.p360-sales__form input,
.p360-sales__form select {
    min-height: 39px;
    padding: 0 10px;
}

.p360-sales__form textarea {
    min-height: 92px;
    padding: 10px;
}

.p360-sales__consents {
    gap: 7px;
    padding: 10px;
    border-radius: 10px;
}

.p360-sales__consents span {
    font-size: 9px !important;
    line-height: 1.4;
}

.p360-sales__form button {
    min-height: 42px;
    border-radius: 10px;
    font-size: 12px;
}

.p360-sales__privacy {
    font-size: 9px;
}

.p360-public-footer {
    width: min(1080px, calc(100% - 28px));
    gap: 24px;
    margin-bottom: 20px;
    padding: 22px;
    border-radius: 17px;
}

.p360-public-footer img {
    height: 28px;
}

.p360-public-footer p,
.p360-public-footer a {
    font-size: 10px;
}

@media (max-width: 980px) {
    .p360-sales__hero {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 20px;
        padding: 34px;
    }

    .p360-sales__hero h1 {
        font-size: clamp(34px, 5vw, 46px);
    }

    .p360-sales__section-head,
    .p360-sales__benefits,
    .p360-sales__contact {
        grid-template-columns: 1fr;
    }

    .p360-sales__hero-card {
        max-width: none;
    }

    .p360-sales__contact-copy {
        position: static;
        padding-bottom: 0;
    }
}

@media (max-width: 760px) {
    .p360-public-header__inner {
        width: min(100% - 20px, 1080px);
        min-height: 54px;
    }

    .p360-public-header__brand img {
        height: 25px;
    }

    .p360-sales {
        width: min(100% - 18px, 1080px);
        padding: 9px 0 32px;
    }

    .p360-sales__hero {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: auto;
        padding: 24px 19px;
        border-radius: 18px;
    }

    .p360-sales__hero h1 {
        font-size: clamp(31px, 10vw, 39px);
        line-height: 1.02;
    }

    .p360-sales__hero-copy > p {
        margin: 14px 0 17px;
        font-size: 13px;
    }

    .p360-sales__hero-actions,
    .p360-sales__hero-actions .p360-button {
        width: 100%;
    }

    .p360-sales__hero-proof {
        margin-top: 15px;
    }

    .p360-sales__hero-card {
        padding: 15px;
    }

    .p360-sales__trust,
    .p360-sales__products,
    .p360-sales__benefit-grid,
    .p360-sales__form-grid,
    .p360-public-footer {
        grid-template-columns: 1fr;
    }

    .p360-sales__trust {
        margin-bottom: 34px;
    }

    .p360-sales__section {
        margin-bottom: 38px;
    }

    .p360-sales__section-head h2,
    .p360-sales__benefits h2,
    .p360-sales__contact h2 {
        font-size: 29px;
    }

    .p360-sales__benefits {
        padding: 22px 17px;
        border-radius: 17px;
    }

    .p360-sales__form-card {
        padding: 17px;
    }

    .p360-public-footer {
        padding: 19px;
    }
}

@media (max-width: 420px) {
    .p360-sales__hero h1 {
        font-size: 29px;
    }

    .p360-sales__hero-proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .p360-sales__product-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .p360-sales__product-action {
        justify-content: center;
    }
}

