/* peteITcms Showcase - Ultra Modern Design */
:root {
    --peteitcms-primary: #00a884;
    --peteitcms-dark: #0a0e27;
    --peteitcms-card: #151b3d;
    --peteitcms-text: #e9edef;
    --peteitcms-secondary: #8696a0;
    --peteitcms-border: #1e2749;
    --peteitcms-accent: #00d9ff;
}

/* Main Container */
.peteitcms-showcase {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(180deg, var(--peteitcms-dark) 0%, #0f1428 100%);
    position: relative;
    overflow: hidden;
}

.peteitcms-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 168, 132, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated Logo */
.peteitcms-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.peteitcms-logo-animated {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    display: inline-block;
}

.peteitcms-logo-animated .letter {
    display: inline-block;
    background: linear-gradient(135deg, #00a884 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.peteitcms-logo-animated .letter:nth-child(1) { --i: 0; }
.peteitcms-logo-animated .letter:nth-child(2) { --i: 1; }
.peteitcms-logo-animated .letter:nth-child(3) { --i: 2; }
.peteitcms-logo-animated .letter:nth-child(4) { --i: 3; }
.peteitcms-logo-animated .letter:nth-child(5) { --i: 4; }
.peteitcms-logo-animated .letter:nth-child(6) { --i: 5; }
.peteitcms-logo-animated .letter:nth-child(7) { --i: 6; }
.peteitcms-logo-animated .letter:nth-child(8) { --i: 7; }
.peteitcms-logo-animated .letter:nth-child(9) { --i: 8; }

@keyframes letterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.peteitcms-tagline {
    font-size: 22px;
    color: var(--peteitcms-secondary);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Particles Background */
.peteitcms-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Slideshow Style */
.peteitcms-slideshow {
    position: relative;
    background: var(--peteitcms-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 168, 132, 0.1);
}

.peteitcms-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: relative;
}

.peteitcms-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.peteitcms-slide.active {
    display: flex;
    opacity: 1;
    animation: slideZoomIn 0.8s ease-out;
}

.peteitcms-slide.active .peteitcms-slide-bg {
    opacity: 1;
}

@keyframes slideZoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.peteitcms-slide-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.peteitcms-slide-info {
    flex: 1;
}

/* Icon Wrapper with Glow */
.peteitcms-module-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.peteitcms-module-icon {
    font-size: 96px;
    display: inline-block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.peteitcms-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

.peteitcms-module-name {
    font-size: 52px;
    font-weight: 800;
    color: var(--peteitcms-text);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.module-name-text {
    background: linear-gradient(135deg, var(--peteitcms-text) 0%, var(--peteitcms-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.module-version {
    font-size: 16px;
    padding: 6px 16px;
    background: rgba(0, 168, 132, 0.15);
    border-radius: 20px;
    font-weight: 600;
}

.peteitcms-module-description {
    font-size: 20px;
    color: var(--peteitcms-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.peteitcms-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.peteitcms-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--peteitcms-text);
    font-size: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: featureSlideIn 0.5s ease-out backwards;
    animation-delay: calc(var(--i, 0) * 0.05s);
}

.peteitcms-feature-item:hover {
    background: rgba(0, 168, 132, 0.1);
    border-color: var(--feature-color, var(--peteitcms-primary));
    transform: translateX(8px);
}

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.peteitcms-feature-item::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--feature-color, var(--peteitcms-primary));
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.4);
}

/* CTA Buttons */
.peteitcms-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.peteitcms-btn-primary,
.peteitcms-btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.peteitcms-btn-primary {
    color: white;
    border: 2px solid;
    box-shadow: 0 8px 24px rgba(0, 168, 132, 0.4);
}

.peteitcms-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 168, 132, 0.6);
}

.peteitcms-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--peteitcms-text);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.peteitcms-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Device Mockup */
.peteitcms-slide-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peteitcms-device-mockup {
    position: relative;
    width: 100%;
    max-width: 700px;
    animation: deviceFloat 6s ease-in-out infinite;
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

.peteitcms-screenshot {
    width: 100%;
    border-radius: 16px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.peteitcms-placeholder-screenshot {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 60px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.placeholder-icon {
    font-size: 120px;
    opacity: 0.6;
    animation: placeholderPulse 3s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.placeholder-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80%;
}

.placeholder-lines .line {
    height: 8px;
    border-radius: 4px;
    opacity: 0.3;
    animation: linePulse 2s ease-in-out infinite;
}

.placeholder-lines .line:nth-child(1) { width: 100%; animation-delay: 0s; }
.placeholder-lines .line:nth-child(2) { width: 80%; animation-delay: 0.2s; }
.placeholder-lines .line:nth-child(3) { width: 60%; animation-delay: 0.4s; }

@keyframes linePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.device-frame {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.3;
}

/* Navigation Controls */
.peteitcms-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.peteitcms-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--peteitcms-text);
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peteitcms-nav-btn:hover {
    background: var(--peteitcms-primary);
    border-color: var(--peteitcms-primary);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 168, 132, 0.4);
}

.peteitcms-dots {
    display: flex;
    gap: 16px;
}

.peteitcms-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
    position: relative;
}

.peteitcms-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--dot-color, var(--peteitcms-primary));
    transition: all 0.4s ease;
}

.peteitcms-dot.active {
    width: 48px;
    border-radius: 8px;
    background: var(--dot-color, var(--peteitcms-primary));
    box-shadow: 0 4px 16px rgba(0, 168, 132, 0.6);
}

.peteitcms-dot:not(.active):hover::before {
    width: 100%;
    height: 100%;
}

/* Stats Bar */
.peteitcms-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 168, 132, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 168, 132, 0.2);
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #00a884 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--peteitcms-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Grid Style */
.peteitcms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.peteitcms-module-card {
    background: var(--peteitcms-card);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s ease-out forwards;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.peteitcms-module-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    border-color: var(--card-color);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(60px);
    pointer-events: none;
}

.peteitcms-module-card:hover .card-glow {
    opacity: 0.15;
}

.peteitcms-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.peteitcms-card-icon-wrapper {
    position: relative;
}

.peteitcms-card-icon {
    font-size: 56px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 1;
    position: relative;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    animation: iconPulseAnim 2s ease-in-out infinite;
}

@keyframes iconPulseAnim {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
}

.peteitcms-card-title {
    flex: 1;
}

.peteitcms-card-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--peteitcms-text);
    margin: 0 0 8px 0;
}

.peteitcms-card-version {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 600;
}

.peteitcms-card-description {
    color: var(--peteitcms-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.peteitcms-card-features-scroll {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 24px;
    padding-right: 8px;
}

.peteitcms-card-features-scroll::-webkit-scrollbar {
    width: 6px;
}

.peteitcms-card-features-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.peteitcms-card-features-scroll::-webkit-scrollbar-thumb {
    background: var(--card-color);
    border-radius: 3px;
}

.peteitcms-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.peteitcms-card-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--peteitcms-text);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.peteitcms-card-feature:last-child {
    border-bottom: none;
}

.peteitcms-card-feature:hover {
    color: var(--feature-color);
    padding-left: 8px;
}

.peteitcms-card-feature::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--feature-color, var(--peteitcms-primary));
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

/* Pricing Section */
.peteitcms-card-pricing {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.peteitcms-card-pricing .pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.peteitcms-card-pricing .pricing-row:last-of-type {
    margin-bottom: 0;
}

.peteitcms-card-pricing .pricing-label {
    font-size: 13px;
    color: var(--peteitcms-secondary);
    font-weight: 500;
}

.peteitcms-card-pricing .pricing-value {
    font-size: 18px;
    font-weight: 700;
}

.peteitcms-card-pricing .pricing-period {
    font-size: 11px;
    font-weight: 400;
    color: var(--peteitcms-secondary);
}

.peteitcms-card-pricing .pricing-discount {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.peteitcms-card-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.peteitcms-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.peteitcms-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 168, 132, 0.5);
}

.card-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 0 20px 0 100%;
    opacity: 0.1;
}

/* Bottom CTA */
.peteitcms-bottom-cta {
    margin-top: 80px;
    padding: 80px;
    background: linear-gradient(135deg, #00a884 0%, #00d9ff 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: white;
    color: var(--peteitcms-primary);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation: shapeFloat1 10s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: 10%;
    animation: shapeFloat2 12s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -50px;
    animation: shapeFloat3 8s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, -40px) rotate(180deg); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .peteitcms-slide-content {
        flex-direction: column;
        padding: 60px 40px;
        gap: 60px;
    }
    
    .peteitcms-features-list {
        grid-template-columns: 1fr;
    }
    
    .peteitcms-module-name {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .peteitcms-logo-animated {
        font-size: 36px;
    }
    
    .peteitcms-tagline {
        font-size: 14px;
    }
    
    .peteitcms-module-name {
        font-size: 28px;
    }
    
    .peteitcms-slide-content {
        padding: 40px 24px;
    }
    
    .peteitcms-grid {
        grid-template-columns: 1fr;
    }
    
    .peteitcms-bottom-cta {
        padding: 60px 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

:root {
    --peteitcms-primary: #00a884;
    --peteitcms-dark: #111b21;
    --peteitcms-card: #202c33;
    --peteitcms-text: #e9edef;
    --peteitcms-secondary: #8696a0;
    --peteitcms-border: #2a3942;
}

/* Main Container */
.peteitcms-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.peteitcms-header {
    text-align: center;
    margin-bottom: 60px;
}

.peteitcms-logo {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #00a884 0%, #06cf9c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.peteitcms-tagline {
    font-size: 20px;
    color: var(--peteitcms-secondary);
    font-weight: 400;
}

/* Slideshow Style */
.peteitcms-slideshow {
    position: relative;
    background: var(--peteitcms-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.peteitcms-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.peteitcms-slide.active {
    display: flex;
    opacity: 1;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.peteitcms-slide-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px;
    min-height: 500px;
}

.peteitcms-slide-info {
    flex: 1;
}

.peteitcms-module-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.peteitcms-module-name {
    font-size: 42px;
    font-weight: 700;
    color: var(--peteitcms-text);
    margin-bottom: 12px;
}

.peteitcms-module-version {
    display: inline-block;
    padding: 6px 16px;
    background: var(--peteitcms-border);
    color: var(--peteitcms-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.peteitcms-module-description {
    font-size: 18px;
    color: var(--peteitcms-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.peteitcms-module-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.peteitcms-module-status.installed {
    background: rgba(0, 168, 132, 0.15);
    color: var(--peteitcms-primary);
}

.peteitcms-module-status.not-installed {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.peteitcms-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.peteitcms-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--peteitcms-text);
    font-size: 15px;
    padding: 8px 0;
}

.peteitcms-feature-item::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--peteitcms-primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.peteitcms-slide-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peteitcms-screenshot {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--peteitcms-border);
}

.peteitcms-placeholder-screenshot {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--peteitcms-border) 0%, var(--peteitcms-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    border: 3px solid var(--peteitcms-border);
}

/* Navigation Controls */
.peteitcms-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--peteitcms-dark);
    border-top: 1px solid var(--peteitcms-border);
}

.peteitcms-nav-btn {
    background: var(--peteitcms-border);
    color: var(--peteitcms-text);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peteitcms-nav-btn:hover {
    background: var(--peteitcms-primary);
    transform: scale(1.1);
}

.peteitcms-dots {
    display: flex;
    gap: 12px;
}

.peteitcms-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--peteitcms-border);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.peteitcms-dot.active {
    background: var(--peteitcms-primary);
    width: 32px;
    border-radius: 6px;
}

/* Grid Style */
.peteitcms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.peteitcms-module-card {
    background: var(--peteitcms-card);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.peteitcms-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color, var(--peteitcms-primary));
}

.peteitcms-module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--card-color, var(--peteitcms-primary));
}

.peteitcms-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.peteitcms-card-icon {
    font-size: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.peteitcms-card-title {
    flex: 1;
}

.peteitcms-card-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--peteitcms-text);
    margin: 0 0 6px 0;
}

.peteitcms-card-version {
    font-size: 12px;
    color: var(--peteitcms-secondary);
    background: var(--peteitcms-border);
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

.peteitcms-card-description {
    color: var(--peteitcms-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.peteitcms-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.peteitcms-card-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--peteitcms-text);
    font-size: 14px;
    padding: 6px 0;
}

.peteitcms-card-feature::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--card-color, var(--peteitcms-primary));
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.peteitcms-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--peteitcms-border);
}

.peteitcms-install-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.peteitcms-install-status.active {
    color: var(--peteitcms-primary);
}

.peteitcms-install-status.inactive {
    color: #e74c3c;
}

/* Responsive Design */
/* Tablet Landscape - 1024px and below */
@media (max-width: 1024px) {
    .peteitcms-showcase {
        padding: 40px 15px;
    }
    
    .peteitcms-header {
        margin-bottom: 50px;
    }
    
    .peteitcms-logo-animated {
        font-size: 48px;
    }
    
    .peteitcms-tagline {
        font-size: 18px;
    }
    
    /* Stats Bar - 2 columns on tablet */
    .peteitcms-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 20px;
    }
    
    .peteitcms-stat-item {
        padding: 20px;
    }
    
    .peteitcms-stat-value {
        font-size: 32px;
    }
    
    /* Slideshow adjustments */
    .peteitcms-slide-content {
        padding: 40px 30px !important;
        gap: 30px !important;
    }
    
    .peteitcms-slide-info {
        flex: 0 0 60% !important;
    }
    
    .peteitcms-slide-visual {
        flex: 0 0 35% !important;
    }
    
    .peteitcms-module-name {
        font-size: 36px;
    }
    
    .peteitcms-module-version {
        font-size: 13px;
    }
    
    .peteitcms-module-description {
        font-size: 15px;
    }
    
    .peteitcms-features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .peteitcms-pricing-display {
        padding: 25px !important;
    }
    
    .peteitcms-slide-nav {
        width: 50px;
        height: 50px;
    }
    
    .peteitcms-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* Tablet Portrait & Mobile Landscape - 768px and below */
@media (max-width: 768px) {
    .peteitcms-showcase {
        padding: 30px 10px;
    }
    
    .peteitcms-header {
        margin-bottom: 40px;
    }
    
    .peteitcms-logo-animated {
        font-size: 40px;
    }
    
    .peteitcms-tagline {
        font-size: 16px;
    }
    
    /* Stats Bar - 2 columns, smaller */
    .peteitcms-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .peteitcms-stat-item {
        padding: 15px 10px;
    }
    
    .peteitcms-stat-value {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .peteitcms-stat-label {
        font-size: 11px;
    }
    
    /* Slideshow - Stack columns vertically */
    .peteitcms-slide-content {
        flex-direction: column !important;
        padding: 30px 20px !important;
        gap: 25px !important;
    }
    
    .peteitcms-slide-info,
    .peteitcms-slide-visual {
        flex: none !important;
        width: 100% !important;
    }
    
    .peteitcms-module-icon-small {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .peteitcms-module-name {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .peteitcms-module-version {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .peteitcms-module-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .peteitcms-features-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .peteitcms-feature-item {
        font-size: 13px;
        padding: 8px 0;
    }
    
    /* Pricing Section - Stack prices vertically */
    .peteitcms-pricing-display {
        padding: 20px !important;
    }
    
    .peteitcms-pricing-columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .peteitcms-pricing-item {
        width: 100%;
    }
    
    .peteitcms-price-label {
        font-size: 12px;
    }
    
    .peteitcms-price-amount {
        font-size: 28px;
    }
    
    .peteitcms-savings-row {
        margin-top: 15px;
        padding-top: 15px;
        font-size: 14px;
    }
    
    /* Pricing grid in slideshow */
    .pricing-grid {
        gap: 10px !important;
        margin-bottom: 15px !important;
    }
    
    .pricing-grid > div {
        padding: 12px !important;
    }
    
    .pricing-grid > div > div:nth-child(1) {
        font-size: 10px !important;
        margin-bottom: 4px !important;
    }
    
    .pricing-grid > div > div:nth-child(2) {
        font-size: 20px !important;
    }
    
    .pricing-grid > div > div:nth-child(3) {
        font-size: 10px !important;
        margin-top: 3px !important;
    }
    
    .pricing-grid + div {
        padding: 10px 12px !important;
        font-size: 12px !important;
    }
    
    /* Slideshow controls - larger touch targets */
    .peteitcms-slide-nav {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .peteitcms-slide-nav.prev {
        left: 10px;
    }
    
    .peteitcms-slide-nav.next {
        right: 10px;
    }
    
    .peteitcms-slide-dots {
        gap: 8px;
        padding: 20px 10px;
    }
    
    .peteitcms-dot {
        width: 10px;
        height: 10px;
    }
    
    .peteitcms-dot.active {
        width: 24px;
    }
    
    /* Grid view */
    .peteitcms-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile Portrait - 480px and below */
@media (max-width: 480px) {
    .peteitcms-showcase {
        padding: 20px 10px;
    }
    
    .peteitcms-header {
        margin-bottom: 30px;
    }
    
    .peteitcms-logo-animated {
        font-size: 32px;
    }
    
    .peteitcms-tagline {
        font-size: 14px;
    }
    
    /* Stats Bar - Single column on small mobile */
    .peteitcms-stats-bar {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px 10px;
        margin-bottom: 20px;
    }
    
    .peteitcms-stat-item {
        padding: 12px 10px;
        text-align: center;
    }
    
    .peteitcms-stat-value {
        font-size: 22px;
        margin-bottom: 3px;
    }
    
    .peteitcms-stat-label {
        font-size: 10px;
    }
    
    /* Slideshow - Compact mobile layout */
    .peteitcms-slideshow {
        border-radius: 16px;
    }
    
    .peteitcms-slide-content {
        padding: 20px 15px !important;
        gap: 20px !important;
    }
    
    .peteitcms-module-icon-small {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .peteitcms-module-name {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .peteitcms-module-version {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .peteitcms-module-description {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .peteitcms-features-list {
        gap: 5px;
    }
    
    .peteitcms-feature-item {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .peteitcms-feature-item::before {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    /* Pricing Section - Compact mobile */
    .peteitcms-pricing-display {
        padding: 15px !important;
        border-radius: 10px !important;
    }
    
    .peteitcms-pricing-columns {
        gap: 12px;
    }
    
    .peteitcms-price-label {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .peteitcms-price-amount {
        font-size: 24px;
    }
    
    .peteitcms-price-period {
        font-size: 11px;
    }
    
    .peteitcms-savings-row {
        margin-top: 12px;
        padding-top: 12px;
        font-size: 12px;
    }
    
    /* Pricing grid in slideshow - extra small for mobile */
    .pricing-grid {
        gap: 8px !important;
        margin-bottom: 12px !important;
    }
    
    .pricing-grid > div {
        padding: 10px !important;
        border-radius: 8px !important;
    }
    
    .pricing-grid > div > div:nth-child(1) {
        font-size: 9px !important;
        margin-bottom: 3px !important;
    }
    
    .pricing-grid > div > div:nth-child(2) {
        font-size: 18px !important;
    }
    
    .pricing-grid > div > div:nth-child(3) {
        font-size: 9px !important;
        margin-top: 2px !important;
    }
    
    .pricing-grid + div {
        padding: 8px 10px !important;
        font-size: 11px !important;
    }
    
    /* Slideshow controls - optimized for thumb */
    .peteitcms-slide-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .peteitcms-slide-nav.prev {
        left: 5px;
    }
    
    .peteitcms-slide-nav.next {
        right: 5px;
    }
    
    .peteitcms-slide-dots {
        gap: 6px;
        padding: 15px 5px;
    }
    
    .peteitcms-dot {
        width: 8px;
        height: 8px;
    }
    
    .peteitcms-dot.active {
        width: 20px;
    }
}

/* Loading Animation */
.peteitcms-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--peteitcms-border);
    border-radius: 50%;
    border-top-color: var(--peteitcms-primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pulse Animation for Active Status */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.peteitcms-install-status.active::before {
    content: "●";
    animation: pulse 2s ease-in-out infinite;
    margin-right: 4px;
}
