:root {
    --pweb-primary: #2563eb;
    --pweb-primary-dark: #1d4ed8;
    --pweb-accent: #06b6d4;
    --pweb-dark: #0f172a;
    --pweb-muted: #64748b;
    --pweb-card: #ffffff;
    --pweb-radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--pweb-dark);
    background: #f8fafc;
    overflow-x: hidden;
}

/* Contact bar */
.pweb-contact-bar {
    background: var(--pweb-dark);
    color: #e2e8f0;
    font-size: 0.88rem;
}
.pweb-contact-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 1rem;
}
.pweb-contact-bar a:hover { color: var(--pweb-accent); }

/* Nav */
.pweb-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.pweb-admin-preview {
    max-height: 48px;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.pweb-admin-favicon-preview {
    object-fit: contain;
    background: #f1f5f9;
}

.pweb-brand-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.pweb-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--pweb-primary);
    text-decoration: none;
}
.pweb-brand span { color: var(--pweb-dark); }
.pweb-nav .nav-link {
    color: var(--pweb-muted);
    font-weight: 500;
    font-size: 0.95rem;
}
.pweb-nav .nav-link:hover { color: var(--pweb-primary); }

/* Hero */
.pweb-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
    color: #fff;
}

.pweb-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.pweb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: pweb-float 8s ease-in-out infinite;
    will-change: transform;
}
.pweb-orb-1 {
    width: 420px; height: 420px;
    background: #06b6d4;
    top: -120px; right: -80px;
    animation-delay: 0s;
    animation-duration: 9s;
}
.pweb-orb-2 {
    width: 320px; height: 320px;
    background: #818cf8;
    bottom: -80px; left: -60px;
    animation-delay: -3s;
    animation-duration: 11s;
}
.pweb-orb-3 {
    width: 200px; height: 200px;
    background: #38bdf8;
    top: 40%; left: 45%;
    animation-delay: -5s;
    animation-duration: 7s;
}

@keyframes pweb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -25px) scale(1.05); }
}

.pweb-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: pweb-grid-move 20s linear infinite;
}

@keyframes pweb-grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(48px); }
}

.pweb-hero-content {
    position: relative;
    z-index: 2;
}

.pweb-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    animation: pweb-fade-up 0.8s ease both;
}

.pweb-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    animation: pweb-fade-up 0.8s ease 0.1s both;
}

.pweb-hero .lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.92;
    max-width: 36rem;
    animation: pweb-fade-up 0.8s ease 0.2s both;
}

.pweb-hero-actions {
    animation: pweb-fade-up 0.8s ease 0.35s both;
}

.pweb-hero-visual {
    position: relative;
    z-index: 2;
    animation: pweb-fade-up 1s ease 0.4s both;
}

.pweb-mock-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--pweb-radius);
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
    animation: pweb-card-float 6s ease-in-out infinite;
}

@keyframes pweb-card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pweb-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.pweb-code-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,.2);
    margin-bottom: 0.5rem;
    transform-origin: left center;
}
.pweb-code-line.w-75 { width: 75%; }
.pweb-code-line.w-50 { width: 50%; }
.pweb-code-line.accent { background: var(--pweb-accent); opacity: 0.8; }

.pweb-code-line.pweb-code-anim {
    transform: scaleX(0);
    animation: pweb-line-grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pweb-code-line.pweb-code-anim.accent { animation-delay: 0.55s; }
.pweb-code-line.pweb-code-anim.w-75 { animation-delay: 0.75s; }
.pweb-code-line.pweb-code-anim.w-50 { animation-delay: 0.95s; }

@keyframes pweb-line-grow {
    to { transform: scaleX(1); }
}

.pweb-hero-trust li {
    animation: pweb-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pweb-hero-trust li:nth-child(1) { animation-delay: 0.45s; }
.pweb-hero-trust li:nth-child(2) { animation-delay: 0.58s; }
.pweb-hero-trust li:nth-child(3) { animation-delay: 0.71s; }
.pweb-hero-trust li:nth-child(4) { animation-delay: 0.84s; }

.pweb-hero-badge {
    position: relative;
    overflow: hidden;
}
.pweb-hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    animation: pweb-shimmer 3.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes pweb-shimmer {
    0%, 100% { left: -100%; }
    50% { left: 120%; }
}

.pweb-mini-stat {
    animation: pweb-pop-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pweb-mock-stats .col-4:nth-child(1) .pweb-mini-stat { animation-delay: 0.65s; }
.pweb-mock-stats .col-4:nth-child(2) .pweb-mini-stat { animation-delay: 0.78s; }
.pweb-mock-stats .col-4:nth-child(3) .pweb-mini-stat { animation-delay: 0.91s; }

@keyframes pweb-pop-in {
    from { opacity: 0; transform: scale(0.85) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Sections */
.pweb-section {
    padding: 5rem 0;
}
.pweb-section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.pweb-section-sub {
    color: var(--pweb-muted);
    max-width: 36rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.pweb-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pweb-primary);
    margin-bottom: 0.75rem;
}

.pweb-section-alt {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}

/* Client customization */
.pweb-custom-section {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 55%, #ecfeff 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pweb-custom-point {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pweb-radius);
    padding: 1.25rem;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.pweb-custom-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.1);
}
.pweb-custom-point-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pweb-primary), var(--pweb-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* Product cards */
.pweb-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pweb-radius);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.pweb-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.14);
}
.pweb-product-visual {
    position: relative;
    background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 50%, #06b6d4 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pweb-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
}
.pweb-product-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.4s ease;
}
.pweb-product-card:hover .pweb-product-icon {
    transform: scale(1.08) rotate(-3deg);
}
.pweb-product-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pweb-stats-band {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    margin-top: -2rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.pweb-hero-trust .pweb-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pweb-mock-stats .pweb-mini-stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
}
.pweb-mini-val {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}
.pweb-mini-lbl {
    font-size: 0.65rem;
    opacity: 0.75;
}

.pweb-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pweb-radius);
    padding: 1.5rem;
    height: 100%;
}
.pweb-feature-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}
.pweb-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--pweb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pweb-process-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
}
.pweb-process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--pweb-radius);
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pweb-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    background: #fff;
}
.pweb-process-num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--pweb-accent);
    margin-bottom: 0.5rem;
}
.pweb-process-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pweb-primary), var(--pweb-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.pweb-tech-section {
    padding: 3.5rem 0;
}
.pweb-tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.pweb-tech-tag {
    padding: 0.55rem 1.15rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--pweb-dark);
    transition: all 0.25s ease;
}
.pweb-tech-tag:hover {
    border-color: var(--pweb-primary);
    color: var(--pweb-primary);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.pweb-mission-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pweb-radius);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}
.pweb-mission-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pweb-primary), var(--pweb-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.pweb-check-list {
    list-style: none;
    padding: 0;
}
.pweb-check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--pweb-muted);
    font-size: 0.95rem;
}
.pweb-check-list i {
    color: var(--pweb-primary);
    font-weight: bold;
}

.pweb-testimonial {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--pweb-radius);
    padding: 1.75rem;
    height: 100%;
    margin: 0;
    position: relative;
    /* hover transition in reveal block above */
}
.pweb-quote-mark {
    font-size: 2rem;
    color: var(--pweb-primary);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pweb-faq .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.pweb-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: none;
}
.pweb-faq .accordion-button:not(.collapsed) {
    background: #eff6ff;
    color: var(--pweb-primary-dark);
}

#contact {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    color: #fff;
}
.pweb-contact-list li {
    margin-bottom: 0.75rem;
}
.pweb-contact-list a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.pweb-contact-list a:hover {
    color: var(--pweb-accent);
}
.pweb-cta-card {
    background: #fff;
    color: var(--pweb-dark);
    border-radius: var(--pweb-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    /* hover in animation block */
}

.pweb-footer-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}
.pweb-footer ul a {
    color: #cbd5e1;
    text-decoration: none;
}
.pweb-footer ul a:hover {
    color: #fff;
}

.pweb-nav.scrolled {
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

/* Scroll reveal animations */
.pweb-reveal,
.pweb-reveal-up,
.pweb-reveal-left,
.pweb-reveal-right,
.pweb-reveal-scale,
.pweb-reveal-fade {
    opacity: 0;
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.pweb-reveal,
.pweb-reveal-up { transform: translateY(36px); }
.pweb-reveal-left { transform: translateX(-40px); }
.pweb-reveal-right { transform: translateX(40px); }
.pweb-reveal-scale { transform: scale(0.9); }
.pweb-reveal-fade { transform: none; }

.pweb-reveal.visible,
.pweb-reveal-up.visible,
.pweb-reveal-left.visible,
.pweb-reveal-right.visible,
.pweb-reveal-scale.visible,
.pweb-reveal-fade.visible {
    opacity: 1;
    transform: none;
}

/* Staggered children */
.pweb-stagger > .pweb-stagger-item,
.pweb-stagger > [class*="col-"] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.pweb-stagger.is-visible > .pweb-stagger-item,
.pweb-stagger.is-visible > [class*="col-"] {
    opacity: 1;
    transform: none;
}
.pweb-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.pweb-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.pweb-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.pweb-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.pweb-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.pweb-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

.pweb-tech-tag {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pweb-tech-tag.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pweb-process-step {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.pweb-process-step.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.pweb-process-step.visible .pweb-process-icon {
    animation: pweb-icon-bounce 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pweb-icon-bounce {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}

.pweb-stat-value {
    display: inline-block;
    transition: transform 0.4s ease;
}
.pweb-stat.visible .pweb-stat-value {
    animation: pweb-stat-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pweb-stat-pop {
    0% { transform: scale(0.6); opacity: 0; }
    70% { transform: scale(1.06); }
    100% { transform: scale(1); opacity: 1; }
}

.pweb-service-card {
    background: var(--pweb-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--pweb-radius);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.pweb-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.14);
    border-color: #bfdbfe;
}
.pweb-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pweb-primary), var(--pweb-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pweb-service-card:hover .pweb-service-icon {
    transform: scale(1.1) rotate(-4deg);
}

.pweb-feature-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}
.pweb-feature-card:hover {
    transform: translateY(-6px);
}
.pweb-feature-card:hover .pweb-feature-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, #dbeafe, #cffafe);
}
.pweb-feature-icon {
    transition: transform 0.35s ease, background 0.35s ease;
}

.pweb-testimonial {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.pweb-testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.pweb-cta-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.pweb-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.22);
}

.pweb-cta-pulse {
    animation: pweb-btn-glow 2.5s ease-in-out infinite;
}

@keyframes pweb-btn-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.35); }
    50% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
}

.pweb-nav .nav-link {
    position: relative;
}
.pweb-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--pweb-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.pweb-nav .nav-link:hover::after,
.pweb-nav .nav-link.active::after {
    width: 100%;
}

.btn-pweb-primary,
.btn-pweb-outline {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-pweb-primary:hover,
.btn-pweb-outline:hover {
    transform: translateY(-2px);
}

.pweb-trust-pill {
    transition: transform 0.25s ease, background 0.25s ease;
}
.pweb-trust-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.pweb-mock-card {
    transition: box-shadow 0.4s ease;
}
.pweb-mock-card:hover {
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .pweb-reveal,
    .pweb-reveal-up,
    .pweb-reveal-left,
    .pweb-reveal-right,
    .pweb-reveal-scale,
    .pweb-reveal-fade,
    .pweb-stagger > *,
    .pweb-tech-tag,
    .pweb-process-step {
        opacity: 1;
        transform: none;
    }
}

.pweb-stat {
    text-align: center;
    padding: 1.5rem;
}
.pweb-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pweb-primary);
    line-height: 1;
}
.pweb-stat-label {
    color: var(--pweb-muted);
    font-size: 0.95rem;
    margin-top: 0.35rem;
}

.pweb-footer {
    background: var(--pweb-dark);
    color: #94a3b8;
    padding: 2.5rem 0;
    font-size: 0.9rem;
}
.pweb-footer a { color: #e2e8f0; }

.btn-pweb-primary {
    background: #fff;
    color: var(--pweb-primary-dark);
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
}
.btn-pweb-primary:hover {
    background: #f1f5f9;
    color: var(--pweb-primary-dark);
}
.btn-pweb-outline {
    border: 2px solid rgba(255,255,255,.6);
    color: #fff;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
}
.btn-pweb-outline:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

@media (max-width: 991.98px) {
    .pweb-hero { min-height: auto; padding-top: 6rem; }
    .pweb-hero-visual { margin-top: 2.5rem; }
}
