/* QuickPT Showcase Design - Premium Layout with Logo */

/* Fade-in animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hero Section - With Logo */
.qpt-hero {
    position: relative;
    background: linear-gradient(135deg, #183544 0%, #2c5568 50%, #396d84 100%);
    padding: 80px 0;
    overflow: hidden;
    color: white;
}

.qpt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.qpt-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.qpt-logo-wrapper {
    margin-bottom: 2.5rem;
}

.qpt-logo {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
}

.qpt-hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.qpt-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.qpt-hero-cta {
    background: #e1c126;
    color: #183544;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qpt-hero-cta:hover {
    background: #f0d147;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 193, 38, 0.3);
    color: #183544;
    text-decoration: none;
}

/* Benefits Section */
.qpt-benefits {
    padding: 60px 0;
    background: #f8f9fa;
}

.qpt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.qpt-benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.qpt-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qpt-benefit-icon {
    font-size: 3rem;
    color: #183544;
    margin-bottom: 20px;
}

.qpt-benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #183544;
}

.qpt-benefit-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Purchase Process Timeline */
.qpt-process {
    padding: 60px 0;
    background: white;
}

.qpt-process-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: #183544;
}

.qpt-process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.qpt-process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.qpt-process-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #183544, #2c5568);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.qpt-process-icon {
    font-size: 2rem;
    color: white;
}

.qpt-process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #e1c126;
    color: #183544;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.qpt-process-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #183544;
}

.qpt-process-step p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.qpt-process-connector {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #183544, #e1c126, #183544);
    z-index: 1;
}

/* Catalog Section */
.qpt-catalog {
    padding: 60px 0;
    background: #f8f9fa;
}

.qpt-catalog-header {
    text-align: center;
    margin-bottom: 40px;
}

.qpt-catalog-header h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #183544;
    margin-bottom: 10px;
}

.qpt-catalog-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qpt-hero {
        padding: 50px 0;
    }

    .qpt-logo {
        max-width: 200px;
    }

    .qpt-hero h1 {
        font-size: 1.8rem;
    }

    .qpt-hero-subtitle {
        font-size: 1rem;
    }

    .qpt-benefits-grid {
        grid-template-columns: 1fr;
    }

    .qpt-process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .qpt-process-connector {
        display: none;
    }

    .qpt-catalog-header h3 {
        font-size: 1.5rem;
    }
}
