/* ================================================================
   Jesto PerformPro — Performance Management Product Page
   Prefix: pm-
   Palette: Primary #0030DB | Text #1D1D1F | Muted #6E6E73
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --pm-primary:    #0030DB;
    --pm-primary-h:  #0025A8;
    --pm-text:       #1D1D1F;
    --pm-muted:      #6E6E73;
    --pm-border:     #E5E5E5;
    --pm-bg:         #F5F5F7;
    --pm-white:      #FFFFFF;
    --pm-dark:       #0F172A;
    --pm-radius:     12px;
    --pm-shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    --pm-shadow-md:  0 4px 20px rgba(0,0,0,0.09);
    --pm-shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
    --pm-font:       'Ubuntu', sans-serif;
    --pm-transition: all 0.25s ease;
}

body { font-family: var(--pm-font); color: var(--pm-text); background: var(--pm-white); }

/* ── Container ── */
.pm-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ── Reusable section tag ── */
.pm-section-tag {
    display: inline-block;
    background: rgba(0,48,219,0.08);
    color: var(--pm-primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.pm-section-tag-light {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.pm-section-header { text-align: center; margin-bottom: 56px; }
.pm-section-header h2 { font-size: 2.1rem; font-weight: 700; color: var(--pm-text); margin-bottom: 0.75rem; line-height: 1.2; }
.pm-section-header p { font-size: 1rem; color: var(--pm-muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ── Buttons ── */
.pm-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pm-primary); color: #fff;
    padding: 13px 26px; border-radius: 8px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.pm-btn-primary:hover { background: var(--pm-primary-h); transform: translateY(-1px); }
.pm-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--pm-border); color: var(--pm-text);
    padding: 13px 26px; border-radius: 8px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    background: var(--pm-white); transition: var(--pm-transition);
    white-space: nowrap;
}
.pm-btn-outline:hover { border-color: var(--pm-primary); color: var(--pm-primary); }
.pm-blue { color: var(--pm-primary); }


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.pm-hero {
    position: relative;
    padding: 50px 0 100px;
    background: var(--pm-white);
    overflow: hidden;
}
.pm-hero-bg-grid {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(0,48,219,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,48,219,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.pm-hero-glow-1 {
    position: absolute; top: -10%; left: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,48,219,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.pm-hero-glow-2 {
    position: absolute; bottom: -10%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.pm-hero-container {
    position: relative; z-index: 1;
}
.pm-hero-center {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* Rating Badge */
.pm-hero-rating-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(0,48,219,0.04);
    border: 1px solid rgba(0,48,219,0.1);
    padding: 8px 20px; border-radius: 50px;
    margin-bottom: 32px;
}
.pm-hero-stars { display: flex; gap: 2px; color: #F59E0B; font-size: 13px; }
.pm-hero-rating-badge span { font-size: 14px; color: var(--pm-muted); }
.pm-hero-rating-badge strong { color: var(--pm-text); }

/* H1 */
.pm-hero-h1 {
    font-size: 72px; font-weight: 800; color: var(--pm-text);
    line-height: 1.05; margin-bottom: 28px; letter-spacing: -2px;
}
.pm-blue { color: var(--pm-primary); }

/* Subtitle */
.pm-hero-sub {
    font-size: 20px; color: var(--pm-muted); line-height: 1.6;
    max-width: 650px; margin: 0 auto 36px;
}
.pm-hero-sub strong { color: var(--pm-text); font-weight: 600; }

/* Checklist */
.pm-hero-checklist {
    display: flex; justify-content: center; gap: 30px;
    margin-bottom: 40px;
}
.pm-check-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 600; color: var(--pm-text);
}
.pm-check-item i { color: var(--pm-primary); font-size: 16px; }

/* Buttons */
.pm-hero-btns {
    display: flex; justify-content: center; gap: 24px;
    margin-bottom: 48px;
}
.pm-btn-primary, .pm-btn-outline {
    padding: 18px 40px; border-radius: 10px;
    font-size: 17px; font-weight: 800; font-family: var(--pm-font);
    text-decoration: none; letter-spacing: 0.5px;
    transition: all 0.2s ease; cursor: pointer;
}
.pm-btn-primary {
    background: var(--pm-primary); color: #fff;
    box-shadow: 0 10px 30px rgba(0,48,219,0.3);
}
.pm-btn-primary:hover {
    background: var(--pm-primary-h); transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,48,219,0.4);
}
.pm-btn-outline {
    background: #F8FAFC; color: var(--pm-text);
    border: 1px solid var(--pm-border);
}
.pm-btn-outline:hover { background: #F1F5F9; border-color: #CBD5E1; }

/* Featured On */
.pm-hero-featured {
    display: flex; flex-direction: column; gap: 16px;
    align-items: center;
}
.pm-featured-label {
    font-size: 12px; font-weight: 800; color: #94A3B8;
    letter-spacing: 2px; text-transform: uppercase;
}
.pm-featured-logos {
    display: flex; align-items: center; justify-content: center; gap: 28px;
}
.pm-featured-item {
    font-size: 17px; font-weight: 700; color: #475569;
    letter-spacing: -0.5px;
}
.pm-featured-divider {
    width: 1px; height: 16px; background: #CBD5E1;
}

/* ── Hero Responsive ── */
@media (max-width: 1100px) {
    .pm-hero { padding: 120px 0 80px; }
    .pm-hero-h1 { font-size: 48px; }
    .pm-hero-checklist { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
    .pm-hero { padding: 100px 0 60px; }
    .pm-hero-h1 { font-size: 36px; letter-spacing: -1px; }
    .pm-hero-sub { font-size: 17px; }
    .pm-hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .pm-btn-primary, .pm-btn-outline { width: 100%; max-width: 320px; text-align: center; }
    .pm-hero-checklist { flex-direction: column; align-items: center; gap: 12px; }
}


/* ════════════════════════════════════════════
   VALUE PROOF STRIP
════════════════════════════════════════════ */
.pm-value-strip {
    padding: 40px 0;
    background: var(--pm-primary);
}
.pm-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.pm-value-item {
    padding: 0 20px;
    position: relative;
}
.pm-value-item:not(:last-child)::after {
    content: "";
    position: absolute; right: -20px; top: 20%; height: 60%; width: 1px;
    background: rgba(255,255,255,0.2);
}
.pm-value-num {
    font-size: 56px; font-weight: 800; color: #FFFFFF;
    margin-bottom: 12px; letter-spacing: -2px;
}
.pm-value-text {
    font-size: 16px; font-weight: 700;
    color: rgba(255,255,255,0.8);
    line-height: 1.4; max-width: 200px; margin: 0 auto;
}
@media (max-width: 1024px) {
    .pm-value-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
    .pm-value-item:nth-child(2)::after { display: none; }
}
@media (max-width: 640px) {
    .pm-value-grid { grid-template-columns: 1fr; gap: 40px; }
    .pm-value-item:not(:last-child)::after { display: none; }
    .pm-value-num { font-size: 44px; }
}


/* (Trust bar and stats strip removed — replaced by value proof strip above) */


/* ════════════════════════════════════════════
   DEFINITION
════════════════════════════════════════════ */
.pm-definition { background: var(--pm-white); padding: 90px 0; }
.pm-definition-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.pm-def-left { padding-top: 8px; }
.pm-def-h2 { font-size: 2.2rem; font-weight: 700; color: var(--pm-text); margin-bottom: 1.25rem; line-height: 1.2; }
.pm-def-p { font-size: 0.95rem; color: var(--pm-muted); line-height: 1.75; margin-bottom: 1.1rem; }
.pm-def-checklist { margin: 1.75rem 0 0; display: flex; flex-direction: column; gap: 14px; }
.pm-def-check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--pm-text); line-height: 1.5; }
.pm-def-check-item i { color: var(--pm-primary); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

/* Right side — numbered concept cards */
.pm-def-right {
    display: flex; flex-direction: column; gap: 0;
    background: var(--pm-bg);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--pm-border);
}
.pm-concept-card {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--pm-border);
    transition: var(--pm-transition);
}
.pm-concept-card:first-child { padding-top: 0; }
.pm-concept-card:last-child { border-bottom: none; padding-bottom: 0; }

/* Left column: number + colored line */
.pm-concept-left {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; flex-shrink: 0; min-width: 36px;
    padding-top: 2px;
}
.pm-concept-number {
    font-size: 1.1rem; font-weight: 800;
    color: var(--pm-primary); opacity: 0.35;
    line-height: 1; letter-spacing: -0.5px;
}
.pm-concept-line {
    width: 2px; height: 28px; border-radius: 2px;
    opacity: 0.5;
}
.pm-concept-card:hover .pm-concept-number { opacity: 0.7; }
.pm-concept-card:hover .pm-concept-line { opacity: 1; }

/* Body */
.pm-concept-body { flex: 1; }
.pm-concept-card h4 {
    font-size: 0.95rem; font-weight: 700; color: var(--pm-text);
    margin-bottom: 5px;
}
.pm-concept-card p {
    font-size: 0.85rem; color: var(--pm-muted); line-height: 1.6;
}


/* ════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════ */
.pm-features { background: var(--pm-bg); padding: 90px 0; }
.pm-feat-row { display: grid; gap: 20px; margin-bottom: 20px; }
.pm-feat-row:last-child { margin-bottom: 0; }
.pm-feat-row-3 { grid-template-columns: repeat(3, 1fr); }

.pm-feat-card {
    background: var(--pm-white);
    border-radius: 16px;
    border: 1px solid var(--pm-border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
}
.pm-feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: #C7D2FE;
}

/* Text area */
.pm-feat-text { padding: 24px; flex: 1; }
.pm-feat-card h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--pm-text);
    margin-bottom: 10px;
}
.pm-feat-card p {
    font-size: 0.88rem; color: var(--pm-muted); line-height: 1.7;
}

/* ── Mock visual area (Plutio style) ── */
.pm-feat-mock {
    padding: 24px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--pm-border);
    display: flex; flex-direction: column; gap: 14px;
    min-height: 155px; justify-content: center;
}

/* Shared mock elements */
.pm-mock-avatars { display: flex; gap: 0; }
.pm-m-av {
    width: 28px; height: 28px; border-radius: 50%;
    color: #fff; font-size: 0.6rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-left: -6px; border: 2px solid #F8FAFC;
}
.pm-m-av:first-child { margin-left: 0; }
.pm-mock-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--pm-white); border: 1px solid var(--pm-border);
    border-radius: 20px; padding: 6px 14px;
    font-size: 0.7rem; font-weight: 600; color: var(--pm-text);
    width: fit-content;
}
.pm-mock-pill i { color: var(--pm-primary); font-size: 0.65rem; }
.pm-mock-mini-bars { display: flex; flex-direction: column; gap: 5px; }
.pm-m-bar { height: 6px; border-radius: 3px; }

/* KPI row */
.pm-mock-kpi-row { display: flex; gap: 12px; }
.pm-m-kpi { text-align: center; flex: 1; background: var(--pm-white); border-radius: 10px; padding: 10px 8px; border: 1px solid var(--pm-border); }
.pm-m-kpi-val { font-size: 1.1rem; font-weight: 800; color: var(--pm-primary); line-height: 1; }
.pm-m-kpi-lbl { font-size: 0.58rem; font-weight: 600; color: var(--pm-muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.03em; }

/* Tag pills row */
.pm-mock-pill-row { display: flex; gap: 6px; flex-wrap: wrap; }
.pm-m-tag {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--pm-white); border: 1px solid var(--pm-border);
    border-radius: 6px; padding: 5px 10px;
    font-size: 0.65rem; font-weight: 600; color: var(--pm-muted);
}
.pm-m-tag i { font-size: 0.6rem; }
.pm-m-tag-active { background: #EEF2FF; border-color: #C7D2FE; color: var(--pm-primary); }

/* OKR list */
.pm-mock-okr-list { display: flex; flex-direction: column; gap: 8px; }
.pm-m-okr {
    display: flex; align-items: center; gap: 8px;
    background: var(--pm-white); border: 1px solid var(--pm-border);
    border-radius: 8px; padding: 8px 12px;
    font-size: 0.7rem; font-weight: 500; color: var(--pm-text);
}
.pm-m-okr-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pm-m-okr span:nth-child(2) { flex: 1; }
.pm-m-okr-pct { font-weight: 700; color: var(--pm-primary); }

/* Board / kanban */
.pm-mock-board { display: flex; gap: 6px; }
.pm-m-col {
    flex: 1; background: var(--pm-white); border-radius: 8px;
    padding: 8px; border: 1px solid var(--pm-border);
}
.pm-m-col > span { display: block; font-size: 0.55rem; font-weight: 700; color: var(--pm-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.pm-m-col-dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; margin-right: 3px; vertical-align: middle; }
.pm-m-chip {
    font-size: 0.6rem; font-weight: 600; color: var(--pm-text);
    background: #F8FAFC; border-radius: 4px; padding: 4px 7px;
    margin-bottom: 4px;
}
.pm-m-chip-b { background: #EEF2FF; color: #4F46E5; }
.pm-m-chip-g { background: #F0FDF4; color: #16A34A; }
.pm-m-chip-g i { font-size: 0.5rem; margin-right: 2px; }

/* Review list */
.pm-mock-review-list { display: flex; flex-direction: column; gap: 8px; }
.pm-m-rev {
    display: flex; align-items: center; gap: 8px;
    background: var(--pm-white); border: 1px solid var(--pm-border);
    border-radius: 8px; padding: 8px 12px;
}
.pm-m-rev-stars { display: flex; gap: 1px; color: #F59E0B; font-size: 0.6rem; flex: 1; }
.pm-m-rev > span { font-size: 0.72rem; font-weight: 700; color: var(--pm-text); }

/* Agenda */
.pm-mock-agenda { display: flex; flex-direction: column; gap: 6px; }
.pm-m-agenda-item {
    display: flex; align-items: center; gap: 8px;
    background: var(--pm-white); border: 1px solid var(--pm-border);
    border-radius: 8px; padding: 7px 12px;
    font-size: 0.7rem; font-weight: 500; color: var(--pm-text);
}
.pm-m-done { color: var(--pm-muted); text-decoration: line-through; }
.pm-m-agenda-item .fa-check-circle { color: #16A34A; font-size: 0.65rem; }
.pm-m-agenda-item .fa-circle { color: #CBD5E1; font-size: 0.65rem; }

/* Steps */
.pm-mock-steps { display: flex; align-items: center; gap: 0; justify-content: center; }
.pm-m-step {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; color: var(--pm-muted);
    background: var(--pm-white); border: 2px solid var(--pm-border);
}
.pm-m-step-done { background: var(--pm-primary); border-color: var(--pm-primary); color: #fff; }
.pm-m-step-done i { font-size: 0.55rem; }
.pm-m-step-current { background: #EEF2FF; border-color: var(--pm-primary); color: var(--pm-primary); }
.pm-m-step-line { width: 20px; height: 2px; background: var(--pm-border); }
.pm-m-line-done { background: var(--pm-primary); }

/* Calendar row */
.pm-mock-cal-row { display: flex; gap: 6px; justify-content: center; }
.pm-m-day {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 600; color: var(--pm-muted);
    background: var(--pm-white); border: 1px solid var(--pm-border);
}
.pm-m-day-today { background: var(--pm-primary); color: #fff; border-color: var(--pm-primary); }
.pm-m-day-event { position: relative; }
.pm-m-day-event::after {
    content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: #F59E0B;
}

/* ── Features Responsive ── */
@media (max-width: 1024px) {
    .pm-feat-row-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .pm-feat-row-3 { grid-template-columns: 1fr; }
    .pm-feat-mock { min-height: 130px; }
}


/* ════════════════════════════════════════════
   CTA BANNER (after features)
════════════════════════════════════════════ */
.pm-cta-banner {
    padding: 80px 0;
    background: var(--pm-primary);
}
.pm-cta-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.pm-cta-content { max-width: 560px; }
.pm-cta-content h2 { font-size: 2rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.pm-cta-content p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.pm-cta-actions { display: flex; gap: 16px; flex-shrink: 0; }
.pm-cta-actions .pm-btn-primary { background: #fff; color: var(--pm-primary); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.pm-cta-actions .pm-btn-primary:hover { background: #F0F4FF; transform: translateY(-2px); }
.pm-cta-actions .pm-btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; background: transparent; }
.pm-cta-actions .pm-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
@media (max-width: 1024px) { .pm-cta-inner { flex-direction: column; text-align: center; } .pm-cta-actions { justify-content: center; } }
@media (max-width: 640px) { .pm-cta-actions { flex-direction: column; align-items: center; } }


/* ════════════════════════════════════════════
   WHO IT'S FOR
════════════════════════════════════════════ */
.pm-whof { background: var(--pm-white); padding: 90px 0; }
.pm-whof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pm-whof-card {
    background: var(--pm-bg); border-radius: 16px;
    padding: 32px 24px; border: 1px solid var(--pm-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pm-whof-card:hover { transform: translateY(-4px); box-shadow: var(--pm-shadow-md); }
.pm-whof-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; margin-bottom: 20px;
}
.pm-whof-card h3 { font-size: 1rem; font-weight: 700; color: var(--pm-text); margin-bottom: 10px; line-height: 1.3; }
.pm-whof-card p { font-size: 0.88rem; color: var(--pm-muted); line-height: 1.65; }


/* ════════════════════════════════════════════
   HOW IT WORKS (timeline style)
════════════════════════════════════════════ */
.pm-how { background: var(--pm-bg); padding: 90px 0; }
.pm-how-timeline {
    max-width: 700px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
}
.pm-how-timeline::before {
    content: ''; position: absolute;
    left: 19px; top: 0; bottom: 0; width: 2px;
    background: var(--pm-border);
}
.pm-how-item {
    display: flex; align-items: flex-start; gap: 28px;
    padding: 28px 0;
    position: relative;
}
.pm-how-item:first-child { padding-top: 0; }
.pm-how-item:last-child { padding-bottom: 0; }
.pm-how-marker {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}
.pm-how-marker span {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--pm-primary); color: #fff;
    font-size: 0.85rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.pm-how-body {}
.pm-how-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--pm-text); margin-bottom: 6px; }
.pm-how-body p { font-size: 0.9rem; color: var(--pm-muted); line-height: 1.7; }


/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pm-pricing { background: var(--pm-white); padding: 90px 0; }
.pm-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pm-price-card {
    border: 1px solid var(--pm-border);
    border-radius: 20px; padding: 40px 32px;
    background: var(--pm-white); position: relative;
    display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pm-price-card:hover { transform: translateY(-4px); box-shadow: var(--pm-shadow-lg); }
.pm-pc-ribbon {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
    background: var(--pm-primary); color: #fff;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 6px 20px; border-radius: 20px;
    white-space: nowrap;
}
.pm-pc-head { margin-bottom: 20px; }
.pm-pc-head h3 { font-size: 1.15rem; font-weight: 700; color: var(--pm-text); margin-bottom: 8px; }
.pm-pc-amt {
    font-size: 3.2rem; font-weight: 800; color: var(--pm-text);
    line-height: 1; letter-spacing: -2px;
}
.pm-pc-amt span { font-size: 0.9rem; font-weight: 500; color: var(--pm-muted); letter-spacing: 0; }
.pm-pc-desc { font-size: 0.88rem; color: var(--pm-muted); line-height: 1.6; margin-bottom: 24px; }
.pm-pc-list { list-style: none; display: flex; flex-direction: column; gap: 14px; flex: 1; margin-bottom: 28px; }
.pm-pc-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: var(--pm-text);
}
.pm-pc-list li i { color: var(--pm-primary); font-size: 0.72rem; flex-shrink: 0; }
.pm-pc-btn {
    display: block; text-align: center; width: 100%;
    padding: 14px 20px; border-radius: 10px;
    font-weight: 700; font-size: 0.92rem; text-decoration: none;
    font-family: var(--pm-font);
    border: 1.5px solid var(--pm-border); color: var(--pm-text);
    background: var(--pm-white);
    transition: var(--pm-transition);
    margin-top: auto;
}
.pm-pc-btn:hover { border-color: var(--pm-primary); color: var(--pm-primary); }
.pm-pc-btn-primary {
    background: var(--pm-primary); color: #fff; border-color: var(--pm-primary);
}
.pm-pc-btn-primary:hover { background: var(--pm-primary-h); border-color: var(--pm-primary-h); color: #fff; }

/* Featured plan */
.pm-price-pop {
    border: 2px solid var(--pm-primary);
    box-shadow: 0 8px 40px rgba(0,48,219,0.1);
}


/* ════════════════════════════════════════════
   TESTIMONIALS (reference-style layout)
════════════════════════════════════════════ */
.pm-testimonials { background: var(--pm-bg); padding: 90px 0; }

/* Top bar */
.pm-testi-topbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 48px; margin-bottom: 48px;
    padding-bottom: 40px; border-bottom: 1px solid var(--pm-border);
}
.pm-testi-stat-block {}
.pm-testi-big-num {
    font-size: 3.5rem; font-weight: 800; color: var(--pm-primary);
    line-height: 1; letter-spacing: -2px; margin-bottom: 6px;
}
.pm-testi-big-lbl { font-size: 1rem; font-weight: 600; color: var(--pm-text); }
.pm-testi-stat-right { text-align: right; }
.pm-testi-stat-right p { font-size: 0.95rem; color: var(--pm-muted); margin-bottom: 16px; line-height: 1.5; }
.pm-testi-topbar-btns { display: flex; gap: 12px; justify-content: flex-end; }

/* Review cards grid */
.pm-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pm-testi-card {
    background: var(--pm-white); border-radius: 16px;
    padding: 28px; border: 1px solid var(--pm-border);
    display: flex; flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pm-testi-card:hover { transform: translateY(-3px); box-shadow: var(--pm-shadow-md); }
.pm-testi-card-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px;
}
.pm-testi-stars { display: flex; align-items: center; gap: 2px; color: #F59E0B; font-size: 0.8rem; }
.pm-testi-stars span { color: var(--pm-muted); font-size: 0.72rem; font-weight: 600; margin-left: 4px; }
.pm-testi-date { font-size: 0.72rem; color: #CBD5E1; font-weight: 500; }
.pm-testi-quote {
    font-size: 0.9rem; color: var(--pm-text); line-height: 1.75;
    flex: 1; margin-bottom: 18px;
}
.pm-testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.pm-testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.pm-testi-name { font-size: 0.85rem; font-weight: 700; color: var(--pm-text); }
.pm-testi-role { font-size: 0.75rem; color: var(--pm-muted); }


/* ════════════════════════════════════════════
   INTEGRATIONS (real logos)
════════════════════════════════════════════ */
.pm-integrations { background: var(--pm-white); padding: 90px 0; }
.pm-integ-logos {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 24px; margin-bottom: 28px;
}
.pm-integ-logo {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    width: 110px; padding: 20px 12px;
    background: var(--pm-bg); border-radius: 14px;
    border: 1px solid var(--pm-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pm-integ-logo:hover { transform: translateY(-3px); box-shadow: var(--pm-shadow-sm); }
.pm-integ-logo img {
    width: 36px; height: 36px; object-fit: contain;
}
.pm-integ-logo span { font-size: 0.75rem; font-weight: 600; color: var(--pm-text); text-align: center; }
.pm-integ-footer {
    text-align: center; font-size: 0.88rem; color: var(--pm-muted); font-weight: 500;
}


/* ════════════════════════════════════════════
   FAQ (Side-by-side layout)
════════════════════════════════════════════ */
.pm-faq { background: var(--pm-bg); padding: 90px 0; }
.pm-faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.pm-faq-h2 { font-size: 2rem; font-weight: 700; color: var(--pm-text); margin-bottom: 12px; line-height: 1.2; }
.pm-faq-sub { font-size: 0.95rem; color: var(--pm-muted); line-height: 1.7; }
.pm-faq-right { display: flex; flex-direction: column; gap: 8px; }
.pm-faq-item {
    background: var(--pm-white); border: 1px solid var(--pm-border);
    border-radius: 12px; overflow: hidden;
}
.pm-faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; background: var(--pm-white);
    border: none; cursor: pointer; text-align: left;
    font-size: 0.93rem; font-weight: 600; color: var(--pm-text);
    font-family: var(--pm-font); gap: 16px;
    transition: background 0.15s ease;
}
.pm-faq-q:hover { background: #FAFBFF; }
.pm-faq-icon { font-size: 0.8rem; color: var(--pm-muted); transition: transform 0.3s ease; flex-shrink: 0; }
.pm-faq-q.pm-faq-open .pm-faq-icon { transform: rotate(45deg); color: var(--pm-primary); }
.pm-faq-q.pm-faq-open { color: var(--pm-primary); }
.pm-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.pm-faq-a.pm-faq-visible { max-height: 400px; }
.pm-faq-a p { padding: 0 24px 20px; font-size: 0.88rem; color: var(--pm-muted); line-height: 1.75; }


/* ════════════════════════════════════════════
   FINAL CTA (electric blue)
════════════════════════════════════════════ */
.pm-final-cta { padding: 0; background: var(--pm-white); }
.pm-final-cta-box {
    background: var(--pm-primary);
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
    margin: 60px 0;
}
.pm-final-cta-box h2 { font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.pm-final-cta-box p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.pm-final-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.pm-fc-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--pm-primary);
    padding: 16px 32px; border-radius: 10px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s ease;
}
.pm-fc-btn-primary:hover { background: #EEF2FF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.pm-fc-btn-outline {
    display: inline-flex; align-items: center;
    border: 1.5px solid rgba(255,255,255,0.35); color: #fff;
    padding: 16px 32px; border-radius: 10px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    background: transparent; transition: all 0.2s ease;
}
.pm-fc-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.pm-final-cta-fine { font-size: 0.78rem; color: rgba(255,255,255,0.5); }


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .pm-definition-inner { grid-template-columns: 1fr; gap: 40px; }
    .pm-whof-grid        { grid-template-columns: repeat(2, 1fr); }
    .pm-testi-topbar     { flex-direction: column; text-align: center; gap: 24px; }
    .pm-testi-stat-right { text-align: center; }
    .pm-testi-topbar-btns { justify-content: center; }
    .pm-testi-grid       { grid-template-columns: repeat(2, 1fr); }
    .pm-integ-logos      { gap: 16px; }
    .pm-price-grid       { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pm-faq-layout       { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .pm-container        { padding: 0 20px; }
    .pm-section-header   { margin-bottom: 36px; }
    .pm-section-header h2 { font-size: 1.65rem; }
    .pm-whof-grid        { grid-template-columns: 1fr; }
    .pm-testi-grid       { grid-template-columns: 1fr; }
    .pm-testi-big-num    { font-size: 2.5rem; }
    .pm-integ-logo       { width: 90px; padding: 14px 8px; }
    .pm-final-cta-box    { padding: 48px 24px; border-radius: 16px; margin: 40px 0; }
    .pm-final-cta-box h2 { font-size: 1.8rem; }
    .pm-definition, .pm-features, .pm-whof,
    .pm-testimonials, .pm-integrations, .pm-pricing,
    .pm-faq              { padding: 60px 0; }
}
