/* ============================
   PRODUCT DETAILS PAGE WRAPPER
   ============================ */
.product-details-page {
    max-width: 1100px; 
    margin: 0 auto;
    padding: 70px 20px;
    font-family: "Inter", sans-serif;
}

/* BACK BUTTON */
.back-btn {
    font-size: 14px;
    color: #444;
    display: inline-block;
    margin-bottom: 22px;
    text-decoration: none;
}
.back-btn:hover {
    text-decoration: underline;
}

/* ============================
   PRODUCT HEADER
   ============================ */
.live-badge {
    background: #ff3b3b;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 18px;
    font-weight: 600;
}

.product-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #222;
}

.product-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #e63946;
}

.product-description {
    max-width: 760px;
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ============================
   FEATURES + BENEFITS SECTION
   ============================ */
.row-features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.features-column,
.benefits-column {
    width: 47%;
}

.features-column h2,
.benefits-column h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* FEATURES LIST */
.feature-list li {
    list-style: none;
    margin-bottom: 14px;
    font-size: 16px;
    color: #222;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "✓";
    font-weight: bold;
    color: #ff3b3b;
    margin-right: 10px;
}

/* BENEFITS LIST */
.benefit-list li {
    background: #ffecec;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #222;
}

/* ============================
   TECHNOLOGY SECTION
   ============================ */
.tech-stack-section {
    text-align: center;
    margin-top: 70px;
}

.tech-stack-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tech-badges span {
    background: #f1f1f1;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 15px;
    margin: 5px;
    display: inline-block;
}

/* ============================
   CTA FULL-WIDTH SECTION
   ============================ */
.cta-fullwidth {
    width: 100%;
    margin-top: 90px;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, #ffe6e6, #fff3f3);
}

.cta-fullwidth h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #222;
}

.cta-fullwidth p {
    font-size: 18px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 30px;
}

/* CTA BUTTONS */
.cta-buttons .btn-demo,
.cta-buttons .btn-sales {
    padding: 12px 28px;
    border-radius: 10px;
    margin: 10px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.btn-demo {
    background: #ff3b3b;
    color: #fff;
}

.btn-sales {
    background: #f0f0f0;
    color: #333;
}

/* ============================
   RESPONSIVE FIXES
   ============================ */
@media (max-width: 992px) {
    .features-column,
    .benefits-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 32px;
    }

    .product-subtitle {
        font-size: 18px;
    }

    .cta-fullwidth h2 {
        font-size: 26px;
    }
}
