/*
|--------------------------------------------------------------------------
| Prisma Med — Landing comercial
|--------------------------------------------------------------------------
|
| Archivo:
| public/assets/css/landing_plataforma.css
|
*/


/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {

    --pm-primary: #087f8c;
    --pm-primary-dark: #075e68;
    --pm-primary-deep: #073f46;
    --pm-primary-soft: #dff5f5;
    --pm-primary-faint: #f2fbfb;

    --pm-secondary: #22b8b5;
    --pm-accent: #36d1c4;

    --pm-white: #ffffff;
    --pm-bg: #f5f8fa;
    --pm-bg-soft: #f8fbfc;
    --pm-bg-dark: #082f34;

    --pm-text: #17383d;
    --pm-text-soft: #557176;
    --pm-text-muted: #789095;
    --pm-border: #dce7e9;
    --pm-border-soft: #eaf1f2;

    --pm-success: #169873;
    --pm-warning: #f2a93b;
    --pm-danger: #da5d5d;

    --pm-shadow-xs:
        0 4px 12px rgba(7, 63, 70, 0.05);

    --pm-shadow-sm:
        0 10px 28px rgba(7, 63, 70, 0.08);

    --pm-shadow-md:
        0 20px 50px rgba(7, 63, 70, 0.12);

    --pm-shadow-lg:
        0 30px 80px rgba(7, 63, 70, 0.17);

    --pm-radius-sm: 10px;
    --pm-radius-md: 18px;
    --pm-radius-lg: 28px;
    --pm-radius-xl: 40px;

    --pm-transition:
        220ms ease;

    --pm-container:
        1200px;
}


/* ==========================================================================
   BASE
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--pm-white);
    color: var(--pm-text);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

::selection {
    background: var(--pm-primary);
    color: var(--pm-white);
}

.pm-landing {
    overflow: hidden;
    background: var(--pm-white);
}

.pm-landing * {
    box-sizing: border-box;
}

.pm-landing a {
    text-decoration: none;
}

.pm-landing img {
    max-width: 100%;
}

.pm-landing h1,
.pm-landing h2,
.pm-landing h3,
.pm-landing p {
    margin-top: 0;
}

.pm-landing .container {
    width: 100%;
    max-width: var(--pm-container);
}

.pm-section {
    position: relative;
    padding: 110px 0;
    scroll-margin-top: 80px;
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.pm-landing h1 {
    margin-bottom: 26px;
    color: var(--pm-primary-deep);
    font-size: clamp(44px, 5.4vw, 76px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.pm-landing h1 span {
    display: block;
    color: var(--pm-primary);
}

.pm-landing h2 {
    margin-bottom: 22px;
    color: var(--pm-primary-deep);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.pm-landing h3 {
    color: var(--pm-primary-deep);
    font-size: 18px;
    font-weight: 750;
    line-height: 1.3;
}

.pm-landing p {
    color: var(--pm-text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.pm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(8, 127, 140, 0.14);
    border-radius: 999px;
    background: rgba(8, 127, 140, 0.08);
    color: var(--pm-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.085em;
    line-height: 1;
    text-transform: uppercase;
}

.pm-eyebrow .glyphicon {
    font-size: 11px;
}

.pm-section-heading {
    max-width: 780px;
    margin: 0 auto 64px;
}

.pm-section-heading p {
    max-width: 700px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.pm-landing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border-width: 1px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
    transition:
        transform var(--pm-transition),
        background var(--pm-transition),
        border-color var(--pm-transition),
        box-shadow var(--pm-transition),
        color var(--pm-transition);
}

.pm-landing .btn:hover,
.pm-landing .btn:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.pm-landing .btn:active {
    transform: translateY(0);
}

.pm-landing .btn-primary {
    border-color: var(--pm-primary);
    background: var(--pm-primary);
    color: var(--pm-white);
    box-shadow:
        0 12px 24px rgba(8, 127, 140, 0.2);
}

.pm-landing .btn-primary:hover,
.pm-landing .btn-primary:focus,
.pm-landing .btn-primary:active {
    border-color: var(--pm-primary-dark);
    background: var(--pm-primary-dark);
    color: var(--pm-white);
    box-shadow:
        0 16px 30px rgba(8, 127, 140, 0.26);
}

.pm-landing .btn-default {
    border-color: var(--pm-border);
    background: var(--pm-white);
    color: var(--pm-primary-deep);
    box-shadow: var(--pm-shadow-xs);
}

.pm-landing .btn-default:hover,
.pm-landing .btn-default:focus,
.pm-landing .btn-default:active {
    border-color: rgba(8, 127, 140, 0.3);
    background: var(--pm-primary-faint);
    color: var(--pm-primary);
    box-shadow: var(--pm-shadow-sm);
}

.pm-landing .btn-lg {
    min-height: 56px;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
}

.pm-landing .btn-block {
    display: flex;
    width: 100%;
}


/* ==========================================================================
   IMAGES
   ========================================================================== */

.pm-image-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 127, 140, 0.1);
    border-radius: var(--pm-radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(239, 249, 249, 0.96)
        );
    box-shadow: var(--pm-shadow-md);
}

.pm-image-shell::before {
    position: absolute;
    z-index: 0;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(54, 209, 196, 0.16),
            transparent 68%
        );
    content: "";
    pointer-events: none;
}

.pm-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pm-image-shell-wide {
    min-height: 520px;
}

.pm-image-shell-wide .pm-image {
    min-height: 520px;
    object-fit: cover;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.pm-hero {
    min-height: 860px;
    padding-top: 105px;
    padding-bottom: 95px;
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(54, 209, 196, 0.13),
            transparent 26%
        ),
        radial-gradient(
            circle at 92% 14%,
            rgba(8, 127, 140, 0.1),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8fdfd 0%,
            #ffffff 72%
        );
}

.pm-hero::before {
    position: absolute;
    top: 0;
    right: -200px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(8, 127, 140, 0.08);
    border-radius: 50%;
    content: "";
}

.pm-hero::after {
    position: absolute;
    right: 110px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    border: 24px solid rgba(34, 184, 181, 0.07);
    border-radius: 50%;
    content: "";
}

.pm-hero-row {
    display: flex;
    align-items: center;
}

.pm-hero-content {
    position: relative;
    z-index: 3;
    padding-right: 34px;
}

.pm-hero-description {
    max-width: 620px;
    margin-bottom: 32px;
    font-size: 19px;
    line-height: 1.7;
}

.pm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.pm-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pm-hero-points > div {
    position: relative;
    min-height: 118px;
    padding: 18px 16px;
    border: 1px solid rgba(8, 127, 140, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--pm-shadow-xs);
    backdrop-filter: blur(12px);
}

.pm-hero-points .glyphicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 11px;
    border-radius: 50%;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-size: 11px;
}

.pm-hero-points strong {
    display: block;
    margin-bottom: 5px;
    color: var(--pm-primary-deep);
    font-size: 14px;
    line-height: 1.3;
}

.pm-hero-points small {
    display: block;
    color: var(--pm-text-muted);
    font-size: 12px;
    line-height: 1.45;
}

.pm-hero-media {
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

.pm-image-shell-hero {
    overflow: visible;
    padding: 18px;
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(228, 246, 246, 0.98)
        );
    box-shadow: var(--pm-shadow-lg);
}

.pm-image-shell-hero::after {
    position: absolute;
    z-index: -1;
    inset: 30px -22px -30px 22px;
    border-radius: 34px;
    background: rgba(8, 127, 140, 0.09);
    content: "";
}

.pm-image-hero {
    min-height: 510px;
    border-radius: 24px;
    object-fit: cover;
}

.pm-floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 260px;
    padding: 16px 18px;
    border: 1px solid rgba(8, 127, 140, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--pm-shadow-md);
    backdrop-filter: blur(18px);
}

.pm-floating-card > .glyphicon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-size: 17px;
}

.pm-floating-card strong {
    display: block;
    margin-bottom: 3px;
    color: var(--pm-primary-deep);
    font-size: 14px;
}

.pm-floating-card small {
    display: block;
    color: var(--pm-text-muted);
    font-size: 12px;
    line-height: 1.45;
}

.pm-floating-card-top {
    top: -26px;
    right: -22px;
}

.pm-floating-card-bottom {
    bottom: -34px;
    left: -14px;
}


/* ==========================================================================
   ECOSYSTEM
   ========================================================================== */

.pm-ecosystem {
    background: var(--pm-white);
}

.pm-ecosystem-row {
    display: flex;
    align-items: center;
}

.pm-ecosystem-content {
    padding-left: 50px;
}

.pm-process {
    position: relative;
}

.pm-process::before {
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 27px;
    width: 2px;
    background:
        linear-gradient(
            to bottom,
            var(--pm-primary),
            rgba(8, 127, 140, 0.08)
        );
    content: "";
}

.pm-process-item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.pm-process-item:last-child {
    margin-bottom: 0;
}

.pm-process-number {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 6px solid var(--pm-white);
    border-radius: 50%;
    background: var(--pm-primary);
    color: var(--pm-white);
    box-shadow: 0 8px 22px rgba(8, 127, 140, 0.2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.pm-process-item h3 {
    margin-bottom: 7px;
}

.pm-process-item p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.65;
}


/* ==========================================================================
   PLATFORM
   ========================================================================== */

.pm-platform {
    background:
        linear-gradient(
            180deg,
            var(--pm-primary-faint),
            var(--pm-white)
        );
}

.pm-platform-row {
    display: flex;
    align-items: center;
}

.pm-platform-content {
    padding-right: 50px;
}

.pm-platform-content > p {
    margin-bottom: 28px;
}

.pm-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pm-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--pm-text);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.55;
}

.pm-check-list li:last-child {
    margin-bottom: 0;
}

.pm-check-list .glyphicon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-size: 9px;
}

.pm-platform-media {
    position: relative;
}

.pm-panel-composition {
    position: relative;
    min-height: 580px;
    padding-right: 70px;
}

.pm-panel-main {
    min-height: 520px;
    border-radius: 26px;
}

.pm-panel-main .pm-image {
    min-height: 520px;
    object-fit: cover;
}

.pm-panel-mobile {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: -12px;
    width: 220px;
    padding: 10px;
    border-radius: 30px;
    background: var(--pm-white);
    box-shadow: var(--pm-shadow-lg);
}

.pm-panel-mobile .pm-image {
    min-height: 430px;
    border-radius: 22px;
    object-fit: cover;
}


/* ==========================================================================
   TEAM
   ========================================================================== */

.pm-team {
    background: var(--pm-white);
}

.pm-team-row {
    display: flex;
    align-items: center;
}

.pm-team-media {
    padding-right: 42px;
}

.pm-image-shell-team {
    min-height: 590px;
}

.pm-image-shell-team .pm-image {
    min-height: 590px;
    object-fit: cover;
}

.pm-team-content {
    padding-left: 24px;
}

.pm-team-content > p {
    margin-bottom: 30px;
}

.pm-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pm-role-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 105px;
    padding: 18px;
    border: 1px solid var(--pm-border-soft);
    border-radius: 16px;
    background: var(--pm-white);
    box-shadow: var(--pm-shadow-xs);
    transition:
        transform var(--pm-transition),
        border-color var(--pm-transition),
        box-shadow var(--pm-transition);
}

.pm-role-card:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 127, 140, 0.22);
    box-shadow: var(--pm-shadow-sm);
}

.pm-role-card > .glyphicon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-size: 15px;
}

.pm-role-card h3 {
    margin-bottom: 3px;
    font-size: 15px;
}

.pm-role-card p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.5;
}


/* ==========================================================================
   HISTORY
   ========================================================================== */

.pm-history {
    background:
        linear-gradient(
            135deg,
            #f5fbfb,
            #eef7f8
        );
}

.pm-history-row {
    display: flex;
    align-items: center;
}

.pm-history-content {
    padding-right: 44px;
}

.pm-history-content > p {
    margin-bottom: 30px;
}

.pm-security-list article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.pm-security-list article:last-child {
    margin-bottom: 0;
}

.pm-security-list article > .glyphicon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--pm-white);
    color: var(--pm-primary);
    box-shadow: var(--pm-shadow-xs);
    font-size: 16px;
}

.pm-security-list h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.pm-security-list p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

.pm-history-media {
    padding-left: 24px;
}

.pm-image-shell-history {
    min-height: 590px;
    border-radius: 30px;
}

.pm-image-shell-history .pm-image {
    min-height: 590px;
    object-fit: cover;
}


/* ==========================================================================
   WEBSITE
   ========================================================================== */

.pm-website {
    background: var(--pm-white);
}

.pm-image-shell-website {
    max-width: 1080px;
    min-height: 570px;
    margin: 0 auto 46px;
    padding: 14px;
    border-radius: 30px;
    background: var(--pm-white);
}

.pm-image-shell-website .pm-image {
    min-height: 540px;
    border-radius: 20px;
    object-fit: cover;
}

.pm-website-features {
    margin-right: -8px;
    margin-left: -8px;
}

.pm-website-features > div {
    padding-right: 8px;
    padding-left: 8px;
}

.pm-website-card {
    height: 100%;
    min-height: 220px;
    padding: 28px 24px;
    border: 1px solid var(--pm-border-soft);
    border-radius: 18px;
    background: var(--pm-white);
    box-shadow: var(--pm-shadow-xs);
    text-align: center;
    transition:
        transform var(--pm-transition),
        box-shadow var(--pm-transition),
        border-color var(--pm-transition);
}

.pm-website-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 127, 140, 0.2);
    box-shadow: var(--pm-shadow-sm);
}

.pm-website-card > .glyphicon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-size: 19px;
}

.pm-website-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.pm-website-card p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================================
   PRICING
   ========================================================================== */

.pm-pricing {
    background:
        linear-gradient(
            180deg,
            var(--pm-primary-faint),
            #edf7f7
        );
}

.pm-billing-switch {
    display: flex;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 46px;
    padding: 5px;
    border: 1px solid rgba(8, 127, 140, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--pm-shadow-xs);
}

.pm-billing-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 20px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--pm-text-soft);
    font-size: 14px;
    font-weight: 750;
    outline: none;
    transition:
        background var(--pm-transition),
        color var(--pm-transition),
        box-shadow var(--pm-transition);
}

.pm-billing-button span {
    display: inline-flex;
    padding: 4px 7px;
    border-radius: 999px;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.pm-billing-button.is-active {
    background: var(--pm-primary);
    color: var(--pm-white);
    box-shadow: 0 8px 16px rgba(8, 127, 140, 0.2);
}

.pm-billing-button.is-active span {
    background: rgba(255, 255, 255, 0.18);
    color: var(--pm-white);
}

.pm-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pm-plan-column {
    display: flex;
    margin-bottom: 28px;
}

.pm-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 34px 30px 30px;
    border: 1px solid rgba(8, 127, 140, 0.1);
    border-radius: 24px;
    background: var(--pm-white);
    box-shadow: var(--pm-shadow-sm);
    transition:
        transform var(--pm-transition),
        border-color var(--pm-transition),
        box-shadow var(--pm-transition);
}

.pm-plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 127, 140, 0.26);
    box-shadow: var(--pm-shadow-md);
}

.pm-plan-card.is-featured {
    border-color: var(--pm-primary);
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f4fbfb
        );
    box-shadow:
        0 24px 60px rgba(8, 127, 140, 0.18);
}

.pm-plan-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--pm-primary);
    color: var(--pm-white);
    box-shadow: 0 8px 18px rgba(8, 127, 140, 0.25);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pm-plan-header {
    min-height: 128px;
}

.pm-plan-header h3 {
    margin-bottom: 9px;
    font-size: 24px;
    letter-spacing: -0.025em;
}

.pm-plan-header p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

.pm-plan-users {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 22px;
    padding: 9px 12px;
    border-radius: 10px;
    background: var(--pm-primary-faint);
    color: var(--pm-primary-dark);
    font-size: 13px;
    font-weight: 750;
}

.pm-plan-users .glyphicon {
    font-size: 12px;
}

.pm-plan-price {
    min-height: 96px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--pm-border-soft);
}

.pm-price {
    display: flex;
    align-items: flex-end;
    color: var(--pm-primary-deep);
}

.pm-price-currency {
    align-self: flex-start;
    margin-top: 9px;
    margin-right: 3px;
    font-size: 20px;
    font-weight: 800;
}

.pm-price-amount {
    font-size: 54px;
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1;
}

.pm-price-period {
    margin-bottom: 7px;
    margin-left: 5px;
    color: var(--pm-text-muted);
    font-size: 13px;
    font-weight: 650;
}

.pm-price-caption {
    display: block;
    margin-top: 8px;
    color: var(--pm-text-muted);
    font-size: 12px;
}

.pm-plan-custom-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pm-plan-custom-price strong {
    display: block;
    margin-bottom: 7px;
    color: var(--pm-primary);
    font-size: 25px;
    line-height: 1.2;
}

.pm-plan-custom-price small {
    color: var(--pm-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.pm-plan-features {
    flex: 1 1 auto;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pm-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--pm-text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.pm-plan-features li:last-child {
    margin-bottom: 0;
}

.pm-plan-features .glyphicon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-size: 8px;
}

.pm-pricing-consultation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 26px;
    padding: 30px 34px;
    border: 1px solid rgba(8, 127, 140, 0.12);
    border-radius: 22px;
    background: var(--pm-white);
    box-shadow: var(--pm-shadow-sm);
}

.pm-pricing-consultation > div {
    display: flex;
    align-items: center;
    gap: 17px;
}

.pm-pricing-consultation > div > .glyphicon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-size: 18px;
}

.pm-pricing-consultation strong {
    display: block;
    margin-bottom: 4px;
    color: var(--pm-primary-deep);
    font-size: 17px;
}

.pm-pricing-consultation p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.55;
}


/* ==========================================================================
   DEMO
   ========================================================================== */

.pm-demo {
    background: var(--pm-bg-dark);
}

.pm-demo::before {
    position: absolute;
    top: -160px;
    right: -130px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(54, 209, 196, 0.16),
            transparent 70%
        );
    content: "";
}

.pm-demo-row {
    display: flex;
    align-items: center;
}

.pm-demo .pm-eyebrow {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: var(--pm-accent);
}

.pm-demo h2 {
    color: var(--pm-white);
}

.pm-demo-content {
    padding-right: 48px;
}

.pm-demo-content > p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.72);
}

.pm-demo-steps {
    margin-bottom: 30px;
}

.pm-demo-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.pm-demo-step:last-child {
    margin-bottom: 0;
}

.pm-demo-step > span {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--pm-accent);
    font-size: 13px;
    font-weight: 850;
}

.pm-demo-step h3 {
    margin-bottom: 4px;
    color: var(--pm-white);
    font-size: 15px;
}

.pm-demo-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.55;
}

.pm-demo-main-button {
    min-width: 210px;
}

.pm-demo-panel {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.pm-demo-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.pm-demo-panel-header strong {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 650;
}

.pm-demo-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pm-white);
    font-size: 13px;
    font-weight: 750;
}

.pm-demo-availability span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #45d49a;
    box-shadow: 0 0 0 5px rgba(69, 212, 154, 0.12);
}

.pm-demo-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px 17px;
    border: 1px solid rgba(54, 209, 196, 0.17);
    border-radius: 14px;
    background: rgba(54, 209, 196, 0.09);
}

.pm-demo-notice > .glyphicon {
    margin-top: 3px;
    color: var(--pm-accent);
}

.pm-demo-notice p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
}

.pm-demo-notice strong {
    color: var(--pm-white);
}

.pm-credentials-grid {
    margin-right: -7px;
    margin-left: -7px;
}

.pm-credentials-grid > div {
    padding-right: 7px;
    padding-left: 7px;
}

.pm-credential-card {
    margin-bottom: 14px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    transition:
        background var(--pm-transition),
        border-color var(--pm-transition),
        transform var(--pm-transition);
}

.pm-credential-card:hover {
    transform: translateY(-3px);
    border-color: rgba(54, 209, 196, 0.26);
    background: rgba(255, 255, 255, 0.1);
}

.pm-credential-card header {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-height: 72px;
    margin-bottom: 13px;
}

.pm-credential-card header > .glyphicon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: rgba(54, 209, 196, 0.13);
    color: var(--pm-accent);
    font-size: 13px;
}

.pm-credential-card h3 {
    margin-bottom: 3px;
    color: var(--pm-white);
    font-size: 14px;
}

.pm-credential-card header p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    line-height: 1.45;
}

.pm-credential-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    padding: 9px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.15);
}

.pm-credential-line > div {
    min-width: 0;
}

.pm-credential-line small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pm-credential-line code {
    overflow: hidden;
    display: block;
    color: var(--pm-white);
    background: transparent;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pm-copy-button {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.62);
    outline: none;
    transition:
        background var(--pm-transition),
        color var(--pm-transition),
        border-color var(--pm-transition);
}

.pm-copy-button:hover,
.pm-copy-button:focus {
    border-color: rgba(54, 209, 196, 0.3);
    background: rgba(54, 209, 196, 0.15);
    color: var(--pm-accent);
}

.pm-copy-button.is-copied {
    border-color: rgba(69, 212, 154, 0.3);
    background: rgba(69, 212, 154, 0.17);
    color: #67e1ad;
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.pm-final-cta {
    padding-top: 90px;
    padding-bottom: 90px;
    background: var(--pm-white);
}

.pm-final-cta-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 54px 58px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            var(--pm-primary-deep),
            var(--pm-primary)
        );
    box-shadow: var(--pm-shadow-lg);
}

.pm-final-cta-box::before {
    position: absolute;
    top: -130px;
    right: -70px;
    width: 320px;
    height: 320px;
    border: 45px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.pm-final-cta-box::after {
    position: absolute;
    bottom: -140px;
    left: 30%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(54, 209, 196, 0.1);
    content: "";
}

.pm-final-cta-content,
.pm-final-cta-actions {
    position: relative;
    z-index: 2;
}

.pm-final-cta-content {
    max-width: 690px;
}

.pm-final-cta .pm-eyebrow {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    color: var(--pm-accent);
}

.pm-final-cta h2 {
    margin-bottom: 15px;
    color: var(--pm-white);
}

.pm-final-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.pm-final-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}

.pm-final-cta .btn-default {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: var(--pm-white);
    box-shadow: none;
}

.pm-final-cta .btn-default:hover,
.pm-final-cta .btn-default:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.16);
    color: var(--pm-white);
}

.pm-final-cta .btn-primary {
    border-color: var(--pm-white);
    background: var(--pm-white);
    color: var(--pm-primary);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.16);
}

.pm-final-cta .btn-primary:hover,
.pm-final-cta .btn-primary:focus {
    border-color: var(--pm-primary-faint);
    background: var(--pm-primary-faint);
    color: var(--pm-primary-dark);
}


/* ==========================================================================
   JAVASCRIPT ANIMATION HOOKS
   ========================================================================== */

.js .pm-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.js .pm-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js .pm-reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition:
        opacity 750ms ease,
        transform 750ms ease;
}

.js .pm-reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.js .pm-reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition:
        opacity 750ms ease,
        transform 750ms ease;
}

.js .pm-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.pm-toast-copy {
    position: fixed;
    z-index: 9999;
    right: 24px;
    bottom: 24px;
    opacity: 0;
    visibility: hidden;
    padding: 13px 18px;
    border-radius: 12px;
    background: var(--pm-primary-deep);
    color: var(--pm-white);
    box-shadow: var(--pm-shadow-md);
    font-size: 13px;
    font-weight: 700;
    transform: translateY(15px);
    transition:
        opacity var(--pm-transition),
        visibility var(--pm-transition),
        transform var(--pm-transition);
}

.pm-toast-copy.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.pm-landing a:focus-visible,
.pm-landing button:focus-visible {
    outline: 3px solid rgba(54, 209, 196, 0.42);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js .pm-reveal,
    .js .pm-reveal-left,
    .js .pm-reveal-right {
        opacity: 1;
        transform: none;
    }

}


/* ==========================================================================
   LARGE DESKTOP
   ========================================================================== */

@media (min-width: 1400px) {

    :root {
        --pm-container: 1280px;
    }

    .pm-hero {
        min-height: 900px;
    }

}


/* ==========================================================================
   DESKTOP / TABLET LANDSCAPE
   ========================================================================== */

@media (max-width: 1199px) {

    .pm-section {
        padding: 95px 0;
    }

    .pm-hero {
        min-height: auto;
    }

    .pm-hero-points {
        grid-template-columns: 1fr;
    }

    .pm-hero-points > div {
        min-height: auto;
    }

    .pm-panel-composition {
        min-height: 520px;
        padding-right: 55px;
    }

    .pm-panel-main,
    .pm-panel-main .pm-image {
        min-height: 460px;
    }

    .pm-panel-mobile {
        width: 190px;
    }

    .pm-panel-mobile .pm-image {
        min-height: 370px;
    }

    .pm-image-shell-team,
    .pm-image-shell-team .pm-image,
    .pm-image-shell-history,
    .pm-image-shell-history .pm-image {
        min-height: 520px;
    }

    .pm-role-grid {
        grid-template-columns: 1fr;
    }

    .pm-plan-header {
        min-height: 145px;
    }

    .pm-final-cta-box {
        padding: 48px;
    }

}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {

    .pm-section {
        padding: 80px 0;
    }

    .pm-section-heading {
        margin-bottom: 46px;
    }

    .pm-hero-row,
    .pm-ecosystem-row,
    .pm-platform-row,
    .pm-team-row,
    .pm-history-row,
    .pm-demo-row {
        display: block;
    }

    .pm-hero-content,
    .pm-platform-content,
    .pm-demo-content {
        padding-right: 15px;
    }

    .pm-hero-media,
    .pm-ecosystem-content,
    .pm-history-media {
        padding-left: 15px;
    }

    .pm-hero-content {
        margin-bottom: 72px;
        text-align: center;
    }

    .pm-hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .pm-hero-actions,
    .pm-hero-points {
        justify-content: center;
    }

    .pm-hero-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .pm-hero-media {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .pm-floating-card-top {
        right: 4px;
    }

    .pm-floating-card-bottom {
        left: 4px;
    }

    .pm-image-shell-wide,
    .pm-image-shell-wide .pm-image {
        min-height: 440px;
    }

    .pm-ecosystem-content {
        margin-top: 48px;
    }

    .pm-platform-content {
        margin-bottom: 52px;
    }

    .pm-panel-composition {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .pm-team-media {
        margin-bottom: 50px;
        padding-right: 15px;
    }

    .pm-team-content {
        padding-left: 15px;
    }

    .pm-role-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pm-history-content {
        margin-bottom: 50px;
        padding-right: 15px;
    }

    .pm-image-shell-team,
    .pm-image-shell-team .pm-image,
    .pm-image-shell-history,
    .pm-image-shell-history .pm-image {
        min-height: 480px;
    }

    .pm-image-shell-website,
    .pm-image-shell-website .pm-image {
        min-height: 470px;
    }

    .pm-website-card {
        margin-bottom: 16px;
    }

    .pm-plan-header {
        min-height: 125px;
    }

    .pm-demo-content {
        margin-bottom: 50px;
    }

    .pm-final-cta-box {
        display: block;
        text-align: center;
    }

    .pm-final-cta-content {
        margin-right: auto;
        margin-bottom: 30px;
        margin-left: auto;
    }

    .pm-final-cta-actions {
        justify-content: center;
    }

}


/* ==========================================================================
   MOBILE LANDSCAPE / SMALL TABLET
   ========================================================================== */

@media (max-width: 767px) {

    .pm-landing .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .pm-section {
        padding: 68px 0;
    }

    .pm-hero {
        padding-top: 70px;
    }

    .pm-landing h1 {
        font-size: 45px;
        line-height: 1.02;
    }

    .pm-landing h2 {
        font-size: 36px;
    }

    .pm-landing p {
        font-size: 16px;
    }

    .pm-section-heading {
        margin-bottom: 38px;
    }

    .pm-hero-content {
        margin-bottom: 58px;
    }

    .pm-hero-actions {
        flex-direction: column;
    }

    .pm-hero-actions .btn {
        width: 100%;
    }

    .pm-hero-points {
        grid-template-columns: 1fr;
    }

    .pm-image-shell-hero {
        padding: 10px;
        border-radius: 24px;
    }

    .pm-image-hero {
        min-height: 390px;
        border-radius: 18px;
    }

    .pm-floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        max-width: none;
        margin-top: 13px;
    }

    .pm-process::before {
        left: 23px;
    }

    .pm-process-number {
        width: 48px;
        height: 48px;
    }

    .pm-image-shell-wide,
    .pm-image-shell-wide .pm-image {
        min-height: 360px;
    }

    .pm-panel-composition {
        min-height: 470px;
        padding-right: 36px;
    }

    .pm-panel-main,
    .pm-panel-main .pm-image {
        min-height: 390px;
    }

    .pm-panel-mobile {
        width: 155px;
        padding: 7px;
        border-radius: 22px;
    }

    .pm-panel-mobile .pm-image {
        min-height: 300px;
        border-radius: 17px;
    }

    .pm-role-grid {
        grid-template-columns: 1fr;
    }

    .pm-image-shell-team,
    .pm-image-shell-team .pm-image,
    .pm-image-shell-history,
    .pm-image-shell-history .pm-image {
        min-height: 390px;
    }

    .pm-image-shell-website {
        min-height: auto;
        margin-bottom: 30px;
        padding: 8px;
        border-radius: 20px;
    }

    .pm-image-shell-website .pm-image {
        min-height: 340px;
        border-radius: 14px;
    }

    .pm-billing-switch {
        width: 100%;
    }

    .pm-billing-button {
        flex: 1 1 50%;
        justify-content: center;
        padding-right: 12px;
        padding-left: 12px;
    }

    .pm-plan-card {
        padding: 30px 24px 26px;
    }

    .pm-plan-header {
        min-height: auto;
        margin-bottom: 20px;
    }

    .pm-pricing-consultation {
        display: block;
        padding: 26px;
        text-align: center;
    }

    .pm-pricing-consultation > div {
        display: block;
        margin-bottom: 22px;
    }

    .pm-pricing-consultation > div > .glyphicon {
        margin: 0 auto 14px;
    }

    .pm-pricing-consultation .btn {
        width: 100%;
    }

    .pm-demo-panel {
        padding: 20px;
        border-radius: 20px;
    }

    .pm-demo-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .pm-credential-card header {
        min-height: auto;
    }

    .pm-final-cta {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .pm-final-cta-box {
        padding: 38px 24px;
        border-radius: 24px;
    }

    .pm-final-cta-actions {
        flex-direction: column;
    }

    .pm-final-cta-actions .btn {
        width: 100%;
    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

    .pm-landing h1 {
        font-size: 39px;
    }

    .pm-landing h2 {
        font-size: 32px;
    }

    .pm-eyebrow {
        font-size: 11px;
    }

    .pm-hero-description {
        font-size: 17px;
    }

    .pm-image-hero {
        min-height: 310px;
    }

    .pm-image-shell-wide,
    .pm-image-shell-wide .pm-image {
        min-height: 290px;
    }

    .pm-panel-composition {
        min-height: 385px;
        padding-right: 26px;
    }

    .pm-panel-main,
    .pm-panel-main .pm-image {
        min-height: 315px;
    }

    .pm-panel-mobile {
        width: 125px;
    }

    .pm-panel-mobile .pm-image {
        min-height: 245px;
    }

    .pm-image-shell-team,
    .pm-image-shell-team .pm-image,
    .pm-image-shell-history,
    .pm-image-shell-history .pm-image {
        min-height: 315px;
    }

    .pm-image-shell-website .pm-image {
        min-height: 270px;
    }

    .pm-billing-button {
        font-size: 12px;
    }

    .pm-billing-button span {
        display: none;
    }

    .pm-price-amount {
        font-size: 48px;
    }

    .pm-demo-panel {
        margin-right: -4px;
        margin-left: -4px;
        padding: 16px;
    }

    .pm-final-cta-box {
        padding: 34px 20px;
    }

}