/* =============================
   GLOBAL
============================= */

.hidden {
    display: none;
}


/* =============================
     CONTAINER & CARD
  ============================= */

#result-screen-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 0.5rem;
    background-color: #fa9797;
    background: #fdfdfd;
}

#result-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-bottom: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    #result-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    #result-card {
        padding: 1.5rem 1rem;
        border-radius: 0;
        box-shadow: none;
    }
}


/* =============================
     SECTION STYLES
  ============================= */

.section {
    font-size: 1.05rem;
    color: #333;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.block {
    margin-top: 3rem;
}

.section strong {
    color: #e17055;
}

.section.title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d63031;
    margin-bottom: 1.5rem;
    /* border-bottom: 3px solid #d63031; */
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section.emphasis {
    font-weight: 700;
    color: #d63031;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-title {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #d63031;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fa-square-whatsapp {
    font-size: 1.5rem;
    color: green;
}

.section.indented {
    position: relative;
    padding-left: 1.5rem;
    margin-top: 1.2rem;
    line-height: 1.6;
    color: #444;
}

.section.indented::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff7675, #fd9644);
    border-radius: 2px;
}


/* =============================
     BULLETS
  ============================= */

.bullets {
    list-style: none;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 1.2rem 1.5rem;
    border-left: 5px solid #d63031;
    border-radius: 12px;
    margin-top: 1rem;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.bullets li {
    margin: 0.8rem 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.bullets li::before {
    content: "🔥";
    margin-right: 10px;
    font-size: 1.2rem;
    color: #d63031;
}


/* =============================
     DIAGNOSTIC PANEL
  ============================= */

.diagnostic-panel {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0, #f8c291, #ffeaa7);
    background-size: 400% 400%;
    animation: animatedPanelGradient 12s ease infinite;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

@keyframes animatedPanelGradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.panel-header {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d63031;
    margin-bottom: 1.5rem;
    border-left: 5px solid #d63031;
    padding-left: 1rem;
}

.panel-item {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.panel-item:last-child {
    margin-bottom: 0;
}

.diagnostic-img {
    margin-bottom: 35px
}

.pos-diagnostic {
    padding: 30px 0 10px 0;
}


/* =============================
     BLUR BOX
  ============================= */

.blur-box {
    position: relative;
    margin-top: 1rem;
    border-radius: 12px;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.863);
    border: 2px dashed #d63031;
    overflow: hidden;
    /* backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); */
    text-align: start;
}

.blur-box:hover {
    box-shadow: 0 0 20px rgba(214, 48, 49, 0.6);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.blur-content {
    color: black;
    /* text-shadow: 0 0 6px rgba(0, 0, 0, 0.2); */
    font-size: 1rem;
    user-select: none;
    pointer-events: none;
    line-height: 1.6;
}

.blur-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d63031;
    font-weight: bold;
    font-size: 3rem;
    z-index: 2;
    user-select: none;
    pointer-events: none;
    text-align: center;
    line-height: 1.4;
}


/* =============================
     TESTIMONIALS
  ============================= */

.testimony {
    background: #ffeaa7;
    border-left: 5px solid #e17055;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    font-style: italic;
    margin-bottom: 1rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}


/* =============================
     CTA BUTTON
  ============================= */

.cta {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #d63031, #e17055);
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-align: center;
    margin-top: 2rem;
    letter-spacing: 0.5px;
    animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.2);
    }
}


.cta:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(214, 48, 49, 0.4);
}


/* =============================
     MOBILE TEXT RESIZE
  ============================= */

@media (max-width: 600px) {
    .section.title {
        font-size: 1.8rem;
    }

    .cta {
        font-size: 1.2rem;
    }

    .panel-header {
        font-size: 1.1rem;
    }

    .blur-message {
        font-size: 2rem;
    }
}