/* ---- STRENGTHS SECTION ---- */
.strengths-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-lighter) 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 60px 40px;
    margin: 60px auto;
}

.strength-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 5px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.strength-card {
    background: var(--bg-lighter);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: transform .3s, box-shadow .3s;
}

.strength-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.strength-card .s-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.strength-card h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.strength-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.comparison-section-box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    background: var(--bg-lighter);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-col {
    padding: 30px 28px;
}

.comparison-col.maximizo-col {
    border-left: 3px solid var(--accent);
}

.comparison-col.traditional-col-right {
    border-right: 3px solid #e11d48;
    opacity: .75;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: var(--bg-card);
    font-weight: 900;
    font-size: 13px;
    color: var(--text-secondary);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
}

.comparison-col h5 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 14px;
}

.comparison-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.comparison-col ul li i {
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 768px) {

    .comparison-section-box,
    .strength-grid {
        grid-template-columns: 1fr !important;
    }

    .comparison-divider {
        writing-mode: horizontal-tb;
        padding: 14px 20px;
    }

    .strengths-section {
        padding: 40px 20px;
    }
}

/* ---- HOTEL WORKFLOW (SMART + CLEAN) ---- */
#hotel-workflow {
    margin-top: 24px;
}

#hotel-workflow .wf-lead {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.9;
}

#hotel-workflow .wf-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

#hotel-workflow .wf-overview-card {
    background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-lighter) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 16px;
    text-align: right;
    box-shadow: var(--shadow-card);
}

#hotel-workflow .wf-overview-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
}

#hotel-workflow .wf-overview-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

#hotel-workflow .workflow-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

#hotel-workflow .wf-side-strap {
    position: relative;
    grid-column: 1 / -1;
    width: fit-content;
    max-width: calc(100% - 24px);
    margin: 16px auto 8px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb;
    transform: none;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5px;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

#hotel-workflow .wf-nav {
    border-inline-end: 1px solid var(--border);
    padding: 14px 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 700px;
    overflow: auto;
    background: linear-gradient(180deg, var(--bg-lighter) 0%, rgba(0, 0, 0, 0) 100%);
}

#hotel-workflow .wf-btn {
    text-align: right;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
    padding: 11px 12px;
    cursor: pointer;
    line-height: 1.5;
}

#hotel-workflow .wf-btn:hover {
    border-color: var(--border);
    background: var(--bg-card);
}

#hotel-workflow .wf-btn.active {
    background: var(--accent-glow);
    color: var(--accent);
    border-inline-start: 4px solid var(--accent);
    border-radius: 12px;
}

#hotel-workflow .wf-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

#hotel-workflow .wf-image-container {
    width: 100%;
    height: clamp(240px, 38vw, 460px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    position: relative;
    background: linear-gradient(160deg, #edf5ff 0%, #dbeafe 100%);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hotel-workflow .wf-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

#hotel-workflow .zoom-overlay {
    inset-inline-start: auto;
    inset-inline-end: 14px;
    bottom: 14px;
    font-size: 12px;
    padding: 7px 12px;
}

#hotel-workflow .wf-info-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

#hotel-workflow .wf-step-pill,
#hotel-workflow .wf-phase-pill {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 12px;
    border: 1px solid var(--border);
    background: var(--bg-lighter);
    color: var(--text-secondary);
}

#hotel-workflow .wf-step-pill {
    background: var(--accent-glow);
    color: var(--accent);
    border-color: transparent;
}

#hotel-workflow .wf-full-desc {
    margin: 0;
    background: var(--bg-lighter);
    border: 1px solid var(--border);
    border-inline-start: 5px solid var(--accent);
    border-radius: 14px;
    padding: 16px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.9;
}

#hotel-workflow #hotelStepFeats {
    margin-top: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}

#hotel-workflow #hotelStepFeats li {
    margin-bottom: 0;
    background: var(--bg-lighter);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    min-height: 46px;
    align-items: center;
}

#hotel-workflow #hotelStepFeats li i {
    color: var(--accent-green);
    margin-top: 0;
}

#hotel-workflow .wf-controls {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#hotel-workflow .wf-step-btn {
    min-height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    cursor: pointer;
}

#hotel-workflow .btn-step-prev {
    background: var(--bg-lighter);
    color: var(--text-primary);
    border-color: var(--border);
}

#hotel-workflow .btn-step-next {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 22px var(--accent-glow);
}

@media (max-width: 1024px) {
    #hotel-workflow .workflow-wrapper {
        grid-template-columns: 1fr;
    }

    #hotel-workflow .wf-side-strap {
        width: fit-content;
        max-width: calc(100% - 20px);
        margin-top: 12px;
        margin-bottom: 8px;
        height: auto;
    }

    #hotel-workflow .wf-nav {
        border-inline-end: none;
        border-bottom: 1px solid var(--border);
        padding: 12px;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
    }

    #hotel-workflow .wf-btn {
        min-width: 170px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #hotel-workflow .wf-overview-grid {
        grid-template-columns: 1fr;
    }

    #hotel-workflow .wf-content {
        padding: 14px;
    }

    #hotel-workflow #hotelStepFeats {
        grid-template-columns: 1fr;
    }

    #hotel-workflow .wf-controls {
        grid-template-columns: 1fr;
    }
}