/* 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;
}

/* ── 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;
    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.75rem, 4vw, 2.75rem);
    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: 1200px;
}

.pp-builder-mock {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--pp-shadow-lg);
    border: 1px solid var(--pp-border);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.4s;
    overflow: visible;
}

.pp-builder-mock:hover {
    transform: rotateY(-4deg) rotateX(2deg);
}

.pp-mock-toolbar {
    display: flex;
    gap: 6px;
    padding: 12px 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;
}
.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-body {
    display: flex;
    min-height: 280px;
    padding: 12px;
    gap: 8px;
}

.pp-mock-sidebar {
    width: 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pp-mock-block {
    height: 40px;
    background: #F1F5F9;
    border-radius: 8px;
}
.pp-mock-block.active {
    background: var(--pp-gradient);
}

.pp-mock-canvas {
    flex: 1;
    background: linear-gradient(135deg, rgba(0,163,255,0.08), rgba(123,97,255,0.08));
    border-radius: 12px;
    padding: 12px;
}

.pp-mock-header-bar {
    height: 12px;
    background: rgba(123,97,255,0.2);
    border-radius: 6px;
    margin-bottom: 12px;
    width: 60%;
}

.pp-mock-hero-area { margin-bottom: 16px; }

.pp-mock-line {
    height: 8px;
    background: rgba(15,23,42,0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}
.pp-mock-line.w80 { width: 80%; }
.pp-mock-line.w60 { width: 60%; }

.pp-mock-btn-fake {
    width: 80px;
    height: 24px;
    background: var(--pp-gradient);
    border-radius: 6px;
    margin-top: 8px;
}

.pp-mock-cards {
    display: flex;
    gap: 8px;
}

.pp-mock-card {
    flex: 1;
    height: 48px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    border: 1px solid rgba(123,97,255,0.15);
}

.pp-mock-panel {
    width: 64px;
    display: flex;
    align-items: flex-end;
}

.pp-mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
    width: 100%;
}

.pp-mock-chart .bar {
    flex: 1;
    background: var(--pp-gradient);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
}

.pp-mock-float {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--pp-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--pp-primary);
    animation: pp-float 3s ease-in-out infinite;
}

.pp-mock-float-1 { top: -16px; left: -16px; animation-delay: 0s; }
.pp-mock-float-2 { top: 40%; right: -20px; animation-delay: 1s; color: var(--pp-blue); }
.pp-mock-float-3 { bottom: 20px; left: 10%; animation-delay: 2s; color: #6366F1; }

@keyframes pp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Sections ── */
.pp-section {
    padding: 5rem 0;
}

.pp-section-alt {
    background: var(--pp-bg-alt);
}

.pp-section-head {
    margin-bottom: 3rem;
}

.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-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-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-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 {
    font-size: 0.75rem;
    color: var(--pp-muted);
}

.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 5rem;
}

.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;
}

/* ── 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-links {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        gap: 1rem;
    }

    .pp-nav-links:not(.show) { display: none; }
    .pp-nav-links.show { display: flex; }

    .pp-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .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-hero { padding: 2.5rem 0 3rem; }
    .pp-hero-visual { margin-bottom: 2rem; }
    .pp-builder-mock { transform: none; }
    .pp-builder-mock:hover { transform: none; }

    .pp-section { padding: 3.5rem 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-stats { gap: 1.25rem; }
    .pp-stat strong { font-size: 1.25rem; }
    .pp-addons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 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(2rem, 3.35vw, 3.05rem); line-height: 1.42; 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: .45rem .8rem; }
.pp-builder-mock {
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(74, 116, 194, .18);
    transform: rotateY(0) rotateX(0) rotateZ(-2deg);
}
.pp-builder-mock:hover { transform: rotateY(0) rotateX(0) rotateZ(-1deg); }
.pp-mock-toolbar { padding: 8px 11px; border-radius: 14px 14px 0 0; }
.pp-mock-toolbar span { width: 7px; height: 7px; }
.pp-mock-body { min-height: 235px; padding: 9px; gap: 6px; }
.pp-mock-sidebar { width: 42px; gap: 6px; }
.pp-mock-block { height: 31px; border-radius: 6px; }
.pp-mock-canvas { border-radius: 8px; padding: 9px; }
.pp-mock-panel { width: 48px; }
.pp-mock-header-bar { height: 8px; margin-bottom: 9px; }
.pp-mock-line { height: 6px; margin-bottom: 6px; }
.pp-mock-btn-fake { width: 64px; height: 18px; border-radius: 4px; }
.pp-mock-card { height: 38px; border-radius: 6px; }
.pp-mock-chart { height: 58px; gap: 3px; }
.pp-mock-float { width: 34px; height: 34px; border-radius: 9px; font-size: .85rem; }
.pp-mock-float-1 { top: -12px; left: -8px; }
.pp-mock-float-2 { right: -14px; }

.pp-section { padding: 3.5rem 0; }
.pp-section-head { margin-bottom: 2rem; }
.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 3rem; }
.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; }
}
