/* PLATplus Landing Page */

:root {
    --pp-primary: #7B61FF;
    --pp-blue: #00A3FF;
    --pp-indigo: #3300FF;
    --pp-dark: #0F172A;
    --pp-text: #334155;
    --pp-muted: #64748B;
    --pp-border: #E2E8F0;
    --pp-bg: #FFFFFF;
    --pp-bg-alt: #F8FAFC;
    --pp-gradient: linear-gradient(135deg, #00A3FF 0%, #7B61FF 50%, #6366F1 100%);
    --pp-gradient-dark: linear-gradient(135deg, #1E3A8A 0%, #312E81 50%, #4C1D95 100%);
    --pp-radius: 16px;
    --pp-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --pp-shadow-lg: 0 20px 60px rgba(123, 97, 255, 0.15);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: Vazirmatn, Tahoma, 'Segoe UI', sans-serif;
    color: var(--pp-text);
    background: var(--pp-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── Sticky top stack ── */
.pp-top-sticky {
    z-index: 1030;
}

/* ── Announcement bar ── */
.pp-announce {
    background: linear-gradient(90deg, #5b4dff 0%, #7B61FF 45%, #00A3FF 100%);
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.4;
}

.pp-announce-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1.25rem;
    flex-wrap: wrap;
    padding: 0.55rem 0;
    text-align: center;
}

.pp-announce-text {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 500;
}

.pp-announce-text i {
    font-size: 0.95rem;
    opacity: 0.95;
}

.pp-announce-text strong {
    font-weight: 900;
    letter-spacing: -0.2px;
}

.pp-announce-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    color: #5b4dff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.32rem 0.9rem;
    border-radius: 50px;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pp-announce-cta:hover {
    color: #4c3de6;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.pp-announce-cta i {
    font-size: 0.8rem;
}

.pp-announce-short { display: none; }

/* ── Navbar ── */
.pp-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pp-border);
    z-index: 1000;
}

.pp-nav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.pp-logo img { height: 36px; width: auto; }

.pp-nav-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--pp-dark);
    padding: 0.25rem;
}

.pp-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.pp-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pp-menu a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.85rem;
    color: var(--pp-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.pp-menu a:hover,
.pp-menu a.active {
    color: var(--pp-primary);
}

.pp-dropdown { position: relative; }

.pp-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--pp-border);
    border-radius: 12px;
    box-shadow: var(--pp-shadow);
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 100;
}

.pp-dropdown:hover .pp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pp-dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

/* ── Buttons ── */
.pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}

.pp-btn:hover { transform: translateY(-1px); }

.pp-btn-sm { padding: 0.45rem 1.25rem; font-size: 0.85rem; }
.pp-btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 14px; }

.pp-btn-primary {
    background: var(--pp-primary);
    color: #fff;
}
.pp-btn-primary:hover {
    background: #6B51EF;
    box-shadow: 0 8px 24px rgba(123, 97, 255, 0.35);
    color: #fff;
}

.pp-btn-gradient {
    background: var(--pp-gradient);
    color: #fff;
    border: none;
}
.pp-btn-gradient:hover {
    box-shadow: 0 8px 28px rgba(0, 163, 255, 0.35);
    color: #fff;
}

.pp-btn-outline {
    background: #fff;
    color: var(--pp-primary);
    border-color: var(--pp-primary);
}
.pp-btn-outline:hover {
    background: rgba(123, 97, 255, 0.06);
    color: var(--pp-primary);
}

.pp-btn-white {
    background: #fff;
    color: var(--pp-dark);
}
.pp-btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: var(--pp-dark); }

.pp-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.pp-btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ── Hero ── */
.pp-hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #FAFBFF 0%, #fff 100%);
    overflow: hidden;
}

.pp-badge {
    display: inline-block;
    background: rgba(123, 97, 255, 0.1);
    color: var(--pp-primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.pp-hero-title {
    font-size: clamp(1.9rem, 4.4vw, 3rem);
    font-weight: 900;
    color: var(--pp-dark);
    line-height: 1.35;
    margin-bottom: 1.25rem;
}

.pp-gradient-text {
    background: var(--pp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pp-hero-desc {
    font-size: 1.05rem;
    color: var(--pp-muted);
    max-width: 520px;
    margin-bottom: 2rem;
}

.pp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pp-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--pp-border);
}

.pp-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--pp-dark);
    line-height: 1.2;
}

.pp-stat span {
    font-size: 0.82rem;
    color: var(--pp-muted);
}

.pp-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #FEF3C7;
    color: #D97706;
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
    font-size: 1rem;
}

.pp-rating-badge i { font-size: 0.85rem; }

/* Hero Builder Mock */
.pp-hero-visual {
    position: relative;
    perspective: 720px;
    perspective-origin: 50% 45%;
    padding: 1.5rem 1.75rem;
    touch-action: pan-y;
}

.pp-gyro-hint {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 0.15rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    font: inherit;
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.28);
    animation: ppGyroHintIn 0.5s ease both;
    pointer-events: auto;
}

.pp-gyro-hint:active { transform: translateX(-50%) scale(0.97); }

.pp-gyro-hint i { color: #A5B4FC; font-size: 0.95rem; }
.pp-gyro-hint.is-gone {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

@keyframes ppGyroHintIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.pp-hero-visual--gyro .pp-gyro-hint { display: none; }

.pp-builder-mock {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 70px -25px rgba(79, 70, 229, 0.35), 0 12px 28px -12px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transform-style: preserve-3d;
    transform: perspective(720px) rotateY(-8deg) rotateX(4deg) translateZ(12px);
    transition: box-shadow 0.35s ease;
    overflow: visible;
    will-change: transform;
    backface-visibility: hidden;
}

.pp-builder-mock:hover:not(.is-tilting) {
    transform: perspective(720px) rotateY(-4deg) rotateX(2deg) translateZ(16px);
}

.pp-builder-mock.is-tilting {
    transition: none;
}

.pp-builder-mock .pp-fcard {
    transform: translateZ(36px);
    transition: none;
    will-change: transform;
}

.pp-builder-mock.is-gyro .pp-fcard,
.pp-builder-mock.is-tilting .pp-fcard {
    filter: drop-shadow(0 10px 16px rgba(15, 23, 42, 0.18));
}

.pp-mock-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--pp-border);
    background: #F8FAFC;
    border-radius: 20px 20px 0 0;
}

.pp-mock-toolbar > span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E2E8F0;
    flex-shrink: 0;
}
.pp-mock-toolbar > span:nth-child(1) { background: #FCA5A5; }
.pp-mock-toolbar > span:nth-child(2) { background: #FDE68A; }
.pp-mock-toolbar > span:nth-child(3) { background: #86EFAC; }

.pp-mock-urlbar {
    margin-inline-start: 10px;
    flex: 1;
    max-width: 190px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: .62rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
    direction: ltr;
}
.pp-mock-urlbar i { font-size: .58rem; color: #10B981; }

.pp-mock-body {
    display: flex;
    min-height: 288px;
    padding: 12px;
    gap: 10px;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

.pp-mock-sidebar {
    width: 50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #F8FAFC;
    border-radius: 12px;
    padding: 8px 7px;
}

.pp-mock-navicon {
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #94A3B8;
    font-size: .9rem;
    background: #fff;
    border: 1px solid #eef2f7;
}
.pp-mock-navicon.active {
    background: var(--pp-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 18px -6px rgba(123, 97, 255, .55);
}

.pp-mock-canvas {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pp-mock-site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 2px 8px;
}
.pp-mock-logo-dot {
    width: 18px; height: 18px; border-radius: 6px;
    background: var(--pp-gradient); flex-shrink: 0;
}
.pp-mock-nav-links {
    flex: 1; height: 6px; border-radius: 4px;
    background: repeating-linear-gradient(90deg, #E2E8F0 0 22px, transparent 22px 34px);
    max-width: 150px;
}
.pp-mock-nav-cta {
    width: 46px; height: 16px; border-radius: 6px;
    background: rgba(123, 97, 255, .18);
}

.pp-mock-stage {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 150px;
    background: linear-gradient(115deg, #c4b5fd 0%, #a78bfa 38%, #8b5cf6 70%, #7c6cff 100%);
    display: flex;
    align-items: center;
    padding: 18px 20px;
    text-align: right;
}
/* cloud-like soft blobs */
.pp-mock-wave {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(38% 55% at 22% 78%, rgba(255,255,255,.55), transparent 60%),
        radial-gradient(30% 46% at 40% 92%, rgba(255,255,255,.42), transparent 62%),
        radial-gradient(46% 62% at 8% 96%, rgba(96,165,250,.55), transparent 60%),
        radial-gradient(40% 55% at 90% 12%, rgba(255,255,255,.30), transparent 58%);
    filter: blur(2px);
    opacity: .95;
}
.pp-mock-wave::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -18%;
    height: 70%;
    background: radial-gradient(60% 100% at 30% 100%, rgba(255,255,255,.75), rgba(255,255,255,0) 70%);
    filter: blur(6px);
}
.pp-mock-stage-text { position: relative; z-index: 1; width: 100%; }
.pp-mock-hero-title {
    display: block;
    color: #fff;
    font-weight: 900;
    font-size: .92rem;
    line-height: 1.55;
    letter-spacing: -.2px;
    text-shadow: 0 2px 8px rgba(76, 29, 149, .35);
}
.pp-mock-hero-sub {
    display: block;
    color: rgba(255,255,255,.85);
    font-size: .58rem;
    margin-top: 6px;
    font-weight: 500;
}
.pp-mock-hero-btn {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: #6d28d9;
    font-size: .58rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(76, 29, 149, .25);
}

.pp-mock-toolrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}
.pp-mock-tool {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: #F1F5F9;
    color: #94A3B8;
    font-size: .8rem;
}
.pp-mock-tool-lg {
    width: 42px; height: 42px;
    background: var(--pp-gradient);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 10px 20px -6px rgba(123,97,255,.6);
}

/* Floating cards */
.pp-fcard {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(226,232,240,.8);
    padding: 10px 12px;
    animation: pp-float 4s ease-in-out infinite;
    z-index: 3;
}

.pp-fcard-analytics {
    top: -14px;
    right: -8px;
    width: 158px;
    animation-delay: .2s;
}
.pp-fcard-label { display: block; font-size: .6rem; color: #94A3B8; margin-bottom: 2px; }
.pp-fcard-value { display: block; font-size: 1.15rem; font-weight: 900; color: #0f172a; line-height: 1.1; }
.pp-fcard-spark { display: block; width: 100%; height: 26px; margin-top: 4px; }
.pp-fcard-delta {
    position: absolute; top: 10px; left: 10px;
    font-size: .6rem; font-weight: 800; color: #10B981;
    display: inline-flex; align-items: center;
}
.pp-fcard-delta i { font-size: .85rem; }

.pp-fcard-plugin {
    top: 34%;
    left: -26px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: 1s;
}
.pp-fcard-plugin-icon {
    width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(123,97,255,.14); color: var(--pp-primary);
    font-size: 1rem;
}
.pp-fcard-plugin-text { font-size: .72rem; font-weight: 800; color: #334155; }

.pp-fcard-colors {
    bottom: 42px;
    left: -22px;
    width: 118px;
    animation-delay: 1.6s;
}
.pp-fcard-mini-title { display: block; font-size: .62rem; font-weight: 700; color: #64748b; margin-bottom: 6px; }
.pp-fcard-dots { display: flex; gap: 6px; }
.pp-fcard-dots span { width: 18px; height: 18px; border-radius: 50%; box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); }

.pp-fcard-rating {
    bottom: -14px;
    right: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: .8s;
}
.pp-fcard-stars { color: #F59E0B; font-size: .68rem; display: inline-flex; gap: 1px; }
.pp-fcard-rating strong { font-size: 1.05rem; font-weight: 900; color: #0f172a; }
.pp-fcard-rating span { font-size: .62rem; color: #94A3B8; }

@keyframes pp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

/* ── Sections ── */
.pp-section {
    padding: 3.5rem 0;
}

.pp-section-alt {
    background: var(--pp-bg-alt);
}

.pp-section-head {
    margin-bottom: 2rem;
}

.pp-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--pp-dark);
    margin-bottom: 0.75rem;
}

.pp-section-head p {
    color: var(--pp-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.pp-section-head:not(.text-center) p { margin: 0; }

/* ── Feature Cards ── */
.pp-feature-card {
    background: #fff;
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pp-shadow);
}

.pp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--icon-color) 12%, transparent);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.pp-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--pp-dark);
    margin-bottom: 0.5rem;
}

.pp-feature-card p {
    font-size: 0.88rem;
    color: var(--pp-muted);
    margin: 0;
    line-height: 1.7;
}

/* ── Pricing ── */
.pp-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pp-billing-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pp-muted);
    transition: color 0.2s;
}

.pp-billing-label.active { color: var(--pp-dark); }

.pp-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.pp-toggle input { opacity: 0; width: 0; height: 0; }

.pp-toggle-slider {
    position: absolute;
    inset: 0;
    background: #CBD5E1;
    border-radius: 50px;
    transition: background 0.3s;
}

.pp-toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.pp-toggle input:checked + .pp-toggle-slider {
    background: var(--pp-gradient);
}

.pp-toggle input:checked + .pp-toggle-slider::before {
    transform: translateX(24px);
}

.pp-discount-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
}

.pp-plan-card {
    background: #fff;
    border: 2px solid var(--pp-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.pp-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pp-shadow);
}

.pp-plan-card.featured {
    border-color: var(--pp-primary);
    box-shadow: var(--pp-shadow-lg);
}

.pp-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pp-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.pp-plan-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--pp-dark);
    margin-bottom: 0.25rem;
}

.pp-plan-tag {
    font-size: 0.82rem;
    color: var(--pp-muted);
    margin-bottom: 1.25rem;
}

.pp-plan-price {
    margin-bottom: 1.5rem;
}

.pp-price-value {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--pp-primary);
    line-height: 1.2;
}

.pp-price-unit {
    display: block;
    font-size: 0.78rem;
    color: var(--pp-muted);
    font-weight: 500;
    margin-top: 0.15rem;
}

.pp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.pp-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--pp-text);
    padding: 0.35rem 0;
    line-height: 1.5;
}

.pp-plan-features li i {
    color: var(--pp-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Add-ons & Templates Box ── */
.pp-box {
    background: #fff;
    border: 1px solid var(--pp-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.pp-box-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--pp-dark);
    margin-bottom: 0.35rem;
}

.pp-box-eyebrow {
    font-size: 0.82rem;
    color: var(--pp-muted);
    margin: 0 0 1.15rem;
    font-weight: 500;
}

.pp-box-desc {
    font-size: 0.85rem;
    color: var(--pp-muted);
    margin-bottom: 1.5rem;
}

.pp-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.pp-addon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 1px solid var(--pp-border);
    border-radius: 14px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
}

.pp-addon-card:hover {
    border-color: var(--pp-primary);
    transform: translateY(-2px);
}

.pp-addon-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.pp-addon-card span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pp-dark);
}

.pp-addon-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
}

.pp-addon-meta small {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--pp-primary);
}

.pp-promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    max-width: 720px;
    margin: 0 auto 1.75rem;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.1), rgba(0, 163, 255, 0.1));
    border: 1px solid rgba(123, 97, 255, 0.2);
    color: var(--pp-dark);
    font-size: 0.92rem;
}

.pp-promo-banner i {
    color: var(--pp-primary);
    font-size: 1.1rem;
}

.pp-plugin-price-card {
    height: 100%;
    padding: 1.15rem 1rem;
    border: 1px solid var(--pp-border);
    border-radius: 14px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pp-plugin-price-card:hover {
    border-color: rgba(123, 97, 255, 0.35);
    box-shadow: var(--pp-shadow);
    transform: translateY(-2px);
}

.pp-plugin-price-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: color-mix(in srgb, var(--icon-color) 16%, transparent);
    color: var(--icon-color);
    font-size: 1.15rem;
}

.pp-plugin-price-card h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--pp-dark);
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.pp-plugin-price-card p {
    font-size: 0.72rem;
    color: var(--pp-muted);
    margin: 0 0 0.85rem;
    line-height: 1.5;
    min-height: 2.2em;
}

.pp-plugin-price-amount strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--pp-primary);
    line-height: 1.2;
}

.pp-plugin-price-amount small {
    font-size: 0.7rem;
    color: var(--pp-muted);
}

.pp-pricing-note {
    font-size: 0.85rem;
    color: var(--pp-muted);
}

.pp-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--pp-primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.pp-link-arrow:hover { color: var(--pp-blue); }

.pp-industry-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    counter-reset: industry-step;
}

.pp-industry-steps li {
    position: relative;
    padding-right: 2.6rem;
    counter-increment: industry-step;
}

.pp-industry-steps li::before {
    content: counter(industry-step);
    position: absolute;
    right: 0;
    top: 0.1rem;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    background: var(--pp-gradient);
}

.pp-industry-steps strong {
    display: block;
    font-size: 0.9rem;
    color: var(--pp-dark);
    margin-bottom: 0.15rem;
}

.pp-industry-steps span {
    display: block;
    font-size: 0.78rem;
    color: var(--pp-muted);
    line-height: 1.5;
}

.pp-industry-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.pp-industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--chip-color) 12%, #fff);
    color: var(--chip-color);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid color-mix(in srgb, var(--chip-color) 22%, transparent);
}

.pp-industry-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.pp-industry-sample {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.55rem;
    border-radius: 8px;
    background: var(--pp-bg-alt);
    border: 1px solid var(--pp-border);
    color: var(--pp-text);
    font-size: 0.7rem;
    font-weight: 600;
}

.pp-industry-sample i {
    color: var(--pp-primary);
    font-size: 0.78rem;
}

.pp-templates-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.pp-template-card {
    flex: 0 0 140px;
}

.pp-template-preview {
    height: 160px;
    background: linear-gradient(180deg, var(--tpl-primary) 0%, color-mix(in srgb, var(--tpl-primary) 60%, #fff) 100%);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--pp-border);
    transition: transform 0.2s;
}

.pp-template-card:hover .pp-template-preview {
    transform: scale(1.03);
}

.pp-tpl-nav {
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
    width: 70%;
}

.pp-tpl-hero {
    flex: 1;
    background: rgba(255,255,255,0.25);
    border-radius: 6px;
}

.pp-tpl-blocks {
    display: flex;
    gap: 4px;
}

.pp-tpl-blocks span {
    flex: 1;
    height: 20px;
    background: rgba(255,255,255,0.35);
    border-radius: 4px;
}

.pp-template-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pp-dark);
    display: block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Testimonials ── */
.pp-testimonial-card {
    background: #fff;
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    padding: 1.5rem;
    height: 100%;
}

.pp-quote-icon {
    color: var(--pp-primary);
    font-size: 1.5rem;
    opacity: 0.4;
    margin-bottom: 0.75rem;
}

.pp-testimonial-card p {
    font-size: 0.88rem;
    color: var(--pp-text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.pp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pp-testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--pp-dark);
}

.pp-testimonial-author small {
    display: block;
    font-size: 0.75rem;
    color: var(--pp-muted);
    line-height: 1.45;
}

.pp-testimonial-city {
    color: #94a3b8 !important;
    font-size: 0.7rem !important;
}

.pp-rating-card {
    background: #fff;
    border: 1px solid var(--pp-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--pp-shadow);
}

.pp-rating-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pp-rating-big i {
    color: #F59E0B;
    font-size: 2rem;
}

.pp-rating-big span {
    font-size: 3rem;
    font-weight: 900;
    color: var(--pp-dark);
    line-height: 1;
}

.pp-rating-card p {
    color: var(--pp-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.pp-avatar-stack {
    display: flex;
    justify-content: center;
    padding-right: 12px;
}

.pp-avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: -10px;
    position: relative;
}

/* ── CTA Banner ── */
.pp-cta {
    padding: 0 0 3rem;
}

.pp-cta-inner {
    background: var(--pp-gradient-dark);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    position: relative;
}

.pp-cta-content {
    position: relative;
    z-index: 1;
}

.pp-cta-content h2 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
}

.pp-cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.pp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pp-cta-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.pp-orb {
    width: 120px;
    height: 120px;
    position: relative;
}

.pp-orb-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0,163,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pp-pulse 3s ease-in-out infinite;
}

.pp-orb-core {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(0,163,255,0.6));
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgba(0,163,255,0.5), inset 0 0 20px rgba(255,255,255,0.2);
}

@keyframes pp-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ── Footer ── */
.pp-footer {
    background: var(--pp-dark);
    color: #94A3B8;
    padding: 3.5rem 0 0;
}

.pp-footer-top { margin-bottom: 2.5rem; }

.pp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.pp-footer-logo .pp-footer-icon { height: 32px; width: auto; }

.pp-footer-logo .pp-gradient-text {
    -webkit-text-fill-color: transparent;
}

.pp-footer-desc {
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.pp-social {
    display: flex;
    gap: 0.5rem;
}

.pp-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.pp-social a:hover {
    background: var(--pp-primary);
    color: #fff;
}

.pp-footer h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pp-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-footer ul li { margin-bottom: 0.5rem; }

.pp-footer ul a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.pp-footer ul a:hover { color: #fff; }

.pp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    text-align: center;
}

.pp-footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
}

.pp-enamad {
    display: inline-block;
    line-height: 0;
}

.pp-enamad img {
    display: inline-block;
    vertical-align: middle;
}

.pp-contact-row { margin-top: .5rem; }

.pp-contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    height: 100%;
    padding: 1.15rem 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none !important;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pp-contact-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--pp-primary, #7B61FF) 35%, #e2e8f0);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.pp-contact-card i {
    font-size: 1.25rem;
    color: var(--pp-primary, #7B61FF);
    margin-bottom: .15rem;
}

.pp-contact-card strong {
    font-size: .95rem;
    color: #0f172a;
}

.pp-contact-card span {
    font-size: .82rem;
    color: #64748b;
    line-height: 1.7;
}

/* ── Scroll to Top ── */
.pp-scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--pp-primary);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(123,97,255,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s;
    z-index: 999;
}

.pp-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pp-scroll-top:hover {
    background: #6B51EF;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .pp-nav-inner {
        position: relative;
    }

    .pp-logo {
        order: 1;
    }

    .pp-nav-toggle {
        order: 2;
        margin-inline-start: auto;
    }

    .pp-nav-links {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0 1rem;
        gap: 1rem;
        border-top: 1px solid var(--pp-border);
        margin-top: 0.25rem;
    }

    .pp-nav-links:not(.show) { display: none !important; }
    .pp-nav-links.show { display: flex !important; }
    .pp-nav-links.collapsing {
        flex-basis: 100%;
        width: 100%;
        order: 3;
    }

    .pp-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .pp-nav-links .pp-btn {
        width: 100%;
        justify-content: center;
    }

    .pp-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-right: 1rem;
        display: none;
    }

    .pp-dropdown.open .pp-dropdown-menu { display: block; }

    .pp-announce { font-size: 0.68rem; }
    .pp-announce-full { display: none; }
    .pp-announce-short { display: inline; }
    .pp-announce-inner {
        padding: 0.28rem 0;
        gap: 0.4rem 0.65rem;
        flex-wrap: nowrap;
    }
    .pp-announce-text {
        gap: 0.28rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
    .pp-announce-text i { font-size: 0.75rem; flex-shrink: 0; }
    .pp-announce-cta {
        font-size: 0.62rem;
        padding: 0.18rem 0.6rem;
        flex-shrink: 0;
    }

    .pp-hero { padding: 1.35rem 0 1.75rem; }
    .pp-hero .row { --bs-gutter-y: .85rem; }
    .pp-hero-visual {
        margin-bottom: 0;
        padding: 1.1rem 1.35rem 1.35rem;
        max-width: 440px;
        margin-inline: auto;
    }
    .pp-builder-mock {
        transform: perspective(720px) rotateY(-8deg) rotateX(4deg) translateZ(8px);
        border-radius: 14px;
        box-shadow: 0 14px 32px -14px rgba(79, 70, 229, 0.28);
    }
    .pp-builder-mock:hover:not(.is-tilting) {
        transform: perspective(720px) rotateY(-4deg) rotateX(2deg) translateZ(12px);
    }
    .pp-mock-toolbar { padding: 7px 10px; border-radius: 14px 14px 0 0; }
    .pp-mock-toolbar > span { width: 7px; height: 7px; }
    .pp-mock-urlbar { max-width: 140px; padding: 3px 8px; font-size: .55rem; }
    .pp-mock-body { min-height: 0; padding: 7px; gap: 6px; border-radius: 0 0 14px 14px; }
    .pp-mock-sidebar { width: 34px; gap: 4px; padding: 5px 4px; }
    .pp-mock-navicon { height: 24px; border-radius: 6px; font-size: .65rem; }
    .pp-mock-navicon:nth-child(n+5) { display: none; }
    .pp-mock-canvas { border-radius: 8px; padding: 6px; gap: 6px; }
    .pp-mock-site-nav { padding-bottom: 4px; gap: 6px; }
    .pp-mock-logo-dot { width: 14px; height: 14px; }
    .pp-mock-nav-cta { width: 36px; height: 12px; }
    .pp-mock-stage { min-height: 88px; padding: 10px 12px; border-radius: 9px; }
    .pp-mock-hero-title { font-size: .72rem; line-height: 1.45; }
    .pp-mock-hero-sub { font-size: .5rem; margin-top: 4px; }
    .pp-mock-hero-btn { margin-top: 7px; padding: 3px 10px; font-size: .5rem; }
    .pp-mock-toolrow { gap: 7px; padding-top: 0; }
    .pp-mock-tool { width: 24px; height: 24px; font-size: .62rem; }
    .pp-mock-tool-lg { width: 30px; height: 30px; font-size: .75rem; }

    /* floating cards — keep visible, compact */
    .pp-fcard {
        display: flex;
        padding: 6px 8px;
        border-radius: 10px;
        box-shadow: 0 10px 22px -10px rgba(15, 23, 42, 0.28);
        animation: none;
    }
    .pp-fcard-analytics {
        width: 112px;
        top: -10px;
        right: -4px;
        display: block;
    }
    .pp-fcard-value { font-size: .82rem; }
    .pp-fcard-label { font-size: .52rem; }
    .pp-fcard-spark { height: 16px; margin-top: 2px; }
    .pp-fcard-delta { font-size: .5rem; top: 6px; left: 6px; }
    .pp-fcard-plugin {
        top: 38%;
        left: -10px;
        gap: 5px;
    }
    .pp-fcard-plugin-icon {
        width: 26px;
        height: 26px;
        border-radius: 8px;
        font-size: .78rem;
    }
    .pp-fcard-plugin-text { font-size: .62rem; }
    .pp-fcard-colors {
        width: auto;
        bottom: 28px;
        left: -8px;
    }
    .pp-fcard-mini-title { font-size: .52rem; margin-bottom: 4px; }
    .pp-fcard-dots { gap: 4px; }
    .pp-fcard-dots span { width: 12px; height: 12px; }
    .pp-fcard-rating {
        bottom: -10px;
        right: 2px;
        gap: 5px;
        align-items: center;
    }
    .pp-fcard-stars { font-size: .55rem; }
    .pp-fcard-rating strong { font-size: .85rem; }
    .pp-fcard-rating span { font-size: .52rem; }
    .pp-badge { font-size: .65rem; padding: .22rem .7rem; margin-bottom: .55rem; }
    .pp-hero-title {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important;
        line-height: 1.4;
        margin-bottom: .55rem;
    }
    .pp-hero-desc {
        font-size: .78rem !important;
        line-height: 1.75 !important;
        margin-bottom: .85rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .pp-hero-actions {
        gap: .5rem;
        margin-bottom: .85rem;
    }
    .pp-hero-actions .pp-btn-lg {
        padding: .55rem 1.05rem;
        font-size: .78rem;
    }
    .pp-stats {
        gap: .75rem 1rem;
        padding-top: .65rem;
    }
    .pp-stat strong { font-size: .95rem; }
    .pp-stat span { font-size: .62rem; }

    .pp-section { padding: 2.75rem 0; }

    .pp-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .pp-cta-actions { justify-content: center; }
    .pp-cta-visual { display: none; }

    .pp-addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .pp-nav-links { display: flex !important; }
}

@media (max-width: 575.98px) {
    .pp-announce-inner { padding: 0.22rem 0; gap: 0.35rem; }
    .pp-announce-text {
        font-size: 0.62rem;
        gap: 0.22rem;
    }
    .pp-announce-cta {
        font-size: 0.58rem;
        padding: 0.14rem 0.5rem;
    }
    .pp-announce-cta i { display: none; }
    .pp-stats { gap: .65rem .85rem; }
    .pp-stat:nth-child(3) { display: none; }
    .pp-stat strong { font-size: .88rem; }
    .pp-addons-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-hero { padding: 1rem 0 1.35rem; }
    .pp-hero-visual {
        padding: .95rem 1.1rem 1.2rem;
        max-width: 100%;
    }
    .pp-mock-sidebar { display: none; }
    .pp-mock-toolrow { display: none; }
    .pp-mock-stage { min-height: 78px; }
    .pp-mock-hero-title { font-size: .68rem; }
    .pp-fcard { padding: 5px 7px; }
    .pp-fcard-analytics {
        display: block;
        width: 100px;
        top: -8px;
        right: -2px;
    }
    .pp-fcard-value { font-size: .75rem; }
    .pp-fcard-spark { height: 14px; }
    .pp-fcard-plugin {
        display: flex;
        top: 36%;
        left: -6px;
    }
    .pp-fcard-plugin-icon { width: 22px; height: 22px; font-size: .7rem; }
    .pp-fcard-plugin-text { font-size: .55rem; }
    .pp-fcard-colors {
        display: block;
        bottom: 22px;
        left: -4px;
    }
    .pp-fcard-dots span { width: 10px; height: 10px; }
    .pp-fcard-rating {
        display: flex;
        bottom: -8px;
        right: 0;
    }
    .pp-fcard-rating strong { font-size: .78rem; }
    .pp-hero-title {
        font-size: clamp(1.28rem, 6.2vw, 1.55rem) !important;
    }
    .pp-hero-desc {
        -webkit-line-clamp: 2;
        margin-bottom: .7rem !important;
    }
    .pp-hero-actions .pp-btn-outline { display: none; }
}

/* ── Reference mockup fidelity pass ── */
@media (min-width: 1200px) {
    .container { max-width: 1120px; }
}

.pp-nav {
    border-bottom-color: #edf0f7;
    box-shadow: 0 1px 12px rgba(15, 23, 42, 0.025);
}

.pp-nav-inner { min-height: 70px; padding: .5rem 0; }
.pp-logo img { width: 108px; height: 38px; object-fit: contain; object-position: center; }
.pp-nav-links { gap: 1.25rem; }
.pp-menu { gap: .2rem; }
.pp-menu a { font-size: .77rem; padding: .5rem .7rem; }
.pp-btn-sm { padding: .48rem 1.1rem; border-radius: 8px; font-size: .76rem; }

.pp-hero {
    min-height: 420px;
    padding: 3.1rem 0 2.8rem;
    background:
        radial-gradient(circle at 17% 45%, rgba(70, 151, 255, .11), transparent 27%),
        radial-gradient(circle at 82% 24%, rgba(160, 107, 255, .08), transparent 22%),
        linear-gradient(180deg, #fdfdff 0%, #fff 88%);
}

.pp-hero .row { --bs-gutter-x: 3rem; }
.pp-badge { font-size: .7rem; padding: .28rem .82rem; margin-bottom: .9rem; }
.pp-hero-title { font-size: clamp(2.15rem, 3.65vw, 3.3rem); line-height: 1.4; margin-bottom: .75rem; }
.pp-hero-desc { font-size: .79rem; max-width: 500px; margin-bottom: 1.25rem; line-height: 2; }
.pp-hero-actions { gap: .6rem; margin-bottom: 1.2rem; }
.pp-btn-lg { padding: .66rem 1.4rem; font-size: .78rem; border-radius: 8px; }
.pp-stats { padding-top: .9rem; gap: 1.5rem; border: 0; }
.pp-stat strong { font-size: 1.05rem; }
.pp-stat span { font-size: .65rem; white-space: nowrap; }
.pp-rating-badge { font-size: .85rem; padding: .18rem .5rem; }

.pp-hero-visual { padding: 1.4rem 1.6rem; }
.pp-builder-mock {
    border-radius: 16px;
    box-shadow: 0 30px 70px -25px rgba(79, 70, 229, 0.35), 0 12px 28px -12px rgba(15, 23, 42, 0.16);
    transform: perspective(720px) rotateY(-8deg) rotateX(4deg) translateZ(12px);
}
.pp-builder-mock:hover:not(.is-tilting) {
    transform: perspective(720px) rotateY(-4deg) rotateX(2deg) translateZ(16px);
}
.pp-mock-toolbar { padding: 9px 13px; border-radius: 16px 16px 0 0; }
.pp-mock-toolbar > span { width: 8px; height: 8px; }
.pp-mock-body { min-height: 250px; padding: 10px; gap: 8px; border-radius: 0 0 16px 16px; }
.pp-mock-sidebar { width: 44px; gap: 6px; padding: 7px 6px; }
.pp-mock-navicon { height: 30px; border-radius: 8px; font-size: .8rem; }
.pp-mock-canvas { border-radius: 10px; padding: 9px; gap: 9px; }
.pp-mock-stage { min-height: 138px; padding: 15px 16px; }
.pp-mock-hero-title { font-size: .86rem; }
.pp-mock-tool { width: 30px; height: 30px; font-size: .72rem; }
.pp-mock-tool-lg { width: 38px; height: 38px; font-size: .9rem; }
.pp-fcard { padding: 9px 11px; border-radius: 13px; }
.pp-fcard-analytics { width: 150px; top: -12px; right: -6px; }
.pp-fcard-value { font-size: 1.05rem; }
.pp-fcard-colors { width: 112px; bottom: 40px; left: -18px; }
.pp-fcard-plugin { left: -22px; }

.pp-section { padding: 2.75rem 0; }
.pp-section-head { margin-bottom: 1.5rem; }
.pp-section-head h2 { font-size: 1.45rem; margin-bottom: .3rem; }
.pp-section-head p { font-size: .75rem; }

.pp-feature-card {
    padding: 1.1rem .85rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(15, 23, 42, .035);
}
.pp-feature-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto .7rem;
    border-radius: 9px;
    font-size: 1rem;
}
.pp-feature-card h3 { font-size: .78rem; margin-bottom: .3rem; }
.pp-feature-card p { font-size: .63rem; line-height: 1.75; }

.pp-section-alt { background: linear-gradient(180deg, #fbfcff, #fff); }
.pp-billing-toggle { margin: -1.1rem 0 2rem; gap: .5rem; }
.pp-billing-label { font-size: .72rem; }
.pp-toggle { width: 42px; height: 22px; }
.pp-toggle-slider::before { width: 16px; height: 16px; }
.pp-toggle input:checked + .pp-toggle-slider::before { transform: translateX(20px); }
.pp-discount-badge { font-size: .62rem; padding: .15rem .45rem; }
.pp-pricing-row { --bs-gutter-x: 1rem; }
.pp-plan-card { border-width: 1px; border-radius: 11px; padding: 1.25rem 1.1rem; }
.pp-plan-card.featured { border-width: 2px; transform: translateY(-4px); }
.pp-plan-badge { top: -11px; padding: .2rem .75rem; font-size: .62rem; }
.pp-plan-name { font-size: .96rem; margin-bottom: .15rem; }
.pp-plan-tag { font-size: .62rem; margin-bottom: .75rem; min-height: 19px; }
.pp-plan-price { margin-bottom: .75rem; }
.pp-sales-strip {
    display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
    margin: .35rem 0 .5rem; font-size: .72rem;
}
.pp-sales-old { text-decoration: line-through; color: #94a3b8; font-weight: 600; }
.pp-sales-off {
    background: #dcfce7; color: #15803d;
    font-weight: 800; padding: .12rem .5rem; border-radius: 50px;
}
.pp-price-value { font-size: 1.25rem; }
.pp-price-unit { font-size: .62rem; }
.pp-plan-features { margin-bottom: .9rem; }
.pp-plan-features li { font-size: .66rem; padding: .2rem 0; gap: .35rem; }
.pp-plan-card .pp-btn { padding: .48rem .5rem; border-radius: 6px; font-size: .68rem; }

.pp-box { border-radius: 12px; padding: 1.35rem; }
.pp-box-title { font-size: 1rem; }
.pp-box-desc { font-size: .72rem; margin-bottom: 1rem; }
.pp-addons-grid { gap: .5rem; }
.pp-addon-card { padding: .65rem .35rem; border-radius: 8px; }
.pp-addon-icon { width: 32px; height: 32px; border-radius: 8px; font-size: .85rem; }
.pp-addon-card span { font-size: .63rem; }
.pp-link-arrow { font-size: .72rem; }
.pp-template-card { flex-basis: 107px; }
.pp-template-preview { height: 122px; border-radius: 8px; padding: 7px; }
.pp-template-name { font-size: .63rem; }

.pp-testimonial-card { border-radius: 10px; padding: 1.1rem; }
.pp-quote-icon { font-size: 1.1rem; margin-bottom: .35rem; }
.pp-testimonial-card p { font-size: .7rem; line-height: 1.8; margin-bottom: .8rem; }
.pp-avatar { width: 30px; height: 30px; font-size: .58rem; }
.pp-testimonial-author strong { font-size: .68rem; }
.pp-testimonial-author small { font-size: .58rem; }
.pp-rating-card { border-radius: 12px; padding: 1.6rem; }
.pp-rating-big i { font-size: 1.45rem; }
.pp-rating-big span { font-size: 2.15rem; }
.pp-rating-card p { font-size: .72rem; margin-bottom: .8rem; }
.pp-avatar-sm { width: 28px; height: 28px; font-size: .56rem; }

.pp-cta { padding: 0 0 2.25rem; }
.pp-cta-inner { border-radius: 12px; padding: 2rem 2.25rem; }
.pp-cta-content h2 { font-size: 1.25rem; margin-bottom: .4rem; }
.pp-cta-content p { font-size: .75rem; margin-bottom: 1.1rem; }
.pp-orb { width: 85px; height: 85px; }
.pp-footer { padding-top: 2.5rem; }
.pp-footer-logo { font-size: .95rem; }
.pp-footer-desc, .pp-footer ul a { font-size: .7rem; }
.pp-footer h4 { font-size: .78rem; }
.pp-footer-bottom p { font-size: .65rem; }

@media (max-width: 991.98px) {
    .pp-hero { min-height: 0; }
    .pp-feature-card { text-align: right; }
    .pp-feature-icon { margin-right: 0; }
}
